osquery-defense-kit/detection/execution/exotic-command-events-macos...

140 lines
4.0 KiB
MySQL
Raw Normal View History

2022-10-14 18:19:13 +00:00
-- Pick out exotic processes based on their command-line (events-based)
--
2022-10-18 14:08:34 +00:00
-- references:
-- * https://themittenmac.com/what-does-apt-activity-look-like-on-macos/
--
2022-10-14 18:19:13 +00:00
-- false positives:
-- * possible, but none known
--
-- tags: transient process events
-- platform: darwin
-- interval: 45
SELECT
p.pid,
p.path,
REPLACE(
2022-09-15 13:34:45 +00:00
p.path,
RTRIM(p.path, REPLACE(p.path, '/', '')),
''
) AS basename,
-- On macOS there is often a trailing space
TRIM(p.cmdline) AS cmd,
p.mode,
p.cwd,
p.euid,
p.parent,
p.syscall,
hash.sha256,
pp.path AS parent_path,
pp.name AS parent_name,
ppp.path AS gparent_path,
ppp.name AS gparent_name,
TRIM(p.cmdline) AS parent_cmd,
pp.euid AS parent_euid,
phash.sha256 AS parent_sha256,
gphash.sha256 AS gparent_sha256
FROM
uptime,
process_events p
LEFT JOIN processes pp ON p.parent = pp.pid
LEFT JOIN processes ppp ON pp.parent = ppp.pid
LEFT JOIN hash ON p.path = hash.path
LEFT JOIN hash AS phash ON pp.path = phash.path
LEFT JOIN hash AS gphash ON ppp.path = gphash.path
WHERE
p.time > (strftime('%s', 'now') -45)
AND (
basename IN (
'bitspin',
'bpftool',
'csrutil',
'heyoka',
'nstx',
'dnscat2',
'tuns',
'iodine',
'rshell',
'rsh',
'incbit',
'kmod',
'lushput',
'mkfifo',
'msfvenom',
'nc',
'socat'
) -- Chrome Stealer
OR cmd LIKE '%set visible of front window to false%'
OR cmd LIKE '%chrome%-load-extension%' -- Known attack scripts
OR basename LIKE '%pwn%'
OR basename LIKE '%attack%' -- Unusual behaviors
OR cmd LIKE '%chattr -ia%'
2022-10-07 16:46:55 +00:00
OR cmd LIKE '%chmod 777 %'
OR cmd LIKE '%touch%acmr%'
OR cmd LIKE '%touch -r%'
OR cmd LIKE '%ld.so.preload%'
OR cmd LIKE '%urllib.urlopen%'
OR cmd LIKE '%nohup%tmp%'
OR cmd LIKE '%killall Terminal%'
OR cmd LIKE '%iptables stop'
OR cmd LIKE '%pkill -f%'
OR cmd LIKE '%rm -f /var/tmp%'
OR cmd LIKE '%rm -rf /boot%'
OR cmd LIKE '%rm -f /tmp%'
OR (cmd LIKE '%xargs kill -9%' AND p.euid=0)
OR cmd LIKE '%nohup /bin/bash%'
OR cmd LIKE '%history'
OR cmd LIKE '%echo%|%base64 --decode %|%'
OR cmd LIKE '%launchctl list%'
OR (
cmd LIKE '%UserKnownHostsFile=/dev/null%'
AND NOT parent_name = 'limactl'
) -- Random keywords
OR cmd LIKE '%ransom%' -- Reverse shells
OR cmd LIKE '%fsockopen%'
OR cmd LIKE '%openssl%quiet%'
OR cmd LIKE '%pty.spawn%'
OR (
cmd LIKE '%sh -i'
AND NOT parent_name IN ('sh', 'java')
)
OR cmd LIKE '%socat%'
OR cmd LIKE '%SOCK_STREAM%'
OR (
cmd LIKE '%Socket.%'
AND NOT basename IN ('compile', 'sed', 'mv')
AND NOT cmd LIKE "%sys/socket.h%"
)
) -- Things that could reasonably happen at boot.
AND NOT (
p.path = '/usr/bin/mkfifo'
AND cmd LIKE '%/org.gpgtools.log.%/fifo'
)
AND NOT (
cmd LIKE '%csrutil status'
AND parent_name IN ('Dropbox')
)
AND NOT (
cmd IN (
'/usr/bin/csrutil status',
'/usr/bin/csrutil report',
'/bin/launchctl list',
'launchctl list com.parallels.desktop.launchdaemon',
'launchctl list us.zoom.ZoomDaemon',
'sudo launchctl list us.zoom.ZoomDaemon',
'/bin/launchctl list com.logi.optionsplus.update',
'/bin/launchctl list homebrew.mxcl.yabai',
'xpcproxy com.apple.Safari.History',
'/Library/Apple/System/Library/StagedFrameworks/Safari/SafariShared.framework/XPCServices/com.apple.Safari.History.xpc/Contents/MacOS/com.apple.Safari.History',
'/bin/launchctl asuser 0 /bin/launchctl list'
)
2022-11-16 16:02:29 +00:00
-- The source of these commands is still a mystery to me.
OR p.parent = -1
)
AND NOT cmd LIKE '/bin/rm -f /tmp/periodic.%'
2022-10-29 16:11:46 +00:00
AND NOT cmd LIKE 'rm -f /tmp/locate%/_updatedb%'
AND NOT cmd LIKE 'rm -f /tmp/locate%/mklocate%/_mklocatedb%'
AND NOT cmd LIKE 'rm -f /tmp/insttmp_%'
AND NOT cmd LIKE '/bin/cp %history%sessions/%'
AND NOT cmd LIKE 'touch -r /tmp/KSInstallAction.%'
AND NOT cmd LIKE '%find /Applications/LogiTuneInstaller.app -type d -exec chmod 777 {}%'