2022-09-11 19:07:54 +00:00
|
|
|
-- Parent PID is not on disk
|
|
|
|
-- Reveals boopkit if a child is spawned
|
2022-09-29 20:19:30 +00:00
|
|
|
-- TODO: Make mount namespace aware
|
|
|
|
SELECT p.name AS child_name,
|
2022-09-24 15:12:23 +00:00
|
|
|
p.pid AS child_pid,
|
|
|
|
p.path AS child_path,
|
|
|
|
p.cmdline AS child_cmd,
|
|
|
|
p.uid AS child_uid,
|
|
|
|
p.gid AS child_gid,
|
|
|
|
p.on_disk AS child_on_disk,
|
|
|
|
pp.pid AS parent_pid,
|
|
|
|
pp.name AS parent_name,
|
|
|
|
pp.path AS parent_path,
|
|
|
|
pp.cmdline AS cmd,
|
|
|
|
pp.on_disk AS parent_on_disk,
|
|
|
|
pp.uid AS parent_uid,
|
|
|
|
pp.gid AS parent_gid
|
2022-09-29 20:19:30 +00:00
|
|
|
FROM processes p
|
2022-09-24 15:12:23 +00:00
|
|
|
JOIN processes pp ON pp.pid = p.parent
|
2022-09-29 20:19:30 +00:00
|
|
|
WHERE parent_on_disk != 1
|
2022-09-24 15:12:23 +00:00
|
|
|
AND child_on_disk = 1
|
|
|
|
AND NOT child_pid IN (1, 2)
|
|
|
|
AND NOT parent_pid IN (1, 2) -- launchd, kthreadd
|
|
|
|
AND NOT parent_path IN (
|
2022-09-29 20:19:30 +00:00
|
|
|
"/opt/google/chrome/chrome",
|
|
|
|
"/usr/bin/gnome-shell"
|
|
|
|
) -- long-running launchers
|
|
|
|
AND NOT parent_name IN (
|
|
|
|
"lightdm",
|
|
|
|
"nvim",
|
|
|
|
"gnome-shell",
|
|
|
|
"slack",
|
|
|
|
"kube-proxy",
|
|
|
|
"kubelet"
|
|
|
|
) -- These alerts were unfortunately useless - lots of spam on macOS
|
2022-09-24 15:12:23 +00:00
|
|
|
AND NOT (
|
|
|
|
parent_path = ""
|
|
|
|
AND p.uid > 500
|
|
|
|
)
|
2022-09-29 20:19:30 +00:00
|
|
|
AND parent_path NOT LIKE "/app/extra/%"
|
|
|
|
AND parent_path NOT LIKE "/opt/homebrew/Cellar/%"
|