EDB(1) | EDB(1) |
edb - graphical debugger and disassembler for executables
edb [OPTION]... [TARGET]
edb (Evan's Debugger) is a modular and modern disassembler and debugger for binary ELF files based on ptrace API and the capstone disassembly library.
edb --symbols /lib/libc.so.6 > libc.so.6.map
for i in $(ls /lib); do edb --symbols $i > $(basename $i).map; done
Will generate symbols for libc and save it in a text file. It's useful if you store this map files in the symbols directory configured in edb's preferences.
edb --run /bin/ls
Useful to generate maps for all libs you have in /lib.
edb --attach 1720
Will open the ls program binary in debugger.
Attach the process of PID 1720 to debugger.
Written by Evan Teran <evan.teran@gmail.com>
Report any bugs or requests for features via BTS on https://github.com/eteran/edb-debugger/issues
Copyright © 2008 CodeF00. Licensed GPLv2: GNU GPL version 2 <http://www.gnu.org/licenses/old-licenses/gpl-2.0.txt>. This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law.
December 2011 |