File: rule.yml

package info (click to toggle)
scap-security-guide 0.1.78-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 114,600 kB
  • sloc: xml: 245,305; sh: 84,381; python: 33,093; makefile: 27
file content (38 lines) | stat: -rw-r--r-- 1,286 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
documentation_complete: true


title: 'Ensure All Groups on the System Have Unique Group Names'

description: 'Change the group name or delete groups, so each has a unique name.'

rationale: 'To assure accountability and prevent unauthenticated access, groups must be identified uniquely to prevent potential misuse and compromise of the system.'

severity: medium

identifiers:
    cce@rhel8: CCE-86328-2
    cce@rhel9: CCE-86966-9
    cce@rhel10: CCE-88449-4
    cce@sle12: CCE-92207-0
    cce@sle15: CCE-91340-0
    cce@slmicro5: CCE-94046-0

references:
    cis@sle12: 6.2.17
    cis@sle15: 6.2.17

ocil_clause: 'has duplicate group names'

ocil: |-
    Run the following command to check for duplicate group names:
    Check that the operating system contains no duplicate group names for interactive users by running the following command:
    <pre>
        cut -d : -f 1 /etc/group | uniq -d
    </pre>
    If output is produced, this is a finding.
    Configure the operating system to contain no duplicate names for groups.
    Edit the file "/etc/group" and provide each group that has a duplicate group name with a unique group name.

warnings:
    - general: |-
          Automatic remediation of this control is not available due to the unique requirements of each system.