cle icon indicating copy to clipboard operation
cle copied to clipboard

CLE Loads Everything (at least, many binary formats!)

Results 28 cle issues
Sort by recently updated
recently updated
newest added

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...

bug

cle should have a backend similar to idalink but using radare2, as all of the information provided from ida is available through radare2.

feature
pinned

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...

help wanted
good first issue
pinned

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...

help wanted
pinned

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...

enhancement
help wanted
good first issue
pinned

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...

help wanted
feature

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.

enhancement

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...

help wanted

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) ``` ---------------------------------------------------------------------------...