Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Gdb Dashboard | 9,265 | 5 months ago | 10 | mit | Python | |||||
Modular visual interface for GDB in Python | ||||||||||
Conque Gdb | 256 | 4 years ago | 9 | Python | ||||||
GDB command line interface and terminal emulator in (G)Vim. | ||||||||||
Build An Efficient Pwn Environment | 184 | 3 years ago | 4 | Shell | ||||||
How to build an efficient pwn development environment in 2020 | ||||||||||
Debug Here | 60 | 1 | 2 years ago | 5 | March 22, 2019 | 5 | other | Rust | ||
A cross platform rust debugger hook | ||||||||||
Term48 | 41 | 6 years ago | 11 | C | ||||||
Vim Easydebugger | 40 | 3 years ago | 9 | mit | Vim script | |||||
VIM 调试器, A VIM multi-language debugger plugin | ||||||||||
Pbd | 28 | 3 years ago | 4 | mit | C | |||||
🖨️🐞 Printf Based Debugger, a user-friendly C debugger | ||||||||||
Termijack | 14 | 8 years ago | Python | |||||||
TermiJack surreptitiously hijacks standard streams (stdin, stdout, and/or stderr) from an already running process. | ||||||||||
Tgdbdb | 12 | 2 years ago | 1 | bsd-3-clause | Python | |||||
tmux + gdb + dashboard | ||||||||||
Vimgdb | 11 | 6 years ago | 1 | mit | Python | |||||
Use Vim to visually step through source code with GNU Gdb. |
GDB dashboard is a standalone .gdbinit
file written using the Python API that enables a modular interface showing relevant information about the program being debugged. Its main goal is to reduce the number of GDB commands needed to inspect the status of current program thus allowing the developer to primarily focus on the control flow.
Just place .gdbinit
in your home directory, for example with:
wget -P ~ https://git.io/.gdbinit
Optionally install Pygments to enable syntax highlighting:
pip install pygments
Then debug as usual, the dashboard will appear automatically every time the inferior program stops.
Keep in mind that no GDB command has been redefined, instead all the features are available via the main dashboard
command (see help dashboard
).
Head to the wiki to learn how to perform the most important tasks.