nbqofficial / divert

Detour library (x64 and x86 compatible)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

divert - Detour library (x64 and x86 compatible)

About

Lightweight, simple to use detour library compatible with x64 and x86 architecture. Uses a different shellcode than your standard jmp instruction.

x64 shellcode

movabs rax, [address]
push rax
ret

x86 shellcode

mov eax, [address]
push eax
ret

divert

About

Detour library (x64 and x86 compatible)


Languages

Language:C++ 100.0%