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
| 34 | // system call directly using the syscall instruction, skipping the NTDLL |
| 35 | // stub that normally performs the transition to kernel mode. |
| 36 | type directSyscall struct{} |
| 37 | |
| 38 | func NewDirectSyscall() Evasion { |
| 39 | return &directSyscall{} |
nothing calls this directly
no outgoing calls
no test coverage detected