osquery-defense-kit/detection/persistence/unexpected-cron-entries.sql

23 lines
533 B
MySQL
Raw Normal View History

2022-10-14 18:19:13 +00:00
-- Unexpected crontab entries
--
-- references:
-- * https://attack.mitre.org/techniques/T1053/003/
--
-- false positives:
-- * crontab entries added by the user
--
-- tags: persistent filesystem state
2022-10-14 18:19:13 +00:00
-- platform: posix
SELECT
*
FROM
crontab
WHERE
command NOT LIKE 'root%run-parts%'
AND command NOT LIKE '%freshclam%'
AND command NOT LIKE '%clamscan%'
AND command NOT LIKE '%e2scrub%'
AND command NOT LIKE '%zfs-linux%'
AND command NOT LIKE '%anacron start%'
AND command NOT LIKE '%/usr/lib/php/sessionclean%'