Merge pull request #195 from tstromberg/rootkit-detection

incident response: Add dump of /dev files
This commit is contained in:
Thomas Strömberg 2023-02-23 17:11:10 -05:00 committed by GitHub
commit 6eff54d7f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1,8 @@
-- Returns a list of file information from /dev (non-hidden only)
--
-- tags: postmortem
-- platform: posix
SELECT *
FROM file
JOIN hash ON file.path = hash.path
WHERE file.path LIKE "/dev/%%";