Cron Security
Create an /etc/cron.d/cron.allow file:echo "root" > /etc/cron.d/cron.allow chown root /etc/cron.d/cron.allow chmod 600 /etc/cron.d/cron.allowCreate an /etc/cron.d/at.allow file:cp -p /etc/cron.d/cron.allow /etc/cron.d/at.allowCreate an /etc/cron.d/cron.deny file:cat /etc/passwd | cut -f1 -d: | grep -v root > /etc/cron.d/cron.deny chown root /etc/cron.d/cron.deny chmod 600 /etc/cron.d/cron.denyCreate an /etc/cron.d/at.deny file:cp -p /etc/cron.d/cron.deny /etc/cron.d/at.denyHigh In-Progress