SV-209064r603263_rule
V-209064
SRG-OS-000480
OL6-00-000519
CAT III
10
The RPM package management system can check the hashes of installed software packages, including many that are important to system security. Run the following command to list which files on the system have hashes that differ from what is expected by the RPM database:
# rpm -Va | grep '^..5'
A "c" in the second column indicates that a file is a configuration file, which may appropriately be expected to change. If the file that has changed was not expected to then refresh from distribution media or online repositories.
rpm -Uvh [affected_package]
OR
yum reinstall [affected_package]
The following command will list which files on the system have file hashes different from what is expected by the RPM database.
# rpm -Va | awk '$1 ~ /..5/ && $2 != "c"'
If any output is produced, verify that the changes were due to STIG application and have been documented with the ISSO.
If any output has not been documented with the ISSO, this is a finding.
V-209064
False
OL6-00-000519
The following command will list which files on the system have file hashes different from what is expected by the RPM database.
# rpm -Va | awk '$1 ~ /..5/ && $2 != "c"'
If any output is produced, verify that the changes were due to STIG application and have been documented with the ISSO.
If any output has not been documented with the ISSO, this is a finding.
M
2928