Skip to content

2.4.1.6 Ensure permissions on /etc/cron.monthly are configured

Audit#

- IF - cron is installed on the system: Run the following command and verify Uid and Gid are both 0/root and Access does not grant permissions to group or other:

# stat -Lc 'Access: (%a/%A) Uid: ( %u/ %U) Gid: ( %g/ %G)' /etc/cron.monthly/
Access: (0700/drwx------) Uid: ( 0/ root) Gid: ( 0/ root)

Remediation#

- IF - cron is installed on the system: Run the following commands to set ownership and permissions on the /etc/cron.monthly directory:

# chown root:root /etc/cron.monthly/
# chmod og-rwx /etc/cron.monthly/

Default Value: Access: (755/drwxr-xr-x) Uid: ( 0/ root) Gid: ( 0/ root)