mirror of
https://github.com/fleetdm/fleet
synced 2026-05-24 09:28:54 +00:00
Add "Find deleted files from disk" to Standard query library (#1481)
This commit is contained in:
parent
cb10659277
commit
1decb2a56f
1 changed files with 10 additions and 0 deletions
|
|
@ -436,3 +436,13 @@ spec:
|
|||
query: SELECT uid, username, type, groupname FROM users u JOIN groups g ON g.gid = u.gid;
|
||||
purpose: Informational
|
||||
contributors: noahtalerman
|
||||
---
|
||||
apiVersion: v1
|
||||
kind: query
|
||||
spec:
|
||||
name: Find deleted files from disk
|
||||
platforms: Linux, macOS, Windows
|
||||
description: Lists all processes of which the binary which launched them no longer exists on disk. Attackers often delete files from disk after launching process to mask presence.
|
||||
query: SELECT name, path, pid FROM processes WHERE on_disk = 0;
|
||||
purpose: Incident response
|
||||
contributors: alphabrevity
|
||||
|
|
|
|||
Loading…
Reference in a new issue