feat(go): port memory-map detector tranche
This commit is contained in:
parent
c6f7219de8
commit
6a27e6e770
13 changed files with 377 additions and 41 deletions
|
|
@ -78,6 +78,9 @@ func (a *Agent) Sweep() ([]map[string]any, error) {
|
|||
if a.Config.Enabled("stealth_network") {
|
||||
alerts = append(alerts, detectors.StealthNetwork(state, a.Config)...)
|
||||
}
|
||||
if a.Config.Enabled("memory_obfuscation") {
|
||||
alerts = append(alerts, detectors.MemoryObfuscation(state, a.Config)...)
|
||||
}
|
||||
if a.Config.Enabled("egress") {
|
||||
alerts = append(alerts, detectors.Egress(state, a.Config)...)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue