Add events-based detector for ICMP sockets

This commit is contained in:
Thomas Stromberg 2022-10-20 14:02:06 -04:00
parent 6d535ddc37
commit ec1a5b6c17
Failed to extract signature

View File

@ -0,0 +1,19 @@
-- Unexpected programs speaking over ICMP (event-based)
--
-- references:
-- *https://attack.mitre.org/techniques/T1095/ (C2: Non-Application Layer Protocol)
--
-- interval: 30
-- tags: transient events net
SELECT
se.*,
p.path,
p.cmdline
FROM
socket_events se
LEFT JOIN processes p ON se.pid = p.pid
WHERE
se.time > (strftime('%s', 'now') -30)
AND family = 2 -- PF_INET
AND protocol = 1 -- ICMP
AND p.name NOT IN ('ping')