Add eliminate package with functions for removing suspicious artifacts (files, directories, processes, services, scheduled tasks) and enhance detection logic to include whitelist checks and multi-indicator scoring
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package eliminate
|
||||
|
||||
import "os"
|
||||
|
||||
func EliminateDirectory(path string) error {
|
||||
return os.RemoveAll(path)
|
||||
}
|
||||
Reference in New Issue
Block a user