radare2/libr
Nibble 8546c2d61b * Initial implementation of cmd 'Cv' for renaming vars
* Add r_parse_varsub() to r_parse
* Add config variable 'asm.varsub'
* Minor fixup in core/anal.c
2011-02-23 15:17:06 +01:00
..
anal * Zoom out in cursor mode 2011-02-23 03:01:26 +01:00
asm * Add msil support to r_asm 2011-02-23 13:00:24 +01:00
bin * Add 'p=' command 2011-02-23 13:25:41 +01:00
bp * Some more work on r_core_sysenv* 2011-02-04 11:30:08 +01:00
cmd * Fix segfault in r_cons_memcat 2011-02-23 02:10:28 +01:00
config * Implement rap:// remote radare protocol support 2011-02-05 00:20:28 +01:00
cons * Fix segfault in r_cons_memcat 2011-02-23 02:10:28 +01:00
core * Initial implementation of cmd 'Cv' for renaming vars 2011-02-23 15:17:06 +01:00
crypto
db * Add support for multiline macro definitions 2011-01-27 09:31:52 +01:00
debug * Huge refactoring of r_anal code and API 2011-02-11 11:22:43 +01:00
diff * Initial implementation of the r_anal_aop_execute api 2011-02-03 00:20:39 +01:00
flags * Fixes in vapis 2011-02-18 01:16:56 +01:00
fs * Zoom out in cursor mode 2011-02-23 03:01:26 +01:00
hash * Handle entropy hash type from rahash2 2011-02-16 14:18:31 +01:00
include * Initial implementation of cmd 'Cv' for renaming vars 2011-02-23 15:17:06 +01:00
io * Make r2-swig happy without valaswig 2011-02-16 09:29:09 +01:00
lang * oops in r_lang Makefile for OSX 2011-02-22 10:58:00 +01:00
lib * Fix some overlapping strcpy's (thx @earada!) 2010-11-20 18:35:40 +01:00
line * Autodetect required column width to fit in screen 2011-02-10 00:55:30 +01:00
meta
parse * Initial implementation of cmd 'Cv' for renaming vars 2011-02-23 15:17:06 +01:00
print * Add 'p=' command 2011-02-23 13:25:41 +01:00
reg * Build w32 python bindings in build.sh 2010-10-19 22:17:58 +02:00
search * Implement /A - search for AES expanded keys 2011-02-23 00:54:40 +01:00
sign * Some optimizations in r_anal 2011-02-04 14:03:59 +01:00
socket * Some better help messages 2011-02-03 09:31:50 +01:00
syscall * Initial implementation of the r_anal_aop_execute api 2011-02-03 00:20:39 +01:00
sysproxy
th * Some cosmetic fixes in 'pd' 2010-12-13 00:49:33 +01:00
util * Fix segfault in r_cons_memcat 2011-02-23 02:10:28 +01:00
vm * Fix make -j for paralel builds 2010-10-29 03:10:10 +02:00
config.h.head
config.h.tail
config.mk.head
config.mk.tail * Fix static and nonpic build with no gmp 2010-11-10 10:45:47 +01:00
depgraph.pl
libr.pc.acr
Makefile * Initial implementation of the r_anal_aop_execute api 2011-02-03 00:20:39 +01:00
README
rules.mk * Fix build of r_fs 2011-01-26 22:10:35 +01:00
stripsyms.sh
symgraph.pl
waitfordeps.sh * Chop last '/' in r_fs_mount 2011-01-23 21:54:18 +01:00

                                 ___ ___
  =========================     |  _\_  \
  libr - codename 'radare2'     |   /  _/
  =========================     |_|__\__\


LibR is the refactoring of the old radare1 core in a set of libraries
defining the APIs of radare2.

The library 'libr' is composed by different modules, each one implementing
working modules of radare, so then, we get a complete set of libraries for
analyzing code, disassembling bytes, dumping bytes, plugin handling, etc..

The 'R' is for refactoring, reversing, radare, ...

Each module has its own test directory (t/) which contains simple applications
using the upper directory code and linking against the direct dependencies.

Each mode can own a plugin directory (p/) that contains extensions for the
parent library module (libr/asm/p/asm_x86).

There's also the possibility to define a list of static plugins to be built
inside the parent module. This way you can avoid some flexibility to ease
portability and build single binaries with some embedded features.

The library can be used from 'pkg-config', this way you can easy build an
application or plugin that links against libr or just few elements of it.

This enables a fine-grained test level for checking all functionalities in
one shot and give us the opportunity to write radare2 as test programs.

  --pancake