We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description: For a 0x67 prefixed x64 instruction, hde will recognize it's displacement as 16bit. (maybe just copied from hde32?)
minhook/src/hde/hde64.c
Line 246 in 7819161
Possible fix:
switch (m_mod) { case 0: if (m_rm == 5) disp_size = 4; break; case 1: disp_size = 1; break; case 2: disp_size = 4; break; }
Test:
.CODE FuncInc PROC lea eax, [ecx+10000h] ret FuncInc ENDP END
Try hooking this function under x64 and call ppOrigin.
ppOrigin
Origin function:
Backup function:
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Description:
For a 0x67 prefixed x64 instruction, hde will recognize it's displacement as 16bit. (maybe just copied from hde32?)
minhook/src/hde/hde64.c
Line 246 in 7819161
Possible fix:
Test:
Try hooking this function under x64 and call
ppOrigin
.Origin function:
Backup function:
The text was updated successfully, but these errors were encountered: