mirror of
https://github.com/paranoidninja/Process-Instrumentation-Syscall-Hook
synced 2026-06-08 16:38:33 +00:00
13 lines
175 B
NASM
13 lines
175 B
NASM
section .text
|
|
|
|
extern HuntSyscall
|
|
global hookedCallback
|
|
|
|
hookedCallback:
|
|
push rcx
|
|
push rdx
|
|
mov rdx, [r10-0x10]
|
|
call HuntSyscall
|
|
pop rdx
|
|
pop rcx
|
|
ret |