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
|
2022-10-21 18:11:45 +00:00
|
|
|
-- interval: 45
|
2022-09-24 15:12:23 +00:00
|
|
|
SELECT
|
|
|
|
p.pid,
|
|
|
|
p.path,
|
|
|
|
REPLACE(
|
2022-09-15 13:34:45 +00:00
|
|
|
p.path,
|
2022-09-24 15:12:23 +00:00
|
|
|
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,
|
2022-11-03 18:25:13 +00:00
|
|
|
ppp.path AS gparent_path,
|
|
|
|
ppp.name AS gparent_name,
|
2022-09-24 15:12:23 +00:00
|
|
|
TRIM(p.cmdline) AS parent_cmd,
|
|
|
|
pp.euid AS parent_euid,
|
2022-11-03 18:25:13 +00:00
|
|
|
phash.sha256 AS parent_sha256,
|
|
|
|
gphash.sha256 AS gparent_sha256
|
2022-09-24 15:12:23 +00:00
|
|
|
FROM
|
|
|
|
uptime,
|
|
|
|
process_events p
|
|
|
|
LEFT JOIN processes pp ON p.parent = pp.pid
|
2022-11-03 18:25:13 +00:00
|
|
|
LEFT JOIN processes ppp ON pp.parent = ppp.pid
|
2022-09-24 15:12:23 +00:00
|
|
|
LEFT JOIN hash ON p.path = hash.path
|
2022-10-21 18:11:45 +00:00
|
|
|
LEFT JOIN hash AS phash ON pp.path = phash.path
|
2022-11-03 18:25:13 +00:00
|
|
|
LEFT JOIN hash AS gphash ON ppp.path = gphash.path
|
2022-09-24 15:12:23 +00:00
|
|
|
WHERE
|
2022-10-21 18:11:45 +00:00
|
|
|
p.time > (strftime('%s', 'now') -45)
|
2022-09-24 15:12:23 +00:00
|
|
|
AND (
|
|
|
|
basename IN (
|
|
|
|
'bitspin',
|
|
|
|
'bpftool',
|
|
|
|
'csrutil',
|
|
|
|
'heyoka',
|
|
|
|
'nstx',
|
|
|
|
'dnscat2',
|
|
|
|
'tuns',
|
|
|
|
'iodine',
|
|
|
|
'rshell',
|
|
|
|
'rsh',
|
|
|
|
'incbit',
|
|
|
|
'kmod',
|
|
|
|
'lushput',
|
|
|
|
'mkfifo',
|
|
|
|
'msfvenom',
|
|
|
|
'nc',
|
|
|
|
'socat'
|
2022-10-21 21:42:44 +00:00
|
|
|
) -- Chrome Stealer
|
2022-09-24 15:12:23 +00:00
|
|
|
OR cmd LIKE '%set visible of front window to false%'
|
2022-10-21 21:42:44 +00:00
|
|
|
OR cmd LIKE '%chrome%-load-extension%' -- Known attack scripts
|
2022-09-24 15:12:23 +00:00
|
|
|
OR basename LIKE '%pwn%'
|
2022-10-21 21:42:44 +00:00
|
|
|
OR basename LIKE '%attack%' -- Unusual behaviors
|
2022-09-24 15:12:23 +00:00
|
|
|
OR cmd LIKE '%chattr -ia%'
|
2022-10-07 16:46:55 +00:00
|
|
|
OR cmd LIKE '%chmod 777 %'
|
2022-09-24 15:12:23 +00:00
|
|
|
OR cmd LIKE '%touch%acmr%'
|
2022-10-18 15:32:18 +00:00
|
|
|
OR cmd LIKE '%touch -r%'
|
2022-09-24 15:12:23 +00:00
|
|
|
OR cmd LIKE '%ld.so.preload%'
|
|
|
|
OR cmd LIKE '%urllib.urlopen%'
|
|
|
|
OR cmd LIKE '%nohup%tmp%'
|
2022-10-13 18:59:32 +00:00
|
|
|
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%'
|
2022-11-16 21:52:39 +00:00
|
|
|
OR (cmd LIKE '%xargs kill -9%' AND p.euid=0)
|
2022-10-13 18:59:32 +00:00
|
|
|
OR cmd LIKE '%nohup /bin/bash%'
|
2022-11-08 01:36:37 +00:00
|
|
|
OR cmd LIKE '%history'
|
2022-10-13 22:31:59 +00:00
|
|
|
OR cmd LIKE '%echo%|%base64 --decode %|%'
|
2022-10-13 18:59:32 +00:00
|
|
|
OR cmd LIKE '%launchctl list%'
|
2022-10-21 21:42:44 +00:00
|
|
|
OR (
|
|
|
|
cmd LIKE '%UserKnownHostsFile=/dev/null%'
|
|
|
|
AND NOT parent_name = 'limactl'
|
|
|
|
) -- Random keywords
|
|
|
|
OR cmd LIKE '%ransom%' -- Reverse shells
|
2022-09-24 15:12:23 +00:00
|
|
|
OR cmd LIKE '%fsockopen%'
|
|
|
|
OR cmd LIKE '%openssl%quiet%'
|
|
|
|
OR cmd LIKE '%pty.spawn%'
|
2022-10-21 21:42:44 +00:00
|
|
|
OR (
|
|
|
|
cmd LIKE '%sh -i'
|
2022-11-17 12:20:19 +00:00
|
|
|
AND NOT parent_name IN ('sh', 'java')
|
2022-10-21 21:42:44 +00:00
|
|
|
)
|
2022-09-24 15:12:23 +00:00
|
|
|
OR cmd LIKE '%socat%'
|
|
|
|
OR cmd LIKE '%SOCK_STREAM%'
|
2022-10-21 21:42:44 +00:00
|
|
|
OR (
|
|
|
|
cmd LIKE '%Socket.%'
|
|
|
|
AND NOT basename IN ('compile', 'sed', 'mv')
|
|
|
|
AND NOT cmd LIKE "%sys/socket.h%"
|
|
|
|
)
|
2022-09-24 15:12:23 +00:00
|
|
|
) -- 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')
|
2022-11-10 16:04:48 +00:00
|
|
|
)
|
2022-09-24 15:12:23 +00:00
|
|
|
AND NOT (
|
|
|
|
cmd IN (
|
|
|
|
'/usr/bin/csrutil status',
|
2022-10-28 23:24:00 +00:00
|
|
|
'/usr/bin/csrutil report',
|
|
|
|
'/bin/launchctl list',
|
2022-11-03 15:51:54 +00:00
|
|
|
'launchctl list com.parallels.desktop.launchdaemon',
|
|
|
|
'launchctl list us.zoom.ZoomDaemon',
|
|
|
|
'sudo launchctl list us.zoom.ZoomDaemon',
|
2022-11-10 16:04:48 +00:00
|
|
|
'/bin/launchctl list com.logi.optionsplus.update',
|
2022-10-31 21:40:37 +00:00
|
|
|
'/bin/launchctl list homebrew.mxcl.yabai',
|
2022-11-10 16:04:48 +00:00
|
|
|
'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',
|
2022-10-28 23:24:00 +00:00
|
|
|
'/bin/launchctl asuser 0 /bin/launchctl list'
|
2022-09-20 21:46:47 +00:00
|
|
|
)
|
2022-11-16 16:02:29 +00:00
|
|
|
-- The source of these commands is still a mystery to me.
|
2022-11-08 01:36:37 +00:00
|
|
|
OR p.parent = -1
|
2022-09-24 15:12:23 +00:00
|
|
|
)
|
2022-10-21 18:11:45 +00:00
|
|
|
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%'
|
2022-11-03 15:51:54 +00:00
|
|
|
AND NOT cmd LIKE 'rm -f /tmp/insttmp_%'
|
2022-11-10 16:04:48 +00:00
|
|
|
AND NOT cmd LIKE '/bin/cp %history%sessions/%'
|
2022-10-26 01:27:41 +00:00
|
|
|
AND NOT cmd LIKE 'touch -r /tmp/KSInstallAction.%'
|
2022-11-03 18:25:13 +00:00
|
|
|
AND NOT cmd LIKE '%find /Applications/LogiTuneInstaller.app -type d -exec chmod 777 {}%'
|