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

32 lines
1.1 KiB
MySQL
Raw Permalink Normal View History

2022-10-14 18:19:13 +00:00
-- Unexpected crontab entries
--
-- references:
2022-10-19 20:56:32 +00:00
-- * https://attack.mitre.org/techniques/T1053/003/ (Scheduled Task/Job: Cron)
2022-10-14 18:19:13 +00:00
--
-- 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 '%/usr/lib/php/sessionclean%'
AND command NOT LIKE '%anacron start%'
AND command NOT LIKE '%clamscan%'
AND command NOT LIKE '%e2scrub%'
AND command NOT LIKE '%freshclam%'
AND command NOT LIKE '%gcloud compute instances stop%'
2024-01-18 22:15:37 +00:00
AND command NOT LIKE '%git commit%'
AND command NOT LIKE '%rsync%'
AND command NOT LIKE '%zfs-linux%'
2024-03-29 14:12:36 +00:00
AND command NOT LIKE 'docker run amouat/jocko%'
AND command NOT LIKE 'gsutil %'
AND command NOT LIKE 'root command -v debian-sa1%'
AND command NOT LIKE 'root test -x /usr/bin/geoipupdate % && /usr/bin/geoipupdate'
AND command NOT LIKE 'root [ -d "/run/systemd/system" ] || /usr/share/atop/atop%'
AND command NOT IN ("ps -A | grep at.obdev.littlesnitch.networkextension | grep -v 'grep' | awk '{print $1}' | xargs kill")