mirror of
https://github.com/chainguard-dev/osquery-defense-kit
synced 2025-02-16 09:27:06 +00:00
incident response: remove ever-changing columns from process table
This commit is contained in:
parent
8ce348dfc4
commit
db792dc3c2
@ -1,8 +1,25 @@
|
||||
-- Currently running programs
|
||||
-- Currently running programs, only the columns that are not constantly changing
|
||||
--
|
||||
-- tags: postmortem
|
||||
-- platform: posix
|
||||
SELECT
|
||||
*
|
||||
FROM
|
||||
processes
|
||||
SELECT pid,
|
||||
name,
|
||||
path,
|
||||
cmdline,
|
||||
state,
|
||||
cwd,
|
||||
root,
|
||||
uid,
|
||||
gid,
|
||||
euid,
|
||||
egid,
|
||||
seuid,
|
||||
sgid,
|
||||
on_disk,
|
||||
start_time,
|
||||
parent,
|
||||
pgroup,
|
||||
threads,
|
||||
nice,
|
||||
cgroup_path
|
||||
FROM processes
|
Loading…
Reference in New Issue
Block a user