osquery-defense-kit/incident_response/socket_events.sql

12 lines
184 B
MySQL
Raw Permalink Normal View History

2023-02-23 14:35:38 +00:00
-- Return the list of socket events
--
-- tags: postmortem events extra
-- platform: posix
2023-05-12 20:17:10 +00:00
-- interval: 600
2023-05-08 17:20:47 +00:00
SELECT
*
FROM
2023-05-12 20:26:44 +00:00
socket_events
2024-02-16 22:21:00 +00:00
WHERE
time > (strftime('%s', 'now') -600)