Skip to content

radare Notes

Chris edited this page Jan 23, 2018 · 16 revisions

Useful Links

A demo of using radare with python to solve a password prompt

rax2 is a program that will convert decimal numbers to hex

rax2 42

Output

0x2a

To convert a string of characters

rax2 -S HelloWorld

Output

48656c6c6f576f726c64

H = 48, e = 65, etc etc, each char is appended to the number.

To convert binary using rax2

rax2 -b 01111010

Output

z

Clone this wiki locally