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,8 @@
|
||||
package eliminate
|
||||
|
||||
import "os"
|
||||
|
||||
// EliminateBinary removes a binary from the system
|
||||
func EliminateBinary(path string) error {
|
||||
return os.Remove(path)
|
||||
}
|
||||
Reference in New Issue
Block a user