This is an adaption of the r2ghidra-dec project. It leverages the ghidra decompiler's internal datastructures to emit P-code at a higher level than low/high p-code.
Requires r2.
Same instructions from r2ghidra-dec.
First, make sure the submodule contained within this repository is fetched and up to date:
git submodule init
git submodule update
Then, the radare2 plugin can be built and installed as follows:
mkdir build && cd build
cmake -DCMAKE_INSTALL_PREFIX=~/.local ..
make
make install
Simply run the ghidrall.py script with your target binary as the input.
cd ghidrall/tests mkdir build; cd build cmake .. cmake --build . cd ../.. python run-all-tests.py
This will compile all the test programs that are pre-instrumented with analysis, decompile, lift and verify them all for verification.
Coming soon.