osquery-defense-kit/detection/initial_access/unexpected-shell-parents.sql

160 lines
4.2 KiB
MySQL
Raw Normal View History

2022-10-14 18:19:13 +00:00
-- Unexpected process that spawns shell processes
--
-- false positives:
-- * IDE's
--
2022-10-19 20:56:32 +00:00
-- references:
-- * https://attack.mitre.org/techniques/T1059/ (Command and Scripting Interpreter)
-- * https://attack.mitre.org/techniques/T1204/002/ (User Execution: Malicious File)
--
2022-10-14 18:19:13 +00:00
-- tags: transient process state
-- platform: posix
SELECT
p.name,
p.path AS path,
p.cmdline AS cmd,
2022-09-29 19:42:27 +00:00
p.pid,
p.cgroup_path,
2022-09-29 19:42:27 +00:00
p.parent,
pp.name AS parent_name,
pp.path AS parent_path,
pp.cmdline AS parent_cmd,
hash.sha256 AS parent_sha256
FROM
processes p
LEFT JOIN processes pp ON pp.pid = p.parent
LEFT JOIN hash ON pp.path = hash.path
WHERE
p.name IN ('sh', 'fish', 'zsh', 'bash', 'dash', 'osascript')
2022-09-29 19:42:27 +00:00
-- Ignore partial table joins
AND parent_path != ''
2022-10-17 23:01:16 +00:00
-- Editors & terminals mostly.
-- I know it's tempting to list "electron" here but please find a more specific exclusion.
AND pp.name NOT IN (
'abrt-handle-eve',
'alacritty',
'bash',
'build-script-build',
2022-10-17 21:31:47 +00:00
'chezmoi',
'clang-11',
'Code Helper (Renderer)',
2022-10-17 21:31:47 +00:00
'Code - Insiders Helper (Renderer)',
'collect2',
'conmon',
'containerd-shim',
'dash',
'demoit',
'direnv',
2022-10-17 21:31:47 +00:00
'doas',
2022-12-16 22:37:32 +00:00
'erl_child_setup',
'find',
'FinderSyncExtension',
'fish',
'go',
'goland',
2022-10-17 21:31:47 +00:00
'helm',
2022-11-28 21:06:07 +00:00
'i3bar',
2022-11-16 16:18:45 +00:00
'i3blocks',
'java',
'kitty',
'ko',
'kubectl',
'lightdm',
'make',
'monorail',
'nix',
'nix-build',
2022-10-17 21:31:47 +00:00
'nix-daemon',
'ninja',
'node',
'nvim',
2022-10-17 21:31:47 +00:00
'package_script_service',
'perl',
'PK-Backend',
'python',
'roxterm',
2022-11-28 21:06:07 +00:00
'sdk',
'sdzoomplugin',
'sh',
'skhd',
2022-10-17 21:31:47 +00:00
'sshd',
'swift',
'systemd',
'terminator',
'test2json',
'tmux',
2022-10-17 21:31:47 +00:00
'tmux:server',
'vi',
'vim',
'watch',
'wezterm-gui',
'xargs',
'xcrun',
'xfce4-terminal',
'yum',
2022-10-29 18:11:33 +00:00
'zellij',
'zsh'
)
AND parent_path NOT IN (
'/Applications/Docker.app/Contents/MacOS/Docker',
'/bin/dash',
'/bin/sh',
'/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/Contents/Helpers/GoogleSoftwareUpdateDaemon',
'/opt/X11/libexec/launchd_startx',
'/sbin/launchd',
'/usr/lib/xorg/Xorg',
'/usr/bin/alacritty',
'/usr/bin/apt-get',
'/usr/bin/bash',
'/usr/bin/bwrap',
'/usr/bin/sysdiagnose',
'/usr/bin/crond',
'/usr/bin/login',
'/Applications/IntelliJ IDEA.app/Contents/MacOS/idea',
'/Applications/Docker.app/Contents/Resources/bin/com.docker.cli',
'/usr/bin/man',
'/usr/bin/sudo',
'/usr/bin/xargs',
'/usr/bin/zsh',
'/usr/libexec/gnome-terminal-server',
'/usr/libexec/periodic-wrapper',
'/usr/bin/su'
)
-- npm run server
AND NOT p.cmdline IN (
'sh -c -- exec-bin node_modules/.bin/hugo/hugo server',
'sh -c xcode-select --print-path >/dev/null 2>&1 && xcrun --sdk macosx --show-sdk-path 2>/dev/null'
)
AND NOT (
pp.name = 'sshd'
AND p.cmdline LIKE '%askpass%'
)
2022-09-27 15:54:17 +00:00
AND NOT (
pp.name = 'bash'
AND p.cmdline LIKE 'sh -s _hostname %'
2022-09-27 15:54:17 +00:00
)
AND NOT (
pp.cmdline LIKE 'perl%/help2man%'
AND p.cmdline LIKE 'sh -c man/%'
)
AND NOT p.cmdline LIKE '%/Library/Apple/System/Library/InstallerSandboxes%'
AND NOT p.cmdline LIKE '%gcloud config config-helper%'
AND NOT p.cmdline LIKE '%hugo/hugo server%'
AND NOT pp.cmdline LIKE '/Applications/Warp.app/%'
AND NOT pp.cmdline = 'npm run start'
AND NOT pp.cmdline LIKE '%brew.rb%'
AND NOT pp.cmdline LIKE '%/Homebrew/build.rb%'
AND NOT pp.cmdline LIKE '%Code Helper%'
AND NOT pp.cmdline LIKE '%gcloud.py config config-helper%'
2022-10-17 23:01:16 +00:00
AND NOT pp.cmdline LIKE '/usr/lib/electron19/electron /usr/lib/code/out/bootstrap-fork --type=ptyHost --logsPath /home/%/.config/Code - OSS/logs/%'
AND NOT pp.name LIKE '%term%'
AND NOT pp.name LIKE '%Term%'
AND NOT pp.name LIKE 'Emacs%'
AND NOT pp.name LIKE 'terraform-provider-%'
AND NOT pp.path LIKE '/Users/%/Library/Google/GoogleSoftwareUpdate/GoogleSoftwareUpdate.bundle/Contents/Helpers/GoogleSoftwareUpdateAgent.app/Contents/MacOS/GoogleSoftwareUpdateAgent'
-- Oh, NixOS.
AND NOT pp.name LIKE '%/bin/bash'
AND NOT pp.name LIKE '%/bin/direnv'
AND NOT parent_path LIKE '/nix/store/%sh'
AND NOT parent_path LIKE '/opt/homebrew/%'