2022-10-19 20:56:32 +00:00
|
|
|
-- Find processes that run with a lower effective UID than their parent (event-based)
|
2022-10-14 18:19:13 +00:00
|
|
|
--
|
2022-10-19 20:56:32 +00:00
|
|
|
-- references:
|
|
|
|
-- * https://attack.mitre.org/techniques/T1548/001/ (Setuid and Setgid)
|
|
|
|
-- * https://cybersecurity.att.com/blogs/labs-research/shikitega-new-stealthy-malware-targeting-linux
|
|
|
|
--
|
|
|
|
-- related:
|
|
|
|
-- * unexpected-privilege-escalation.sql
|
|
|
|
--
|
|
|
|
-- tags: events process escalation
|
|
|
|
-- platform: posix
|
2022-10-14 18:19:13 +00:00
|
|
|
-- interval: 30
|
2022-10-07 20:19:18 +00:00
|
|
|
SELECT
|
|
|
|
p.pid AS child_pid,
|
|
|
|
p.path AS child_path,
|
2022-10-13 18:59:32 +00:00
|
|
|
REGEX_MATCH (RTRIM(file.path, '/'), '.*/(.*?)$', 1) AS child_name,
|
2022-10-07 20:19:18 +00:00
|
|
|
p.cmdline AS child_cmdline,
|
|
|
|
p.euid AS child_euid,
|
|
|
|
file.mode AS child_mode,
|
|
|
|
hash.sha256 AS child_hash,
|
|
|
|
p.parent AS parent_pid,
|
|
|
|
pp.path AS parent_path,
|
|
|
|
pp.name AS parent_name,
|
|
|
|
pp.cmdline AS parent_cmdline,
|
|
|
|
pp.euid AS parent_euid,
|
|
|
|
pfile.mode AS parent_mode,
|
|
|
|
hash.sha256 AS parent_hash
|
|
|
|
FROM
|
|
|
|
process_events p
|
|
|
|
JOIN processes pp ON p.parent = pp.pid
|
|
|
|
LEFT JOIN file ON p.path = file.path
|
|
|
|
LEFT JOIN hash ON p.path = hash.path
|
|
|
|
LEFT JOIN file AS pfile ON pp.path = file.path
|
|
|
|
LEFT JOIN hash AS phash ON pp.path = hash.path
|
|
|
|
WHERE
|
|
|
|
p.time > (strftime('%s', 'now') -30)
|
|
|
|
AND p.euid < pp.euid
|
|
|
|
AND p.path NOT IN (
|
|
|
|
'/usr/bin/fusermount',
|
|
|
|
'/usr/bin/fusermount3',
|
|
|
|
'/usr/bin/login',
|
|
|
|
'/usr/bin/sudo',
|
|
|
|
'/usr/bin/doas',
|
|
|
|
'/bin/ps',
|
|
|
|
'/usr/bin/top'
|
|
|
|
)
|
2022-10-13 18:59:32 +00:00
|
|
|
AND p.path NOT LIKE '/nix/store/%/bin/sudo'
|
|
|
|
AND p.path NOT LIKE '/nix/store/%/bin/dhcpcd'
|
2022-10-07 20:19:18 +00:00
|
|
|
AND NOT (
|
|
|
|
child_name = 'polkit-agent-helper-1'
|
|
|
|
AND parent_path = '/usr/bin/gnome-shell'
|
|
|
|
)
|
|
|
|
AND NOT (
|
|
|
|
child_name = 'fusermount3'
|
|
|
|
AND parent_path = '/usr/lib/xdg-document-portal'
|
|
|
|
)
|