Rule ID
SV-45030r1_rule
Version
V1R12
CCIs
If users do not own their home directories, unauthorized users could access user files.
Check the ownership of each user home directory listed in the /etc/passwd file. Procedure: # cut -d : -f 6 /etc/passwd | xargs -n1 ls -ld If any user home directory is not owned by the assigned user, this is a finding.
Change the owner of a user's home directory to its assigned user. Procedure: # chown <user> <home directory>