mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-02-20 20:16:49 +00:00
38 lines
1.2 KiB
SQL
38 lines
1.2 KiB
SQL
-- Returns a list of recently written files
|
|
--
|
|
-- tags: postmortem
|
|
-- platform: posix
|
|
-- interval: 3600
|
|
SELECT *
|
|
FROM file
|
|
WHERE (
|
|
path LIKE "/var/tmp/%%"
|
|
OR path LIKE "/Applications/%%"
|
|
OR path LIKE "/home/%/%%"
|
|
OR path LIKE "/home/%/.%/%%"
|
|
OR path LIKE "/home/%/.config/%%"
|
|
OR path LIKE "/Library/%%"
|
|
OR path LIKE "/Library/.%"
|
|
OR path LIKE "/Library/Application Support/%"
|
|
OR path LIKE "/Library/Application Support/.%"
|
|
OR path LIKE "/tmp/%%"
|
|
OR path LIKE "/tmp/.%/%%"
|
|
OR path LIKE "/Users/%/%%"
|
|
OR path LIKE "/Users/%/.%/%%"
|
|
OR path LIKE "/Users/Library/%%"
|
|
OR path LIKE "/Users/Library/.%"
|
|
OR path LIKE "/Users/Library/Application Support/%%"
|
|
OR path LIKE "/Users/Library/Application Support/.%"
|
|
OR path LIKE "/var/%%"
|
|
)
|
|
AND (
|
|
mtime > (strftime('%s', 'now') -3600)
|
|
OR (
|
|
atime > (strftime('%s', 'now') -3600)
|
|
AND file.type = "regular"
|
|
)
|
|
OR ctime > (strftime('%s', 'now') -3600)
|
|
OR btime > (strftime('%s', 'now') -3600)
|
|
)
|
|
AND NOT path LIKE "%/../%"
|
|
GROUP BY inode; |