Add host correlation and assurance coverage
This commit is contained in:
parent
8194d13734
commit
b40ac4252c
36 changed files with 944 additions and 23 deletions
|
|
@ -27,7 +27,7 @@ _DEFAULT_WATCH = (
|
|||
_ALL_DETECTORS = (
|
||||
"reverse_shell", "ld_preload", "deleted_exe",
|
||||
"input_snooper", "credential_access", "stealth_network",
|
||||
"memory_obfuscation",
|
||||
"memory_obfuscation", "first_seen",
|
||||
"new_listener", "new_suid", "persistence", "egress",
|
||||
)
|
||||
|
||||
|
|
@ -98,6 +98,10 @@ class Config:
|
|||
# memory-map shapes (for local JIT runtimes or known instrumentation).
|
||||
memory_obfuscation_allow_paths: tuple[str, ...] = ()
|
||||
|
||||
# First-seen tracking stores an operator-visible baseline under log_dir and
|
||||
# alerts on new public destinations or listener ports after the first pass.
|
||||
first_seen_enabled: bool = True
|
||||
|
||||
# file integrity monitoring (FIM)
|
||||
fim_enabled: bool = True
|
||||
fim_paths: tuple[str, ...] = () # populated from fim.DEFAULT_FIM_PATHS
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue