A Qt and C++ GUI for radare2 reverse engineering framework (originally named Iaito). Cutter is not aimed at existing radare2 users. It instead focuses on those whose are not yet radare2 users because of the learning curve, because they don’t like CLI applications or because of the difficulty/instability of radare2.
Requirements
- CMake >= 3.1
- Radare2 installed from submodule
- Qt 5.9.1
Building
Build radare2:
git submodule init radare2 && git submodule update radare2 cd radare2 && ./sys/install.sh cd ..
Build cutter:
The root for CMake is in src/. In-source builds are not allowed, so you must run CMake from a separate directory:
cd src mkdir build cd build cmake ..
If all went well, you should now have a working Makefile in your build directory:
make
Add Comment