SV-260489r1134796_rule
V-260489
SRG-OS-000205-GPOS-00083
UBTU-22-232026
CAT II
10
Configure Ubuntu 22.04 LTS to set permissions of all log files under the "/var/log" directory to "640" or more restricted by using the following command:
Note: The btmp, wtmp, and lastlog files are excluded. Refer to the Discussion for details.
$ sudo find /var/log -perm /137 ! -name '*[bw]tmp' ! -name '*lastlog' -type f -exec chmod 640 '{}' \;
Verify Ubuntu 22.04 LTS has all system log files under the "/var/log" directory with a permission set to "640" or less permissive by using the following command:
Note: The btmp, wtmp, and lastlog files are excluded. Refer to the Discussion for details.
$ sudo find /var/log -perm /137 ! -name '*[bw]tmp' ! -name '*lastlog' -type f -exec stat -c "%n %a" {} \;
If the command displays any output, this is a finding.
Note: If output regarding history.log or eipp.log.xz is displayed, this is not a finding.
V-260489
False
UBTU-22-232026
Verify Ubuntu 22.04 LTS has all system log files under the "/var/log" directory with a permission set to "640" or less permissive by using the following command:
Note: The btmp, wtmp, and lastlog files are excluded. Refer to the Discussion for details.
$ sudo find /var/log -perm /137 ! -name '*[bw]tmp' ! -name '*lastlog' -type f -exec stat -c "%n %a" {} \;
If the command displays any output, this is a finding.
Note: If output regarding history.log or eipp.log.xz is displayed, this is not a finding.
M
5594