Skip to content

1.1.2.1.4 Ensure noexec option set on /tmp partition

Audit#

- IF - a separate partition exists for /tmp, verify that the noexec option is set for the /tmp mount. Run the following command to verify that the noexec mount option is set. Example:

# findmnt -kn /tmp | grep -v noexec
Nothing should be returned

Remediation#

- IF - a separate partition exists for /tmp. Edit the /etc/fstab file and add noexec to the fourth field (mounting options) for the /tmp partition. Example:

<device> /tmp <fstype> defaults,rw,nosuid,nodev,noexec,relatime 0 0
Run the following command to remount /tmp with the configured options:
# mount -o remount /tmp