osquery-defense-kit/incident_response/file_events.sql
Thomas Stromberg f72e6424c0 Run reformat
2024-02-16 17:21:00 -05:00

12 lines
196 B
SQL

-- Return the list of watched file events (must be configured)
--
-- tags: postmortem
-- platform: posix
-- interval: 900
SELECT
*
FROM
file_events
WHERE
time > (strftime('%s', 'now') -900)