2023-01-13 16:38:19 +00:00
|
|
|
-- Detect unusual calls to xattr, used to remove filesystem attributes
|
|
|
|
--
|
|
|
|
-- false positives:
|
|
|
|
-- * none observed, but they are expected
|
|
|
|
--
|
2023-01-26 16:40:54 +00:00
|
|
|
-- interval: 300
|
2023-01-13 16:38:19 +00:00
|
|
|
-- platform: darwin
|
|
|
|
-- tags: process events
|
2023-01-20 14:24:24 +00:00
|
|
|
SELECT
|
2023-01-26 16:40:54 +00:00
|
|
|
-- Child
|
|
|
|
pe.path AS p0_path,
|
|
|
|
REGEX_MATCH (pe.path, '.*/(.*)', 1) AS p0_name,
|
|
|
|
TRIM(pe.cmdline) AS p0_cmd,
|
2023-02-01 18:55:55 +00:00
|
|
|
pe.cwd AS p0_cwd,
|
2023-01-26 16:40:54 +00:00
|
|
|
pe.pid AS p0_pid,
|
|
|
|
pe.euid AS p0_euid,
|
|
|
|
s.authority AS p0_authority,
|
|
|
|
-- Parent
|
|
|
|
pe.parent AS p1_pid,
|
|
|
|
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,
|
2023-02-02 22:58:19 +00:00
|
|
|
REGEX_MATCH (COALESCE(p1.path, pe1.path), '.*/(.*)', 1) AS p1_name,
|
2023-01-26 16:40:54 +00:00
|
|
|
pe_sig1.authority AS p1_authority,
|
|
|
|
-- Grandparent
|
|
|
|
COALESCE(p1.parent, pe1.parent) AS p2_pid,
|
2023-02-02 22:58:19 +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-02-02 22:58:19 +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-02-02 22:58:19 +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
|
2023-01-20 14:24:24 +00:00
|
|
|
FROM
|
2023-02-02 22:58:19 +00:00
|
|
|
process_events pe,
|
|
|
|
uptime
|
2023-01-13 16:38:19 +00:00
|
|
|
LEFT JOIN processes p ON pe.pid = p.pid
|
2023-01-26 16:40:54 +00:00
|
|
|
LEFT JOIN signature s ON pe.path = s.path
|
|
|
|
-- Parents (via two paths)
|
|
|
|
LEFT JOIN processes p1 ON pe.parent = p1.pid
|
|
|
|
LEFT JOIN hash p_hash1 ON p1.path = p_hash1.path
|
2023-02-02 22:58:19 +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
|
|
|
|
LEFT JOIN signature pe_sig1 ON pe1.path = pe_sig1.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
|
2023-02-02 22:58:19 +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-20 14:24:24 +00:00
|
|
|
WHERE
|
2023-01-26 16:40:54 +00:00
|
|
|
pe.time > (strftime('%s', 'now') -300)
|
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
|
|
|
|
AND pe.path = '/usr/bin/xattr'
|
2023-02-17 16:57:23 +00:00
|
|
|
AND p0_cmd NOT LIKE '%xattr -d -r com.apple.quarantine /Applications/%.app'
|
|
|
|
AND p0_cmd NOT LIKE '%xattr -r -d com.apple.quarantine /Applications/%.app'
|
|
|
|
AND p0_cmd NOT LIKE '%xattr -d com.apple.quarantine /Applications/%.app'
|
|
|
|
AND p0_cmd NOT LIKE '%xattr -d com.apple.quarantine /Applications/%.app/%.xpc'
|
2023-01-13 16:38:19 +00:00
|
|
|
AND NOT (
|
2023-01-16 18:55:53 +00:00
|
|
|
pe.euid > 500
|
2023-01-26 16:40:54 +00:00
|
|
|
AND p0_cmd LIKE '%xattr -l %'
|
2023-01-16 17:56:39 +00:00
|
|
|
)
|
2023-01-20 13:40:08 +00:00
|
|
|
AND NOT (
|
|
|
|
pe.euid > 500
|
2023-01-26 16:40:54 +00:00
|
|
|
AND p0_cmd LIKE '%xattr -p com.apple.quarantine %'
|
2023-01-20 13:40:08 +00:00
|
|
|
)
|
2023-03-06 20:11:11 +00:00
|
|
|
AND NOT (
|
|
|
|
pe.euid > 500
|
|
|
|
AND p0_cmd LIKE '%xattr -p com.apple.rootless /Users/%/Library/Containers/%'
|
|
|
|
)
|
2023-01-23 13:13:04 +00:00
|
|
|
AND NOT (
|
|
|
|
pe.euid > 500
|
2023-01-26 16:40:54 +00:00
|
|
|
AND p0_cmd LIKE '%xattr -p com.apple.metadata:kMDItemAlternateNames %'
|
2023-01-23 13:13:04 +00:00
|
|
|
)
|
2023-01-16 17:56:39 +00:00
|
|
|
AND NOT (
|
2023-01-16 18:55:53 +00:00
|
|
|
pe.euid > 500
|
2023-01-26 16:40:54 +00:00
|
|
|
AND p0_cmd LIKE '/usr/bin/xattr -w com.apple.metadata:kMDItemAlternateNames %'
|
2023-01-16 17:56:39 +00:00
|
|
|
)
|
2023-02-09 01:06:26 +00:00
|
|
|
AND NOT (
|
|
|
|
pe.euid > 500
|
|
|
|
AND p0_cmd LIKE 'xattr -r -d com.apple.quarantine /Users/%/.provisio/bin/%.app'
|
|
|
|
)
|
2023-01-26 16:40:54 +00:00
|
|
|
AND NOT (
|
|
|
|
pe.euid > 500
|
|
|
|
AND p0_cmd = '/usr/bin/xattr -h'
|
|
|
|
AND p1_cmd LIKE '%homebrew%'
|
|
|
|
)
|
|
|
|
AND p0_cmd NOT LIKE '/usr/bin/xattr -w com.apple.quarantine 0002;%'
|
|
|
|
AND p0_cmd NOT LIKE '/usr/bin/xattr -w com.apple.quarantine 0181;%'
|
2023-01-20 14:24:24 +00:00
|
|
|
GROUP BY
|
2023-02-02 22:58:19 +00:00
|
|
|
pe.pid
|