SV-209063r603263_rule
V-209063
SRG-OS-000480
OL6-00-000518
CAT III
10
The RPM package management system can restore file access permissions of package files and directories. The following command will update permissions on files and directories with permissions different from what is expected by the RPM database:
# rpm --setperms [package]
The following command will list which files and directories on the system have permissions different from what is expected by the RPM database:
# rpm -Va | grep '^.M'
If there is any output, for each file or directory found, find the associated RPM package and compare the RPM-expected permissions with the actual permissions on the file or directory:
# rpm -qf [file or directory name]
# rpm -q --queryformat "[%{FILENAMES} %{FILEMODES:perms}\n]" [package] | grep [filename]
# ls -dlL [filename]
If the existing permissions are more permissive than those expected by RPM, this is a finding.
V-209063
False
OL6-00-000518
The following command will list which files and directories on the system have permissions different from what is expected by the RPM database:
# rpm -Va | grep '^.M'
If there is any output, for each file or directory found, find the associated RPM package and compare the RPM-expected permissions with the actual permissions on the file or directory:
# rpm -qf [file or directory name]
# rpm -q --queryformat "[%{FILENAMES} %{FILEMODES:perms}\n]" [package] | grep [filename]
# ls -dlL [filename]
If the existing permissions are more permissive than those expected by RPM, this is a finding.
M
2928