Forrest logo
back to context overview

radare2

List of commands for radare2:

  • radare2:tldr:08223 radare2: Open a file in write mode without parsing the file format headers.
    $ radare2 -nw ${path-to-binary}
    try on your machine
    explain this command
  • radare2:tldr:27e30 radare2: Run a shell command from the interactive CLI.
    $ > !${shell_command}
    try on your machine
    explain this command
  • radare2:tldr:4f18b radare2: Run a script before entering the interactive CLI.
    $ radare2 -i ${path-to-script-r2} ${path-to-binary}
    try on your machine
    explain this command
  • radare2:tldr:7cfb9 radare2: Show help text for any command in the interactive CLI.
    $ > ${radare2_command}?
    try on your machine
    explain this command
  • radare2:tldr:94872 radare2: Debug a program.
    $ radare2 -d ${path-to-binary}
    try on your machine
    explain this command
  • radare2:tldr:c1937 radare2: Dump raw bytes of current block to a file.
    $ > pr > ${filename-bin}
    try on your machine
    explain this command
back to context overview