osquery-defense-kit/detection/initial_access/unexpected-shell-parent-eve...

331 lines
10 KiB
MySQL
Raw Normal View History

-- Unexpected process that spawns shell processes (event-based)
--
-- false positives:
-- * IDE's
--
-- references:
-- * https://attack.mitre.org/techniques/T1059/ (Command and Scripting Interpreter)
-- * https://attack.mitre.org/techniques/T1204/002/ (User Execution: Malicious File)
--
-- tags: process events
-- interval: 300
-- platform: posix
SELECT
-- Child
pe.path AS p0_path,
REGEX_MATCH (pe.path, '.*/(.*)', 1) AS p0_name,
TRIM(pe.cmdline) AS p0_cmd,
pe.cwd AS p0_cwd,
pe.time AS p0_time,
pe.pid AS p0_pid,
2023-02-24 21:30:17 +00:00
pe.euid AS p0_euid,
p.cgroup_path AS p0_cgroup,
-- Parent
pe.parent AS p1_pid,
p1.cgroup_path AS p1_cgroup,
TRIM(COALESCE(p1.cmdline, pe1.cmdline)) AS p1_cmd,
COALESCE(p1.path, pe1.path) AS p1_path,
2023-02-24 21:30:17 +00:00
COALESCE(p1.euid, pe1.euid) AS p1_euid,
COALESCE(p_hash1.sha256, pe_hash1.sha256) AS p1_hash,
REGEX_MATCH (COALESCE(p1.path, pe1.path), '.*/(.*)', 1) AS p1_name,
-- Grandparent
COALESCE(p1.parent, pe1.parent) AS p2_pid,
COALESCE(p1_p2.cgroup_path, pe1_p2.cgroup_path) AS p2_cgroup,
TRIM(
COALESCE(p1_p2.cmdline, pe1_p2.cmdline, pe1_pe2.cmdline)
) AS p2_cmd,
COALESCE(p1_p2.path, pe1_p2.path, pe1_pe2.path) AS p2_path,
COALESCE(
p1_p2_hash.path,
pe1_p2_hash.path,
pe1_pe2_hash.path
) AS p2_hash,
REGEX_MATCH (
COALESCE(p1_p2.path, pe1_p2.path, pe1_pe2.path),
'.*/(.*)',
1
) AS p2_name,
-- Exception key
REGEX_MATCH (pe.path, '.*/(.*)', 1) || ',' || MIN(pe.euid, 500) || ',' || REGEX_MATCH (COALESCE(p1.path, pe1.path), '.*/(.*)', 1) || ',' || REGEX_MATCH (
COALESCE(p1_p2.path, pe1_p2.path, pe1_pe2.path),
'.*/(.*)',
1
) AS exception_key
FROM
process_events pe
LEFT JOIN processes p ON pe.pid = p.pid
-- Parents (via two paths)
LEFT JOIN processes p1 ON pe.parent = p1.pid
LEFT JOIN hash p_hash1 ON p1.path = p_hash1.path
LEFT JOIN process_events pe1 ON pe.parent = pe1.pid
AND pe1.cmdline != ''
LEFT JOIN hash pe_hash1 ON pe1.path = pe_hash1.path
-- Grandparents (via 3 paths)
LEFT JOIN processes p1_p2 ON p1.parent = p1_p2.pid -- Current grandparent via parent processes
LEFT JOIN processes pe1_p2 ON pe1.parent = pe1_p2.pid -- Current grandparent via parent events
LEFT JOIN process_events pe1_pe2 ON pe1.parent = pe1_p2.pid
AND pe1_pe2.cmdline != '' -- Past grandparent via parent events
LEFT JOIN hash p1_p2_hash ON p1_p2.path = p1_p2_hash.path
LEFT JOIN hash pe1_p2_hash ON pe1_p2.path = pe1_p2_hash.path
LEFT JOIN hash pe1_pe2_hash ON pe1_pe2.path = pe1_pe2_hash.path
WHERE
pe.time > (strftime('%s', 'now') -300)
AND pe.cmdline != ''
AND pe.parent > 0
AND p0_name IN ('sh', 'fish', 'zsh', 'bash', 'dash')
AND NOT (
p1_name IN (
'abrt-handle-eve',
'alacritty',
'at-spi-bus-launcher',
'bash',
'build-script-build',
'chainctl',
'chezmoi',
'clang-11',
'code',
'Code Helper (Renderer)',
'Code - Insiders Helper (Renderer)',
'collect2',
'com.docker.backend',
'conmon',
'containerd-shim',
'containerd-shim-runc-v2',
'cpptools',
'dash',
'dbus-run-session',
'demoit',
'direnv',
'doas',
'pacman',
'docker-credential-desktop',
'docker-credential-gcr',
'Docker Desktop',
'Emacs-arm64-11',
'env',
'erl_child_setup',
'find',
'FinderSyncExtension',
'fish',
'gatherheaderdoc',
'gdm3',
'gdm-session-worker',
'gdm-x-session',
'git',
'gke-gcloud-auth-plugin',
'gnome-session-binary',
'gnome-shell',
'gnome-terminal-server',
'go',
'goland',
'mc',
'gopls',
'helm',
'HP Diagnose & Fix',
'i3bar',
'i3blocks',
'java',
'jetbrains-toolbox',
'kitty',
'nu',
'ko',
'konsole',
'kubectl',
'lightdm',
'local-path-provisioner',
'login',
'make',
'monorail',
'my_print_defaults',
'ninja',
'nix',
'nix-build',
'nix-daemon',
'nm-dispatcher',
'node',
'nvim',
'package_script_service',
'perl',
'PK-Backend',
'provisio',
'pulumi',
-- 'python' - do not include this, or you won't detect supply-chain attacks.
'roxterm',
'sdk',
'sdzoomplugin',
'sh',
'ShellLauncher',
'skhd',
'su',
'snyk',
'sshd',
'obs',
'stable',
'Stream Deck',
'sudo',
'swift',
'systemd',
'systemd-sleep',
'terminator',
'terraform-ls',
'test2json',
'tmux',
'snyk-macos',
'ression-arm64',
'tmux:server',
'update-notifier',
'vi',
'vim',
'Vim',
'MacVim',
'watch',
'wezterm-gui',
'xargs',
'xcrun',
'xfce4-terminal',
'Xorg',
'yay',
'yum',
2023-01-30 20:01:21 +00:00
'zed',
'zellij',
'zsh'
)
OR p1_name LIKE 'terraform-provider-%'
-- Do not add shells to this list if you want your query to detect
-- bad programs that were started from a shell.
OR p2_name IN ('env', 'git')
-- Homebrew, except we don't want to allow all of ruby
OR p0_cmd IN (
'/bin/bash /usr/bin/xdg-settings set default-url-scheme-handler slack Slack.desktop',
'/bin/bash /usr/local/bin/mount-product-files',
'/bin/sh -c black .',
'/bin/sh -c lsb_release -a --short',
'/bin/sh -c ioreg -rd1 -c IOPlatformExpertDevice',
'/bin/sh -c ps ax -ww -o pid,ppid,uid,gid,args',
'/bin/sh -c scutil --get ComputerName',
"/bin/sh -c defaults delete 'com.cisco.webexmeetingsapp'",
'/bin/sh -c sysctl hw.model kern.osrelease',
2023-02-03 02:46:53 +00:00
'/bin/sh /usr/bin/lsb_release -a',
'/bin/sh /usr/bin/lsb_release -a --short',
'/bin/zsh -c ls',
'sh -c /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -sdk /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX.sdk -find python3 2> /dev/null',
'sh -c /bin/stty size 2>/dev/null',
'sh -c cat /proc/sys/kernel/pid_max',
"sh -c osascript -e 'user locale of (get system info)'",
"sh -c pacmd list-sinks |grep 'name:\|module:'",
'sh -c pactl --version',
'sh -c python3.7 --version 2>&1',
'sh -c /usr/bin/xcrun clang 2>&1',
'sh -c xcode-select --print-path >/dev/null 2>&1 && xcrun --sdk macosx --show-sdk-path 2>/dev/null'
)
OR (
p1_name = 'WhatsApp'
-- WhatsApp grabs the serial number from people's machines :(
AND p0_cmd = '/bin/sh -c ioreg -c IOPlatformExpertDevice -d 2'
)
2023-02-08 19:37:09 +00:00
OR (
p1_name LIKE 'emacs-%'
AND p1_path LIKE '%/bin/emacs%'
)
OR p1_cmd IN (
'/usr/bin/python3 /usr/share/apport/apport-gtk',
'php ./autodocs update images'
)
OR (
p1_cmd LIKE '%Python% /opt/homebrew/bin/jupyter%'
AND p0_cmd = '/bin/sh -c osascript'
)
OR (
p1_name = 'osqueryd'
AND p0_cmd LIKE '/bin/sh /etc/NetworkManager/dispatcher.d/%'
)
OR (
p1_name = 'ssh'
2023-02-03 01:55:46 +00:00
AND p0_cmd LIKE '%gcloud.py compute start-iap-tunnel%'
)
OR exception_key IN (
'bash,0,auditd,launchd',
2023-02-09 22:54:41 +00:00
'bash,0,etcd,containerd-shim-runc-v2',
'bash,0,kube-apiserver,containerd-shim-runc-v2',
2023-08-15 22:13:06 +00:00
'bash,0,mutter-x11-frames,gnome-shell',
'bash,0,perl5.30,system_installd',
'bash,0,pia-daemon,launchd',
'bash,0,udevadm,udevadm',
2023-08-15 22:13:06 +00:00
'bash,500,.man-wrapped,zsh',
'bash,500,Foxit PDF Reader,launchd',
'bash,500,Hyprland,gdm-wayland-session',
'bash,500,Private Internet Access,launchd',
'bash,500,accounts-daemon,systemd',
'bash,500,busybox,bwrap',
2023-02-09 22:54:41 +00:00
'bash,500,com.docker.dev-envs,com.docker.backend',
'bash,500,docker-builder,bash',
2023-02-09 22:54:41 +00:00
'bash,500,gnome-session-binary,systemd',
'bash,500,gpg-agent,launchd',
'bash,500,lazygit,nvim',
'bash,500,script,bash',
'bash,500,steam,bash',
'bash,500,xdg-desktop-portal,systemd',
2023-08-15 22:13:06 +00:00
'bash,500,xdg-permission-store,systemd',
2023-02-09 22:54:41 +00:00
'dash,0,anacron,systemd',
'dash,0,dpkg,apt',
'dash,0,dpkg,python3.10',
'dash,0,kindnetd,containerd-shim-runc-v2',
'dash,0,kube-proxy,containerd-shim-runc-v2',
'dash,0,run-parts,dash',
'dash,0,snapd,systemd',
2023-08-15 22:13:06 +00:00
'sh,0,Ecamm Live,launchd',
2023-02-08 19:37:09 +00:00
'sh,0,auditd,launchd',
2023-02-09 22:54:41 +00:00
'sh,500,Google Drive,launchd',
'sh,500,LogiTune,launchd',
'sh,500,Meeting Center,launchd',
2023-08-15 22:13:06 +00:00
'sh,500,cloud_sql_proxy,zsh',
'sh,500,docs,zsh',
'sh,500,snyk-macos,snyk',
'sh,500,ssh,mosh-client',
2023-02-09 22:54:41 +00:00
'sh,500,updater,Foxit PDF Reader',
'sh,500,yabai,launchd',
'zsh,500,old,launchd',
'zsh,500,old,old',
2023-02-09 22:54:41 +00:00
'zsh,500,python3.10,gnome-shell',
'zsh,500,stable,launchd'
)
OR p0_cmd LIKE '%/bash -e%/bin/as -arch%'
OR p0_cmd LIKE '/bin/bash /opt/homebrew/%'
2023-02-09 01:53:19 +00:00
OR p0_cmd LIKE '/bin/bash /usr/bin/xdg-settings check %'
OR p0_cmd LIKE '/bin/bash /usr/local/Homebrew/%'
OR p0_cmd LIKE '/bin/sh %/bin/gcloud%config config-helper%'
OR p0_cmd LIKE '/bin/sh %/google-cloud-sdk/bin/gcloud config get project'
OR p0_cmd LIKE '/bin/sh -c pkg-config %'
OR p0_cmd LIKE '/bin/sh %/docker-credential-gcloud get'
OR p0_cmd LIKE '/bin/bash %git credential-osxkeychain get'
OR p0_cmd LIKE '/bin/sh /usr/bin/xdg-open %'
2023-02-09 01:53:19 +00:00
OR p0_cmd LIKE '/bin/sh /usr/bin/xdg-settings check %'
2023-02-03 02:46:53 +00:00
OR p0_cmd LIKE '/bin/sh /usr/bin/xdg-settings get %'
OR p0_cmd LIKE '/bin/sh /usr/bin/xdg-settings set %'
2023-02-24 21:30:17 +00:00
OR p0_cmd LIKE '/bin/bash /Users/%/homebrew/Library/Homebrew/shims/shared/curl %'
OR p0_cmd LIKE '%gcloud config config-helper --format=json'
OR p0_cmd LIKE '%gcloud config get-value%'
OR p0_cmd LIKE '%sh -c ntia-checker %'
2023-02-09 01:53:19 +00:00
OR p0_cmd LIKE '%/google-chrome% --flag-switches-begin % --product-version'
OR p1_cmd LIKE '%/bin/pipenv shell'
OR p1_cmd LIKE '/System/Library/Frameworks/Ruby.framework/Versions/2.6/usr/bin/ruby -W1 --disable=gems,rubyopt -- /Users/%/homebrew/Library/Homebrew/build.rb%'
2023-02-09 22:54:41 +00:00
OR p1_cmd LIKE 'gcloud% auth%login%'
OR p1_cmd LIKE '/%google-cloud-sdk/lib/gcloud.py%'
OR (
exception_key = 'sh,500,ruby,zsh'
AND p1_cmd LIKE '%brew.rb'
)
OR (
exception_key = 'sh,500,ruby,ruby'
AND p1_cmd LIKE '%homebrew%'
)
2023-02-09 01:53:19 +00:00
OR p1_cmd LIKE '%Python /opt/homebrew/bin/aws configure sso'
OR p2_cmd LIKE '/bin/bash /usr/local/bin/brew%'
OR p2_cmd LIKE '/usr/bin/python3 -m py_compile %'
)
AND NOT p0_cgroup LIKE '/system.slice/docker-%'
AND NOT p1_cgroup LIKE '/system.slice/docker-%'
AND NOT p2_cgroup LIKE '/system.slice/docker-%'
GROUP BY
pe.pid