Add host correlation and assurance coverage
This commit is contained in:
parent
8194d13734
commit
b40ac4252c
36 changed files with 944 additions and 23 deletions
10
tests/fixtures/sids/100069-interpreter-persistence-write.json
vendored
Normal file
10
tests/fixtures/sids/100069-interpreter-persistence-write.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"event": "file_write",
|
||||
"pid": 4242,
|
||||
"ppid": 1,
|
||||
"uid": 1000,
|
||||
"comm": "python3",
|
||||
"parent_comm": "bash",
|
||||
"path": "/etc/systemd/system/evil.service",
|
||||
"argv": ["-c", "write unit"]
|
||||
}
|
||||
10
tests/fixtures/sids/100070-persistence-permission-change.json
vendored
Normal file
10
tests/fixtures/sids/100070-persistence-permission-change.json
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
{
|
||||
"event": "chmod",
|
||||
"pid": 4243,
|
||||
"ppid": 1,
|
||||
"uid": 0,
|
||||
"comm": "chmod",
|
||||
"parent_comm": "bash",
|
||||
"path": "/etc/cron.d/backup",
|
||||
"mode": "0o777"
|
||||
}
|
||||
9
tests/fixtures/sids/100071-interpreter-setuid-root.json
vendored
Normal file
9
tests/fixtures/sids/100071-interpreter-setuid-root.json
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"event": "setuid",
|
||||
"pid": 4244,
|
||||
"ppid": 1,
|
||||
"uid": 1000,
|
||||
"comm": "python3",
|
||||
"parent_comm": "bash",
|
||||
"target_uid": 0
|
||||
}
|
||||
9
tests/fixtures/sids/100072-interpreter-setgid-root.json
vendored
Normal file
9
tests/fixtures/sids/100072-interpreter-setgid-root.json
vendored
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
{
|
||||
"event": "setgid",
|
||||
"pid": 4245,
|
||||
"ppid": 1,
|
||||
"uid": 1000,
|
||||
"comm": "python3",
|
||||
"parent_comm": "bash",
|
||||
"target_gid": 0
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue