cle
cle copied to clipboard
CLE Loads Everything (at least, many binary formats!)
Heyo! So I was curious to see how angr/cle parses exceptions so I have this library: ```cpp #include class DinosaurException { public: int i; DinosaurException() {} ~DinosaurException() {} }; void...
Attempting to run `find_symbol(string)` on a Mach-O binary results in the error: ``` File "cle/loader.py", line 473, in find_symbol if sym.is_import: AttributeError: 'list' object has no attribute 'is_import' ``` This...
cle should have a backend similar to idalink but using radare2, as all of the information provided from ida is available through radare2.
There are lots of missing module, class, and function docstrings in the angr module. Here is the list. We desperately need help with this from the community, if someone wants...
Older PPC ABIs need their relocations, specifically R_PPC_JMP_SLOT implemented differently. The change to the current ABI, which we support well, is described [here](https://sourceware.org/ml/binutils/2005-05/msg00391.html). You can detect the presence of the...
Do you work a lot with blobs? I sure do, and I can't stand what a pain it is to use the Blob backend. There's been a lot of work...
In some Linux systems, users can employ _prelink_ (https://linux.die.net/man/8/prelink) to try to speed up startup time. I haven't dug too much into prelink's code (https://github.com/jwilk-mirrors/prelink) but surely it changes relocation...
Loading binaries is taking longer and longer since recent updates in CLE, pyelftools, and pefile. Profiling them is the first step to make things faster.
Hey, I want a backend class which will allow me to let the cle engine (and angr) get the needed bytes lazily. This way I will be able to have...
CLE fails to load Android apps if classes referenced in the manifest are not part of the classes.dex
Hi team. I'm trying to load an Android app in angr and it gave me the following error message: (CLE & angr version: 9.2.18. Most recent on Pip) ``` ---------------------------------------------------------------------------...