-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
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
Can not follow conditional branching targets (JNE/JNZ) #3090
Labels
rizin
Needs changes into rizin codebase.
Comments
This was referenced Feb 2, 2023
This was referenced Feb 2, 2023
whol-hoopa
pushed a commit
to whol-hoopa/cutter
that referenced
this issue
Feb 23, 2023
3 tasks
whol-hoopa
pushed a commit
to whol-hoopa/cutter
that referenced
this issue
Mar 5, 2023
Fix graph jumps
whol-hoopa
pushed a commit
to whol-hoopa/cutter
that referenced
this issue
Mar 5, 2023
Fix graph jumps
3 tasks
whol-hoopa
pushed a commit
to whol-hoopa/cutter
that referenced
this issue
Mar 9, 2023
Fix graph jumps
whol-hoopa
pushed a commit
to whol-hoopa/cutter
that referenced
this issue
Mar 9, 2023
Fix graph jumps
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Environment information
I am trying to fix Windows Clipboard API deficiency with non-Latin clipboard layouts. I can explain more, but it would be verbose offtopic here probably,
To do so, i must design more or less generic hooks that would work in both Win32 / WoW64 / Win64 and in a vast range of Windows versions too. Win32 hooks i already did, now time for Win64.
So, as of now, i am sitting at Windows 7 box and am looking into USER32.DLL taken form 64-bit WinXP and looking into
OpenClipboard
function.The problem there, it seems that VC++ there did a heavy inlining, and so, the code flow can not be automatically separated into well-defined functions. Which in turns creates a non-navigable code in Disassembly panel.
See the
0x77c5d45a 0f 85 7a ec ff ff jne 0x77c5c0da
opcodeThe left slider clearly shows the outgoing arrow, and the Graph panel confirms it. Still...
The text was updated successfully, but these errors were encountered: