osquery-defense-kit/incident_response/socket_events.sql
Thomas Stromberg 08d0235608
Fix bug
2023-05-12 16:26:44 -04:00

11 lines
169 B
SQL

-- Return the list of socket events
--
-- tags: postmortem
-- platform: posix
-- interval: 600
SELECT
*
FROM
socket_events
WHERE time > (strftime('%s', 'now') -600)