Implement initial detection and data structures for suspicious artifacts

This commit is contained in:
Evan Hosinski
2025-10-10 15:35:17 -04:00
commit 10b1bb7ed6
26 changed files with 2382 additions and 0 deletions
@@ -0,0 +1,12 @@
package binaries
import "testing"
func TestDetect(t *testing.T) {
binaries := Detect()
for _, binary := range binaries {
t.Logf("-----")
t.Logf("Binary: %s", binary)
t.Logf("-----")
}
}