Skip to content

1.1.2.7.2 Ensure nodev option set on /var/log/audit partition

Audit#

- IF - a separate partition exists for /var/log/audit, verify that the nodev option is set.

Run the following command to verify that the nodev mount option is set.

Example:

# findmnt -kn /var/log/audit | grep -v nodev
Nothing should be returned

Remediation#

- IF - a separate partition exists for /var/log/audit. Edit the /etc/fstab file and add nodev to the fourth field (mounting options) for the /var/log/audit partition.

Example:

<device> /var/log/audit <fstype>    defaults,rw,nosuid,nodev,noexec,relatime 0 0

Run the following command to remount /var/log/audit with the configured options:

# mount -o remount /var/log/audit