radare2/TODO

75 lines
1.9 KiB
Plaintext
Raw Normal View History

____ ___ ____ ___ ____ ___ ______ ____
| _ \/ \' \/ \ _ \/ _ \ \__ | / \
| < V . T . V < _/ .--'_/ | () |
|_|\__|_|__|___/|_|_|_|\__\___/ |_____(_)____/
----------------------------------------[ todo
<{include libr/TODO}>
* /main segfaults
- this is because regexp dosnt works -- NEEDS FIX
- overflows the console.. -- NEEDS FIX
See libr/*/TODO FMI
manpages for r2, r2rc, r2rc-tool, rafind2 and rasign2 are missing
BUGS
====
* anal fastargs
* console grep
* x@esp&&x@eip # BUG
* diff code analysis
- diff two programs
1st level:
- check all functions EQUAL, DIFFERENT, REMOVED, ADDED
- check all symbols
- check all imports
- check all strings
2nd level:
- basic block level diffing (output in graph mode)
* stack analysis
* code analysis with r_parse
* Finish to write manpages
* Move 'r_syscall_t' stuff into r_debug
- Sync r_core
* Implement process launcher wrapper
- opens xterm and redirects stdin/stdout/stderr
- Allows to change chroot
- Allows to setup chroot
- Define uid/gid
* Added lib_handle stub in r_lib, so we can add plugin support to
any library by using just a macro
* is RCore->block and blocksize a RBuf ? refactor!11
2009-06-15 02:44:05 +00:00
* r_cmd must provide a nesting char table indexing for commands
- this is pretty similar to r_db
2009-06-15 02:44:05 +00:00
- every module can register their own commands
- commands can be listed like in a tree
* 'Vc' cursor mode makes color toggle
* Add test for config.c with _set_cb
* Strip non input symbols in plugins (speed up loading)
* Specify binmask in hexpairs
- wx 1234:ff0f
- /x 1234:ff0f
* radare2 -e dbg.engine=vm -d ls
- load the program using r_bin in virtual space
- initialize vm and set regs
- debug backend should use the vm
* Script plugins
- We should enable r_lib to implement plugins in any
scripting language, so we can for example prepare
a .c stub interface for python/perl/ruby/..