Files
Necropolis-C2/implant/core/evasion_stub.go
T
2026-07-07 04:39:43 +01:00

16 lines
236 B
Go

//go:build !evasion
package core
import "time"
var (
procPatchETW uintptr = 0
procPatchAMSI uintptr = 0
procRemoveEDRCallbacks uintptr = 0
)
func init() {}
func EvasionSleep(d time.Duration) { time.Sleep(d) }