mirror of
https://github.com/radareorg/radare2.git
synced 2024-12-02 18:27:18 +00:00
4db5cded34
* Display TODO message in r2 -L * Implement rax2 -s - and rax2 - * Honor dbg->tid in many places * Implement basic stuff for dbg->reason - Only w32 and *nix atm - Not yet displayed or used - Added many new reason types in enum * Fix w32 register map * Handle attach:// in io_w32dbg plugin * Implement w32 process and thread list - You can now select the thread > dp # list pids > dp=1424 # attach to pid > dpt # list threads > dpt=580 # select thread * Added dummy code to list windows |
||
---|---|---|
.. | ||
anal | ||
asm | ||
bin | ||
bp | ||
cmd | ||
config | ||
cons | ||
core | ||
crypto | ||
db | ||
debug | ||
diff | ||
flags | ||
hash | ||
include | ||
io | ||
lang | ||
lib | ||
line | ||
meta | ||
parse | ||
pkgconfig | ||
reg | ||
search | ||
sign | ||
socket | ||
syscall | ||
sysproxy | ||
th | ||
util | ||
vm | ||
config.h.head | ||
config.h.tail | ||
config.mk.head | ||
config.mk.tail | ||
depgraph.pl | ||
libr.pc.acr | ||
Makefile | ||
README | ||
rules.mk | ||
stripsyms.sh | ||
symgraph.pl | ||
waitfordeps.sh |
___ ___ ========================= | _\_ \ 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