osquery-defense-kit/detection/evasion/missing-from-disk-macos.sql

77 lines
2.6 KiB
MySQL
Raw Normal View History

-- Processes that do not exist on disk
--
2022-10-14 18:19:13 +00:00
-- false positives:
-- * Self-updating programs that remain running
--
2022-10-19 20:56:32 +00:00
-- references:
-- * https://attack.mitre.org/techniques/T1070/004/ (Indicator Removal on Host: File Deletion)
--
2022-10-14 18:19:13 +00:00
-- platform: darwin
-- tags: persistent process state
SELECT
p.pid,
2022-09-24 15:07:34 +00:00
p.path,
p.name,
p.parent,
p.state,
p.cwd,
p.gid,
p.uid,
p.euid,
p.cmdline AS cmd,
p.cwd,
p.on_disk,
p.state,
pp.on_disk AS parent_on_disk,
pp.path AS parent_path,
pp.cmdline AS parent_cmd,
pp.cwd AS parent_cwd,
hash.sha256 AS parent_sha256
FROM
processes p
2022-09-24 15:07:34 +00:00
LEFT JOIN processes pp ON p.parent = pp.pid
LEFT JOIN hash ON pp.path = hash.path
WHERE
p.on_disk != 1 -- false positives from recently spawned processes
AND (strftime('%s', 'now') - p.start_time) > 15
2022-09-24 15:07:34 +00:00
AND p.pid > 0
AND p.parent != 2 -- kthreadd
AND p.state != 'Z' -- The kernel no longer has enough tracking information for this alert to be useful
2022-09-24 15:07:34 +00:00
AND NOT (
p.parent = 1
AND p.path = ''
2022-09-24 15:07:34 +00:00
)
AND NOT (
p.gid = 20
AND (
-- NOTE: p.path is typically empty when on_disk != 1, so don't depend on it.
cmd LIKE '/Library/Apple/System/%'
OR cmd LIKE '/Applications/%/Contents/%'
OR cmd LIKE '/Library/Apple/System/%'
OR cmd LIKE '/Library/Application Support/Logitech.localized/%'
OR cmd LIKE '/Library/Developer/CommandLineTools/%'
OR p.path IN (
2023-02-24 21:30:17 +00:00
'/Applications/Slack.app/Contents/Frameworks/Slack Helper.app/Contents/MacOS/Slack Helper',
'/Applications/Visual Studio Code.app/Contents/Frameworks/Code Helper (Renderer).app/Contents/MacOS/Code Helper (Renderer)'
)
OR cmd LIKE '/opt/homebrew/Cellar/%'
OR p.path LIKE '/Users/%/Library/Application Support/Steam/Steam.AppBundle/Steam/Contents/MacOS/ipcserver.old'
OR p.path LIKE '/opt/homebrew/Cellar/%/bin/%'
OR p.path LIKE '/Users/%/homebrew/Cellar/%'
OR p.path LIKE '/private/var/folders/zz/%/T/PKInstallSandboxTrash/%.sandboxTrash/%'
2022-12-16 22:37:32 +00:00
OR p.path LIKE '/Users/%/node_modules/.pnpm/%'
OR p.path LIKE '/Users/%/homebrew/Cellar/%/bin/%'
OR p.path LIKE '/Users/%/.local/share/nvim/mason/packages/%'
OR cmd LIKE '/opt/homebrew/opt/%'
OR cmd LIKE '/private/var/folders/%/Visual Studio Code.app/Contents/%'
OR cmd LIKE '/Users/%/homebrew/opt/mysql/bin/%' -- Sometimes cmd is empty also :(
OR cmd LIKE '%/go/src/github.com/%'
OR cmd LIKE '%/.terraform/providers/%'
OR parent_cmd LIKE '/Applications/Google Chrome.app/%'
2022-09-14 00:46:04 +00:00
)
2022-09-24 15:07:34 +00:00
)
2022-09-30 17:47:10 +00:00
AND NOT (
p.name = ''
AND parent_cmd = '/Applications/Firefox Developer Edition.app/Contents/MacOS/firefox -foreground'
)