Skip to content

Commit

Permalink
replace old dead link with new correct one (#361)
Browse files Browse the repository at this point in the history
  • Loading branch information
leongross authored Mar 4, 2023
1 parent 302a037 commit 644ab49
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/disassembling/adding_metadata.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
The typical work involved in reversing binary files makes powerful annotation capabilities essential.
Radare offers multiple ways to store and retrieve such metadata.

By following common basic UNIX principles, it is easy to write a small utility in a scripting language which uses `objdump`, `otool` or any other existing utility to obtain information from a binary and to import it into radare. For example, take a look at `idc2r.py` shipped with [radare2ida](https://github.com/radareorg/radare2ida). To use it, invoke it as `idc2r.py file.idc > file.r2`. It reads an IDC file exported from an IDA Pro database and produces an r2 script containing the same comments, names of functions and other data. You can import the resulting 'file.r2' by using the dot `.` command of radare:
By following common basic UNIX principles, it is easy to write a small utility in a scripting language which uses `objdump`, `otool` or any other existing utility to obtain information from a binary and to import it into radare. For example, take a look at `idc2r.py` shipped with [radare2ida](https://github.com/radareorg/radare2-extras/tree/master/r2ida). To use it, invoke it as `idc2r.py file.idc > file.r2`. It reads an IDC file exported from an IDA Pro database and produces an r2 script containing the same comments, names of functions and other data. You can import the resulting 'file.r2' by using the dot `.` command of radare:
```
[0x00000000]> . file.r2
```
Expand Down

0 comments on commit 644ab49

Please sign in to comment.