EDB (Evan's Debugger) is a QT4 based binary mode debugger with the goal of having usability on par with OllyDbg.
EDB project uses a plugin architecture, so adding new features can be done with ease. The current release is for Linux, but future releases will target more platforms.
· Специальные требования EDB (Evan's Debugger) 0.8.15
· QT4
Installation:
$ qmake
$ make
On certain systems your qmake make be named slightly differently, I've noticed that the Fedora Core rpms name it qmake-qt4. This will build the debugger along with all plugins I have written.
In order to have EDB take advantage of certain features (such as the Heap analyzer plugin), it will need some symbol maps to work with. The easiest way to create these is to run the make_symbolmap.sh script, here's an example:
The name of the symbol file IS IMPORTANT, a quick and dirty way to get all symbols from existing libraries on your system would be like this:
$ for i in $(ls /usr/lib/*.so*); do ./make_symbolmap.sh $i > symbols/`basename $i`.map; done
$ for i in $(ls /lib/*.so*); do ./make_symbolmap.sh $i > symbols/`basename $i`.map; done
This will take a moment, but not that long and you will have symbols based on all binaries on your system. Note that the make_symbolmap script will work on regular binaries as well, not just libraries. So if you are debugging an application, you may want to generate its symbols as well. Eventually, I will build a "Regenerate Symbols" feature into EDB (a plugin perhaps?), but for now, the script will have to do.
Also, don't forget to set the symbols directory in the options dialog to the directory which you placed the map files!
· История версий и изменений EDB Evan s Debugger
Версия: EDB (Evan's Debugger) 0.8.15
· Many convenience improvements were made in the GUI.
· A crashable double free bug was fixed.
· An Open File viewer plugin was added.
· More options are available in configuration.
· Stack analysis was added, which shows return targets and string pointers in the stack view.
· A huge speedup was made in the Heap Analysis plugin.
· Описание и дополнения от редакторов и пользователей сайта