osquery-defense-kit/detection/evasion/empty_environ_macos.sql

86 lines
3.2 KiB
MySQL
Raw Normal View History

-- Find programs which have cleared their environment
--
-- references:
-- * https://www.sandflysecurity.com/blog/bpfdoor-an-evasive-linux-backdoor-technical-analysis/
--
-- tags: persistent state daemon process
-- platform: darwin
-- interval: 600
2022-11-16 16:02:29 +00:00
SELECT
COUNT(key) AS count,
p.pid,
p.path,
p.name,
p.euid,
p.on_disk,
p.parent,
p.cmdline,
pp.name AS parent_name,
pp.cmdline AS parent_cmd,
signature.identifier,
signature.authority,
hash.sha256,
CONCAT (
MIN(p.euid, 500),
',',
p.name,
',',
signature.identifier,
',',
signature.authority
) AS exception_key -- Processes is 20X faster to scan than process_envs
2022-11-16 16:02:29 +00:00
FROM
processes p
LEFT JOIN process_envs pe ON p.pid = pe.pid
LEFT JOIN processes pp ON p.parent = pp.pid
LEFT JOIN hash ON p.path = hash.path
LEFT JOIN signature ON p.path = signature.path
WHERE -- This time should match the interval
2022-10-29 23:56:27 +00:00
p.start_time > (strftime('%s', 'now') - 605) -- Filter out transient processes that may not have an envs entry by the time we poll for it
AND p.start_time < (strftime('%s', 'now') - 5)
AND p.path NOT LIKE '/System/Library/%'
AND signature.authority NOT IN (
'Software Signing',
'Apple Mac OS Application Signing',
'Developer ID Application: Adobe Inc. (JQ525L2MZD)',
'Developer ID Application: Brave Software, Inc. (KL8N8XSYF4)',
'Developer ID Application: Docker Inc (9BNSXJN65R)',
'Developer ID Application: GitHub (VEKTX9H2N7)',
'Developer ID Application: Google LLC (EQHXZ8M8AV)',
'Developer ID Application: JetBrains s.r.o. (2ZEFAR8TH3)',
2022-11-16 19:49:36 +00:00
'Developer ID Application: Node.js Foundation (HX7739G8FX)',
'Developer ID Application: Keybase, Inc. (99229SGT5K)',
'Developer ID Application: Kolide Inc (YZ3EM74M78)',
'Developer ID Application: Logitech Inc. (QED4VVPZWA)',
'Developer ID Application: Microsoft Corporation (UBF8T346G9)',
'Developer ID Application: Mozilla Corporation (43AQ936H96)',
'Developer ID Application: Objective Development Software GmbH (MLZF7K7B5R)',
'Developer ID Application: Opal Camera Inc (97Z3HJWCRT)',
'Developer ID Application: Parallels International GmbH (4C6364ACXT)',
'Developer ID Application: Yubico Limited (LQA3CS5MM7)'
)
AND NOT exception_key IN (
'500,CraftWidgetExtension,com.lukilabs.lukiapp.CraftWidget,Apple Mac OS Application Signing',
'500,gsleep,sleep,',
2022-11-08 17:59:11 +00:00
'500,ssh,,',
'500,gopls,a.out,',
'500,esbuild,a.out,',
2022-11-08 17:59:11 +00:00
'500,ssh-sk-helper,,',
2022-10-29 23:56:27 +00:00
'500,Obsidian Helper (Renderer),md.obsidian.helper.Renderer,Developer ID Application: Dynalist Inc. (6JSW4SJWN9)',
'500,Pages,com.apple.iWork.Pages,Apple Mac OS Application Signing',
2022-10-30 13:40:52 +00:00
'500,SafariLaunchAgent,SafariLaunchAgent-55554944882a849c6a6839b4b0e7c551bbc81898,Software Signing',
'500,TwitterNotificationServiceExtension,maccatalyst.com.atebits.Tweetie2.NotificationServiceExtension,Apple Mac OS Application Signing'
) -- Electron apps
2022-10-29 23:56:27 +00:00
AND NOT (
p.path LIKE '/Applications/%Helper%'
AND (
exception_key LIKE '500,%Helper%,Renderer,Developer ID Application: % (%)'
OR exception_key LIKE '500,%Helper%,helper,Developer ID Application: % (%)'
)
)
AND NOT p.path LIKE '/opt/homebrew/Cellar/%'
2022-11-16 16:02:29 +00:00
GROUP BY
p.pid
HAVING
count == 0;