Ensure System Log Files Have Correct Permissions
An XCCDF Rule
Description
The file permissions for all log files written by rsyslog
should
be set to 640, or more restrictive. These log files are determined by the
second part of each Rule line in /etc/rsyslog.conf
and typically
all appear in /var/log
. For each log file LOGFILE
referenced in /etc/rsyslog.conf
, run the following command to
inspect the file's permissions:
$ ls -l LOGFILEIf the permissions are not 640 or more restrictive, run the following command to correct this:
$ sudo chmod 640 LOGFILE"
Rationale
Log files can contain valuable information regarding system configuration. If the system log files are not protected unauthorized users could change the logged data, eliminating their forensic value.
- ID
- xccdf_org.ssgproject.content_rule_rsyslog_files_permissions
- Severity
- Medium
- References
- Updated