osquery-defense-kit/incident_response/file_events.sql

12 lines
203 B
MySQL
Raw Permalink Normal View History

2023-02-23 14:35:38 +00:00
-- Return the list of watched file events (must be configured)
--
-- tags: postmortem events
2023-02-23 14:35:38 +00:00
-- platform: posix
2023-05-12 20:35:00 +00:00
-- interval: 900
2024-02-16 22:21:00 +00:00
SELECT
*
FROM
file_events
WHERE
time > (strftime('%s', 'now') -900)