SV-252971r991592_rule
V-252971
SRG-OS-000480-GPOS-00230
TOSS-04-020320
CAT II
10
Change the group owner of interactive user's home directories to that users primary group. To change the group owner of a local interactive user's home directory, use the following command:
Note: The example will be for the user "smithj."
$ sudo chgrp smithj /home/smithj
Check that all user home directories are owned by the user's primary group with the following command:
$ awk -F: '($3>=1000)&&($7 !~ /nologin/)&&("stat -c '%g' " $6 | getline dir_group)&&(dir_group!=$4){print $1,$6}' /etc/passwd
admin /home/admin
Check each user's primary group with the following command (example command is for the "admin" user):
$ sudo grep "^admin" /etc/group
admin:x:250:smithj,jonesj,jacksons
If the user home directory referenced in "/etc/passwd" is not group-owned by that user's primary GID, this is a finding.
V-252971
False
TOSS-04-020320
Check that all user home directories are owned by the user's primary group with the following command:
$ awk -F: '($3>=1000)&&($7 !~ /nologin/)&&("stat -c '%g' " $6 | getline dir_group)&&(dir_group!=$4){print $1,$6}' /etc/passwd
admin /home/admin
Check each user's primary group with the following command (example command is for the "admin" user):
$ sudo grep "^admin" /etc/group
admin:x:250:smithj,jonesj,jacksons
If the user home directory referenced in "/etc/passwd" is not group-owned by that user's primary GID, this is a finding.
M
5469