Jobs and Tasks
Post

Jobs and Tasks

List Cron Jobs

1
cat /etc/crontab && ls -al /etc/cron*

Find World-Writable Cron jobs

1
find /etc/cron* -type f -perm -o+w -exec ls -l {} \;

Find Cron Jobs Owned by Other Users

1
find /etc/cron* -user <admin>