rdbo / libmem

Advanced Game Hacking Library for C, Modern C++, Rust and Python (Windows/Linux/FreeBSD) (Process/Memory Hacking) (Hooking/Detouring) (Cross Platform) (x86/x64/ARM/ARM64) (DLL/SO Injection) (Internal/External) (Assembler/Disassembler)
GNU Affero General Public License v3.0
797 stars 96 forks source link

Place 32 bit jump in x64 if possible #229

Closed rdbo closed 3 months ago

rdbo commented 3 months ago

libmem should consider placing a 32 bit jump for x64 if the function is not far enough that is needs a longer jump payload. Otherwise, keep using the regular jmp [rip]; <addr>

rdbo commented 3 months ago

Done