pydis
pydis copied to clipboard
Python bindings for the Zydis disassembler library
pydis threw an exception error when disassembling raw data. Example: `0x66, 0x8C, 0x31, 0xC0` Expected Output: ```assembly db 0x66 db 0x8c xor eax, eax ``` Pydis Output: ``` Traceback (most...
Thank you for this library. Decoding instructions at some offset in buffer is good feature. Current decoder implementation accepts code `buffer` and [converts it using `create_string_buffer`](https://github.com/novogen/pydis/blob/master/pydis/decoder.py#L56). Usually encoding happens at...