-
Could you post the compiled project libraries for Win32 and Win64? Not everyone has a C++ compiler.
-
------------------
Some instructions should use the address size not the operand size to select the register:
- 67 48 0F01 FC = should use eax, not rax
- 0F01 FC = should use rax, not eax
- 67…
0xd4d updated
4 years ago
-
missing
intedimagepreoxy coparefram maybe more
-
Some instructions will only conditionally modify a CPU flag. I think most instructions do so unconditionally.
Zydis exposes conditional reads and writes for operands.
Should it do the same for …
-
Doing further digging, I've found a handful of instructions that have been supported by only a limited number of old Intel x86 processors and that Zydis doesn't recognize:
- MOV to/from the TRx "te…
-
Hey, just followed through the steps and have come across:
- unresolved external symbol ZydisDecoderInit
- unresolved external symbol ZydisDecoderDecodeBuffer
Not sure what to do here since I'm…
-
Is there a way to take a string instruction and convert that to bytes? The encoder does this but not from a supplied string.
For example, if supplied a string containing `inc DWORD PTR [eax]`, the…
-
![Image 1](https://user-images.githubusercontent.com/16466330/70862665-5e142280-1f3f-11ea-86c8-a02c37af32c8.png)
[DisasmBugs.zip](https://github.com/x64dbg/x64dbg/files/3964907/DisasmBugs.zip)
…
-
There are a number of undefined x86 instruction encodings that have been used to provide syscall-like functionality through the #UD (int 6) invalid opcode exception handler. The ones I've been able to…
-
https://github.com/aquynh/capstone: "Capstone is a disassembly framework with the target of becoming the ultimate disasm engine for binary analysis and reversing in the security community."