Hello,
First, I gotta say, this utility looks amazing and I would really like to use it to quickly obtain all de-compiled code.
After installing ghidra bridge and running the required dependencies.
I attempted to run extract.py on the a.out file (generated by the test.c file). The following is the output error message
DEBUG:root:Gathering program information...
INFO:root:Program Name: a.out
INFO:root:Creation Date: Wed Feb 14 14:47:59 EST 2024
INFO:root:Language ID: x86:LE:64:default
INFO:root:Compiler Spec ID: gcc
INFO:root:Using 'a.out_extraction' as output directory...
INFO:root:Extracting decompiled functions...
DEBUG:root:Decompiling _init
Traceback (most recent call last):
File "<path to file>/extract.py", line 116, in <module>
main(output_dir=output_dir)
File "<path to file>/extract.py", line 93, in main
extract_decomps(output_dir)
File "<path to file>/extract.py", line 58, in extract_decomps
if decomp_res.isTimedOut():
AttributeError: 'NoneType' object has no attribute 'isTimedOut'
Does anyone have any ideas on how to fix the issue? Thank you very much for the help!
Hello,
First, I gotta say, this utility looks amazing and I would really like to use it to quickly obtain all de-compiled code.
After installing ghidra bridge and running the required dependencies.
I attempted to run extract.py on the a.out file (generated by the test.c file). The following is the output error message
Does anyone have any ideas on how to fix the issue? Thank you very much for the help!