mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-02-18 02:17:01 +00:00
Merge pull request #195 from tstromberg/rootkit-detection
incident response: Add dump of /dev files
This commit is contained in:
commit
6eff54d7f3
8
incident_response/files-dev.sql
Normal file
8
incident_response/files-dev.sql
Normal 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/%%";
|
Loading…
Reference in New Issue
Block a user