MCPcopy Create free account
hub / github.com/rabbitstack/fibratus / directSyscall

Struct directSyscall

internal/evasion/direct_syscall.go:36–36  ·  view source on GitHub ↗

directSyscall direct syscall evasion refers to a technique where adversaries bypass traditional user-mode API monitoring and security hooks by invoking system calls directly, but does so in a way that evades detection or analysis. A direct syscall bypasses Windows API functions and calls the underl

Source from the content-addressed store, hash-verified

34// system call directly using the syscall instruction, skipping the NTDLL
35// stub that normally performs the transition to kernel mode.
36type directSyscall struct{}
37
38func NewDirectSyscall() Evasion {
39 return &directSyscall{}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected