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
|
2023-01-27 15:38:01 +00:00
|
|
|
-- interval: 30
|
|
|
|
SELECT -- Child
|
2023-01-26 16:40:54 +00:00
|
|
|
pe.path AS p0_path,
|
|
|
|
REGEX_MATCH (pe.path, '.*/(.*)', 1) AS p0_name,
|
|
|
|
TRIM(pe.cmdline) AS p0_cmd,
|
|
|
|
pe.pid AS p0_pid,
|
|
|
|
pe.euid AS p0_euid,
|
|
|
|
p.cgroup_path AS p0_cgroup,
|
|
|
|
s.authority AS p0_authority,
|
|
|
|
-- 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,
|
|
|
|
COALESCE(p_hash1.sha256, pe_hash1.sha256) AS p1_hash,
|
|
|
|
REGEX_MATCH(COALESCE(p1.path, pe1.path), '.*/(.*)', 1) AS p1_name,
|
|
|
|
pe_sig1.authority AS p1_authority,
|
|
|
|
-- Grandparent
|
|
|
|
COALESCE(p1.parent, pe1.parent) AS p2_pid,
|
|
|
|
COALESCE(p1_p2.cgroup_path, pe1_p2.cgroup_path) AS p2_cgroup,
|
2023-01-27 15:38:01 +00:00
|
|
|
TRIM(
|
|
|
|
COALESCE(p1_p2.cmdline, pe1_p2.cmdline, pe1_pe2.cmdline)
|
|
|
|
) AS p2_cmd,
|
2023-01-26 16:40:54 +00:00
|
|
|
COALESCE(p1_p2.path, pe1_p2.path, pe1_pe2.path) AS p2_path,
|
2023-01-27 15:38:01 +00:00
|
|
|
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,
|
|
|
|
COALESCE(
|
|
|
|
p1_p2_sig.authority,
|
|
|
|
pe1_p2_sig.authority,
|
|
|
|
pe1_pe2_sig.authority
|
|
|
|
) AS p2_authority,
|
2023-01-26 16:40:54 +00:00
|
|
|
-- Exception key
|
2023-01-27 15:38:01 +00:00
|
|
|
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,
|
|
|
|
uptime
|
2023-01-18 14:49:56 +00:00
|
|
|
LEFT JOIN processes p ON pe.pid = p.pid
|
2023-01-27 15:38:01 +00:00
|
|
|
LEFT JOIN signature s ON pe.path = s.path -- Parents (via two paths)
|
2023-01-26 16:40:54 +00:00
|
|
|
LEFT JOIN processes p1 ON pe.parent = p1.pid
|
|
|
|
LEFT JOIN hash p_hash1 ON p1.path = p_hash1.path
|
2023-01-27 15:38:01 +00:00
|
|
|
LEFT JOIN process_events pe1 ON pe.parent = pe1.pid
|
|
|
|
AND pe1.cmdline != ''
|
2023-01-26 16:40:54 +00:00
|
|
|
LEFT JOIN hash pe_hash1 ON pe1.path = pe_hash1.path
|
2023-01-27 15:38:01 +00:00
|
|
|
LEFT JOIN signature pe_sig1 ON pe1.path = pe_sig1.path -- Grandparents (via 3 paths)
|
2023-01-26 16:40:54 +00:00
|
|
|
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
|
2023-01-27 15:38:01 +00:00
|
|
|
LEFT JOIN process_events pe1_pe2 ON pe1.parent = pe1_p2.pid
|
|
|
|
AND pe1_pe2.cmdline != '' -- Past grandparent via parent events
|
2023-01-26 16:40:54 +00:00
|
|
|
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
|
|
|
|
LEFT JOIN signature p1_p2_sig ON p1_p2.path = p1_p2_sig.path
|
|
|
|
LEFT JOIN signature pe1_p2_sig ON pe1_p2.path = pe1_p2_sig.path
|
|
|
|
LEFT JOIN signature pe1_pe2_sig ON pe1_pe2.path = pe1_pe2_sig.path
|
2023-01-27 15:38:01 +00:00
|
|
|
WHERE pe.time > (strftime('%s', 'now') -30)
|
2023-01-18 14:49:56 +00:00
|
|
|
AND pe.status = 0
|
2023-01-26 16:40:54 +00:00
|
|
|
AND pe.cmdline != ''
|
|
|
|
AND pe.cmdline IS NOT NULL
|
|
|
|
AND pe.status == 0
|
2022-09-24 15:12:23 +00:00
|
|
|
AND (
|
2023-01-26 16:40:54 +00:00
|
|
|
p0_name IN (
|
2022-09-24 15:12:23 +00:00
|
|
|
'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
|
2023-01-26 16:40:54 +00:00
|
|
|
OR p0_cmd LIKE '%set visible of front window to false%'
|
|
|
|
OR p0_cmd LIKE '%chrome%-load-extension%' -- Known attack scripts
|
|
|
|
OR p0_name LIKE '%pwn%'
|
|
|
|
OR p0_name LIKE '%attack%' -- Unusual behaviors
|
|
|
|
OR p0_cmd LIKE '%powershell%'
|
|
|
|
OR p0_cmd LIKE '%chattr -ia%'
|
|
|
|
OR p0_cmd LIKE '%chmod%777 %'
|
|
|
|
OR p0_cmd LIKE '%touch%acmr%'
|
|
|
|
OR p0_cmd LIKE '%touch -r%'
|
|
|
|
OR p0_cmd LIKE '%ld.so.preload%'
|
|
|
|
OR p0_cmd LIKE '%urllib.urlopen%'
|
|
|
|
OR p0_cmd LIKE '%nohup%tmp%'
|
|
|
|
OR p0_cmd LIKE '%killall Terminal%'
|
|
|
|
OR p0_cmd LIKE '%iptables stop'
|
2022-11-18 15:27:43 +00:00
|
|
|
OR (
|
2023-01-18 14:49:56 +00:00
|
|
|
pe.euid = 0
|
2022-11-18 15:27:43 +00:00
|
|
|
AND (
|
2023-01-26 16:40:54 +00:00
|
|
|
p0_cmd LIKE '%pkill -f%'
|
|
|
|
OR p0_cmd LIKE '%xargs kill -9%'
|
2022-11-18 15:27:43 +00:00
|
|
|
)
|
|
|
|
)
|
2023-01-26 16:40:54 +00:00
|
|
|
OR p0_cmd LIKE '%rm -f /var/tmp%'
|
|
|
|
OR p0_cmd LIKE '%rm -f /tmp%'
|
|
|
|
OR p0_cmd LIKE '%nohup /bin/bash%'
|
2023-01-09 15:46:30 +00:00
|
|
|
OR (
|
2023-01-26 16:40:54 +00:00
|
|
|
INSTR(p0_cmd, 'history') > 0
|
|
|
|
AND p0_cmd LIKE '%history'
|
2023-01-09 15:46:30 +00:00
|
|
|
)
|
2023-01-26 16:40:54 +00:00
|
|
|
OR p0_cmd LIKE '%echo%|%base64 --decode %|%'
|
|
|
|
OR p0_cmd LIKE '%launchctl load%'
|
|
|
|
OR p0_cmd LIKE '%launchctl bootout%'
|
|
|
|
OR p0_cmd LIKE '%chflags uchg%'
|
2022-10-21 21:42:44 +00:00
|
|
|
OR (
|
2023-01-26 16:40:54 +00:00
|
|
|
p0_cmd LIKE '%UserKnownHostsFile=/dev/null%'
|
|
|
|
AND NOT p1_name = 'limactl'
|
2022-10-21 21:42:44 +00:00
|
|
|
) -- Random keywords
|
2023-01-26 16:40:54 +00:00
|
|
|
OR p0_cmd LIKE '%ransom%' -- Reverse shells
|
|
|
|
OR p0_cmd LIKE '%fsockopen%'
|
|
|
|
OR p0_cmd LIKE '%openssl%quiet%'
|
|
|
|
OR p0_cmd LIKE '%pty.spawn%'
|
2022-10-21 21:42:44 +00:00
|
|
|
OR (
|
2023-01-26 16:40:54 +00:00
|
|
|
p0_cmd LIKE '%sh -i'
|
|
|
|
AND NOT p1_name IN ('sh', 'java')
|
|
|
|
AND NOT p1_cmd LIKE "%pipenv shell"
|
2022-10-21 21:42:44 +00:00
|
|
|
)
|
2023-01-26 16:40:54 +00:00
|
|
|
OR p0_cmd LIKE '%socat%'
|
|
|
|
OR p0_cmd LIKE '%SOCK_STREAM%'
|
|
|
|
OR INSTR(p0_cmd, 'Socket.') > 0
|
2022-09-24 15:12:23 +00:00
|
|
|
) -- Things that could reasonably happen at boot.
|
|
|
|
AND NOT (
|
2023-01-18 14:49:56 +00:00
|
|
|
pe.path = '/usr/bin/mkfifo'
|
2023-01-26 16:40:54 +00:00
|
|
|
AND p0_cmd LIKE '%/org.gpgtools.log.%/fifo'
|
2022-09-24 15:12:23 +00:00
|
|
|
)
|
|
|
|
AND NOT (
|
2023-01-26 16:40:54 +00:00
|
|
|
p0_cmd LIKE '%csrutil status'
|
|
|
|
AND p1_name IN ('Dropbox')
|
2022-11-10 16:04:48 +00:00
|
|
|
)
|
2022-09-24 15:12:23 +00:00
|
|
|
AND NOT (
|
2023-01-26 16:40:54 +00:00
|
|
|
p0_cmd IN (
|
2023-01-30 19:58:47 +00:00
|
|
|
'/bin/launchctl bootout gui/501 /Library/LaunchAgents/com.logi.optionsplus.plist',
|
|
|
|
'/bin/launchctl bootout system/com.docker.socket',
|
|
|
|
'/bin/launchctl load /Library/LaunchDaemons/com.logi.optionsplus.updater.plist',
|
2023-01-14 13:19:26 +00:00
|
|
|
'/bin/launchctl load -wF /Library/LaunchAgents/com.adobe.GC.AGM.plist',
|
2023-01-30 19:58:47 +00:00
|
|
|
'/bin/launchctl load -w /Library/LaunchDaemons/com.docker.socket.plist',
|
2022-12-19 23:06:06 +00:00
|
|
|
'/bin/rm -f /tmp/.com.apple.dt.CommandLineTools.installondemand.in-progress',
|
|
|
|
'git history',
|
2023-01-27 13:46:48 +00:00
|
|
|
'launchctl asuser 501 launchctl load /System/Library/LaunchAgents/com.apple.SafariBookmarksSyncAgent.plist',
|
|
|
|
'launchctl load /Library/LaunchDaemons/us.zoom.ZoomDaemon.plist',
|
|
|
|
'launchctl load /System/Library/LaunchAgents/com.apple.SafariBookmarksSyncAgent.plist',
|
2023-01-27 15:38:01 +00:00
|
|
|
'launchctl load -w /Library/LaunchDaemons/com.opalcamera.cameraExtensionShim.plist',
|
|
|
|
'launchctl load -w /Library/LaunchDaemons/com.opalcamera.OpalCamera.installUpdate.daemon.plist',
|
2022-11-10 16:04:48 +00:00
|
|
|
'/Library/Apple/System/Library/StagedFrameworks/Safari/SafariShared.framework/XPCServices/com.apple.Safari.History.xpc/Contents/MacOS/com.apple.Safari.History',
|
2023-01-27 13:46:48 +00:00
|
|
|
'sudo launchctl load /Library/LaunchDaemons/us.zoom.ZoomDaemon.plist',
|
2022-11-18 15:27:43 +00:00
|
|
|
'/usr/bin/csrutil report',
|
|
|
|
'/usr/bin/csrutil status',
|
2023-01-27 13:46:48 +00:00
|
|
|
'/usr/bin/pkill -F /private/var/run/lima/shared_socket_vmnet.pid',
|
|
|
|
'/usr/bin/xattr -d com.apple.writer_bundle_identifier /Applications/Safari.app',
|
2022-12-19 23:06:06 +00:00
|
|
|
'xpcproxy com.apple.Safari.History'
|
2023-01-27 15:38:01 +00:00
|
|
|
) -- The source of these commands is still a mystery to me.
|
2023-01-18 14:49:56 +00:00
|
|
|
OR pe.parent = -1
|
2022-09-24 15:12:23 +00:00
|
|
|
)
|
2023-01-26 16:40:54 +00:00
|
|
|
AND NOT p0_cmd LIKE '/bin/launchctl load -wF /Users/%/Library/PreferencePanes/../LaunchAgents/com.adobe.GC.Invoker-1.0.plist'
|
|
|
|
AND NOT p0_cmd LIKE '/bin/launchctl load -w /Users/%/Library/LaunchAgents/keybase.%.plist'
|
|
|
|
AND NOT p0_cmd LIKE '-history%'
|
|
|
|
AND NOT p0_cmd LIKE '/bin/rm -f /tmp/periodic.%'
|
|
|
|
AND NOT p0_cmd LIKE 'rm -f /tmp/locate%/_updatedb%'
|
|
|
|
AND NOT p0_cmd LIKE 'rm -f /tmp/locate%/mklocate%/_mklocatedb%'
|
2023-01-26 21:30:14 +00:00
|
|
|
AND NOT p0_cmd LIKE '%launchctl load -w /Library/LaunchAgents/com.opalcamera.vcam.assistant.plist'
|
|
|
|
AND NOT p0_cmd LIKE '%launchctl load -w /Library/LaunchAgents/com.opalcamera.OpalCamera.startOnUsbPlugged.agent.plist'
|
2023-01-26 16:40:54 +00:00
|
|
|
AND NOT p0_cmd LIKE 'rm -f /tmp/insttmp_%'
|
|
|
|
AND NOT p0_cmd LIKE '/bin/cp %history%sessions/%'
|
|
|
|
AND NOT p0_cmd LIKE 'touch -r /tmp/KSInstallAction.%'
|
|
|
|
AND NOT p0_cmd LIKE '%find /Applications/LogiTuneInstaller.app -type d -exec chmod 777 {}%'
|
|
|
|
AND NOT p0_cmd LIKE '/bin/rm -f /tmp/com.adobe.%.updater/%'
|
2023-01-27 15:38:01 +00:00
|
|
|
AND NOT p0_name IN ('cc1', 'compile')
|