osquery-defense-kit/detection/evasion/unexpected-var-run-macos.sql

66 lines
1.5 KiB
MySQL
Raw Normal View History

-- Find unexpected regular files in /var/run
--
-- false positives:
-- * none known
--
-- references:
-- * https://sandflysecurity.com/blog/bpfdoor-an-evasive-linux-backdoor-technical-analysis/
--
2023-05-11 14:33:51 +00:00
-- tags: persistent
-- platform: darwin
2023-05-11 14:33:51 +00:00
SELECT
file.filename,
uid,
gid,
mode,
file.ctime,
file.atime,
file.mtime,
file.size,
hash.sha256,
magic.data
FROM
file
LEFT JOIN hash on file.path = hash.path
LEFT JOIN magic ON file.path = magic.path
WHERE
file.directory = "/var/run"
AND file.type = "regular"
AND file.filename NOT IN (
2023-08-15 22:13:06 +00:00
'.autoBackup',
'FirstBootAfterUpdate',
'FirstBootCleanupHandled',
2023-05-11 14:33:51 +00:00
'appfwd.pid',
'auditd.pid',
'automount.initialized',
'bootpd.pid',
2023-05-11 14:33:51 +00:00
'com.apple.DumpPanic.finishedPMUFaultHandling',
'com.apple.DumpPanic.finishedThisBoot',
2023-08-15 22:13:06 +00:00
'com.apple.WindowServer.didRunThisBoot',
2023-05-11 14:33:51 +00:00
'com.apple.logind.didRunThisBoot',
'com.apple.loginwindow.didRunThisBoot',
'com.apple.mdmclient.daemon.didRunThisBoot',
'com.apple.mobileassetd-MobileAssetBrain',
'com.apple.parentalcontrols.webfilterctl.mutex',
'com.apple.softwareupdate.availableupdatesupdated',
'diskarbitrationd.pid',
2023-08-15 22:13:06 +00:00
'fctc.s',
2023-05-11 14:33:51 +00:00
'hdiejectd.pid',
2023-08-15 22:13:06 +00:00
'.fctcompsupdate',
'installd.commit.pid',
'kdc.pid',
2023-05-11 14:33:51 +00:00
'prl_disp_service.pid',
'prl_naptd.pid',
'prl_watchdog-ebdba5702a20.pid',
'resolv.conf',
'rtadvd.pid',
'signpost_reporter_running',
2023-05-11 14:33:51 +00:00
'socketfilterfw.launchd',
'syslog.pid',
'systemkeychaincheck.done',
'utmpx',
'wifi'
)
GROUP BY
file.path;