osquery-defense-kit/incident_response/crontab.sql

11 lines
248 B
MySQL
Raw Normal View History

2022-10-13 13:11:17 +00:00
-- Retrieves all the jobs scheduled in crontab in the target system.
--
-- interval: 3600
-- platform: posix
-- value: Identify malware that uses this persistence mechanism to launch at a given interval
-- version: 1.4.5
2022-10-17 23:06:17 +00:00
select
*
from
crontab;