miasm icon indicating copy to clipboard operation
miasm copied to clipboard

Reverse engineering framework in Python

Results 134 miasm issues
Sort by recently updated
recently updated
newest added

NotImplementedError: Mnemonic XGETBV not implemented. NotImplementedError: Mnemonic FNSAVE not implemented. problem like this . how it happend?

`llvmlite` 0.31 is compatible with LLVM versions 7.0 to 8.0. - Debian Stable (bullseye) is currently on LLVM 11.0 - Ubuntu 22.04 LTS is currently on LLVM 14.0 - ArchLinux...

#1422 introduced a thin wrapper around `test_all.py` used to provide compatibility with `unittest` and related test frameworks. This approach required the `parametrized` package, which was added to the optional dependencies....

From what I can tell it's looking for something in the directory "build" but that's not a standard directory. I'm confused on how to proceed. I tried this both on...

Another common one but seems to be missing.

enhancement

I made a post [here](https://reverseengineering.stackexchange.com/questions/30381/implementing-syscalls-under-miasm), but maybe I should have tried here before. TL;DR: I need to implement the ptrace syscall (not implemented by Miasm) for my DSE, so I...

![image](https://user-images.githubusercontent.com/66284098/169191780-e647a117-908d-44c7-9744-5fa7ba57d5eb.png)

Heya! The elf loader returns wrong values for the provided binary. If you double check with IDA or other tools, it should return `0x398994d6` instead of `0x0`. ```python import sys...

Hello, Trying to emulate something that may have been an executable code (shellcode) resulted in an unhandled error : `undefined symbol: load_segment_limit_ok` `"\x64\xA1\x30\x00\x00\x00\x8B\x50\x0C\x8B\x42\x1C\x8B\x00\x8B\x40\x08\x01\x00\x09\x00\x6A\x0A\x99\x59\xF7\xF9\x80\xC2\x30\x0F\x03\x47\x65\x74\x50"` ``` 0: 64 a1 30 00 00...

The generic dominator calculation algorithm sets the initial `todo` set to be just all the nodes. This leads to redundant calculations which can be saved. **Explanation:** The algorithm's main loop...