radare2 : A set of reverse engineering tools
ยท
141 words
ยท
1 minute read
What is radare2 ? ๐
radare2 is a set of reverse engineering tools.
More information: https://www.radare.org/r/docs.html .
Usage ๐
Open a file in write mode without parsing the file format headers:
radare2 -nw path/to/binary
Debug a program:
radare2 -d path/to/binary
Run a script before entering the interactive CLI:
radare2 -i path/to/script.r2 path/to/binary
Display help text for any command in the interactive CLI:
> radare2_command?
Run a shell command from the interactive CLI:
> !shell_command
Dump raw bytes of current block to a file:
> pr > path/to/file.bin
I hope you enjoyed reading this post as much as I enjoyed writing it. If you know a person who can benefit from this information, send them a link of this post. If you want to get notified about new posts, follow me on YouTube , Twitter (x) , LinkedIn , and GitHub .