radare2/README.md

222 lines
6.6 KiB
Markdown
Raw Normal View History

```
2012-10-23 07:03:26 +08:00
____ ___ ___ ___ ____ ___ ____
2018-03-07 09:10:27 +08:00
| _ \/ \| \/ \ _ \/ _ \ (__ \
| ( - | | ) - | ( _/ / __/
2012-10-23 07:03:26 +08:00
|__\__|_|__|___/__|__|_\__|___| |____|
https://www.radare.org
2012-10-23 07:03:26 +08:00
--pancake
```
2012-10-23 07:03:26 +08:00
2018-05-19 19:25:36 +08:00
2015-07-28 06:38:43 +08:00
| | |
2015-07-26 18:38:59 +08:00
|----------|---------------------------------------------------------------------|
2015-07-28 06:38:43 +08:00
| **Jenkins** | [![Build Status](http://ci.rada.re/buildStatus/icon?job=radare2)](http://ci.rada.re/job/radare2)|
| **TravisCI** | [![Build Status](https://travis-ci.org/radare/radare2.svg?branch=master)](https://travis-ci.org/radare/radare2)|
2016-02-29 17:41:27 +08:00
| **AppVeyor** | [![Build Status](https://ci.appveyor.com/api/projects/status/v9bxvsb1p6c3cmf9/branch/master?svg=true)](https://ci.appveyor.com/project/radare/radare2-shvdd)|
2015-07-28 06:38:43 +08:00
| **Coverity** | [![Build Status](https://scan.coverity.com/projects/416/badge.svg)](https://scan.coverity.com/projects/416) |
2018-05-19 19:25:36 +08:00
<a href="https://repology.org/metapackage/radare2">
<img src="https://repology.org/badge/vertical-allrepos/radare2.svg" alt="Packaging status" align="right" width="150px" height="700px">
</a>
2012-10-23 07:03:26 +08:00
# Introduction
r2 is a rewrite from scratch of radare in order to provide
2015-07-28 06:38:43 +08:00
a set of libraries and tools to work with binary files.
2012-10-23 07:03:26 +08:00
Radare project started as a forensics tool, a scriptable
2012-10-23 07:03:26 +08:00
commandline hexadecimal editor able to open disk files,
but later support for analyzing binaries, disassembling
2013-03-21 20:52:29 +08:00
code, debugging programs, attaching to remote gdb servers, ..
2012-10-23 07:03:26 +08:00
2018-06-24 01:38:05 +08:00
radare2 is portable.
## Architectures
i386, x86-64, ARM, MIPS, PowerPC, SPARC, RISC-V, SH, m68k, AVR, XAP,
System Z, XCore, CR16, HPPA, ARC, Blackfin, Z80, H8/300, V810, V850,
CRIS, XAP, PIC, LM32, 8051, 6502, i4004, i8080, Propeller, Tricore, Chip8
LH5801, T8200, GameBoy, SNES, MSP430, Xtensa, NIOS II,
Dalvik, WebAssembly, MSIL, EBC, TMS320 (c54x, c55x, c55+, c66),
Hexagon, Brainfuck, Malbolge, DCPU16
## File Formats
ELF, Mach-O, Fatmach-O, PE, PE+, MZ, COFF, OMF, TE, XBE, BIOS/UEFI,
Dyldcache, DEX, ART, CGC, Java class, Android boot image, Plan9 executable,
ZIMG, MBN/SBL bootloader, ELF coredump, MDMP (Windows minidump),
WASM (WebAssembly binary), Commodore VICE emulator,
Game Boy (Advance), Nintendo DS ROMs and Nintendo 3DS FIRMs, various filesystems.
## Operating Systems
Windows (since XP), GNU/Linux, OS X, [Net|Free|Open]BSD,
Android, iOS, OSX, QNX, Solaris, Haiku, FirefoxOS
## Bindings
Vala/Genie, Python (2, 3), NodeJS, Lua, Go, Perl,
Guile, PHP, Newlisp, Ruby, Java, OCaml, ...
2012-10-23 07:03:26 +08:00
# Dependencies
radare2 can be built without any special dependency, just
use make and get a working toolchain (gcc, clang, tcc, ..)
2012-10-23 07:03:26 +08:00
Optionally you can use libewf for loading EnCase disk images.
To build the bindings you need latest valabind, g++ and swig2.
2012-10-23 07:03:26 +08:00
# Install
The easiest way to install radare2 from git is by running
2012-10-23 07:03:26 +08:00
the following command:
$ sys/install.sh
2012-10-23 07:03:26 +08:00
2015-08-31 05:26:35 +08:00
If you want to install radare2 in the home directory without
using root privileges and sudo, simply run:
$ sys/user.sh
2015-08-31 05:26:35 +08:00
# Building with meson + ninja
2018-05-30 19:17:27 +08:00
If you don't already have meson and ninja you can install them
with your distribution package manager or with r2pm:
2017-05-15 08:53:10 +08:00
$ r2pm -i meson
2018-05-30 19:17:27 +08:00
If you already have them installed, you can run this line to
compile radare2:
2018-02-24 21:41:22 +08:00
2018-05-30 19:19:28 +08:00
$ python ./sys/meson.py --prefix=/usr --shared --install
2018-02-24 21:41:22 +08:00
2018-05-30 19:17:27 +08:00
This method is mostly useful on Windows because the initial building
with Makefile is not suitable. If you are lost in any way, just type:
2018-05-30 19:19:28 +08:00
$ python ./sys/meson.py --help
2017-09-29 04:06:58 +08:00
# Update
To update Radare2 system wide you don't need to uninstall or pull,
2017-09-29 04:06:58 +08:00
just re-run:
$ sys/install.sh
If you installed Radare2 in the home directory,
just re-run:
$ sys/user.sh
# Uninstall
In case of a polluted filesystem you can uninstall the current
version or remove all previous installations:
$ make uninstall
$ make purge
To remove all stuff including libraries, use
$ make system-purge
2016-06-09 16:45:47 +08:00
# Package manager
Radare2 has its own package manager - r2pm. It's packages
2016-06-09 16:45:47 +08:00
repository is on [GitHub too](https://github.com/radare/radare2-pm).
To start to use it for the first time you need to initialize packages:
$ r2pm init
2016-06-09 16:45:47 +08:00
Refresh the packages database before installing any package:
2016-06-09 16:45:47 +08:00
$ r2pm update
2016-06-09 16:45:47 +08:00
To install a package use the following command:
2016-06-09 16:45:47 +08:00
$ r2pm install [package name]
2016-06-09 16:45:47 +08:00
2012-10-23 07:03:26 +08:00
# Bindings
All language bindings are under the r2-bindings directory.
2015-07-27 00:05:39 +08:00
You will need to install swig and valabind in order to
build the bindings for Python, Lua, etc..
2012-10-23 07:03:26 +08:00
APIs are defined in vapi files which are then translated
to swig interfaces, nodejs-ffi or other and then compiled.
The easiest way to install the python bindings is to run:
2012-10-23 07:03:26 +08:00
$ r2pm install lang-python2 #lang-python3 for python3 bindings
$ r2pm install r2api-python
2017-11-15 23:44:24 +08:00
$ r2pm install r2pipe-py
2012-10-23 07:03:26 +08:00
2015-07-27 00:05:39 +08:00
In addition there are `r2pipe` bindings, which are an API
interface to interact with the prompt, passing commands
and receivent the output as a string, many commands support
JSON output, so it's integrated easily with many languages
in order to deserialize it into native objects.
2012-10-23 07:03:26 +08:00
$ npm install r2pipe # NodeJS
$ gem install r2pipe # Ruby
$ pip install r2pipe # Python
$ opam install radare2 # OCaml
2012-10-23 07:03:26 +08:00
2015-07-28 06:38:43 +08:00
And also for Go, Rust, Swift, D, .NET, Java, NewLisp, Perl, Haskell,
Vala, OCaml, and many more to come!
2012-10-23 07:03:26 +08:00
2015-07-27 00:05:39 +08:00
# Regression Testsuite
2012-10-23 07:03:26 +08:00
2015-07-27 00:05:39 +08:00
Running `make tests` it will fetch the radare2-regressions
repository and run all the tests in order to verify that no
changes break a functionality.
2012-10-23 07:03:26 +08:00
2015-07-27 00:05:39 +08:00
We run those tests on every commit, and they are also
executed with ASAN and valgrind on different platforms
to catch other unwanted 'features'.
2012-10-23 07:03:26 +08:00
# Documentation
There is no formal documentation of r2 yet. Not all commands
are compatible with radare1, so the best way to learn how to
do stuff in r2 is by reading the examples from the web and
appending '?' to every command you are interested in.
2012-10-23 07:03:26 +08:00
Commands are small mnemonics of few characters and there is
some extra syntax sugar that makes the shell much more pleasant
for scripting and interacting with the apis.
2015-09-15 23:16:43 +08:00
You could also checkout the [radare2 book](https://radare.gitbooks.io/radare2book/content/).
2015-07-26 18:38:59 +08:00
2015-08-05 06:03:54 +08:00
# Coding Style
2015-10-03 21:09:10 +08:00
Look at [CONTRIBUTING.md](https://github.com/radare/radare2/blob/master/CONTRIBUTING.md).
2015-08-05 06:03:54 +08:00
2012-10-23 07:03:26 +08:00
# Webserver
radare2 comes with an embedded webserver that serves a pure
html/js interface that sends ajax queries to the core and
aims to implement an usable UI for phones, tablets and desktops.
$ r2 -c=H /bin/ls
To use the webserver on Windows, you require a cmd instance
2015-04-27 16:39:36 +08:00
with administrator rights. To start the webserver use command
in the project root.
> radare2.exe -c=H rax2.exe
2012-10-23 07:03:26 +08:00
# Pointers
Website: https://www.radare.org/
2012-10-23 07:03:26 +08:00
IRC: irc.freenode.net #radare
Telegram: https://t.me/radare
Matrix: @radare2:matrix.org
2012-10-23 07:03:26 +08:00
Twitter: @radareorg