gdb dashboard v0.9.0 releases: Modular visual interface for GDB in Python

From prodefence.org

GDB dashboard

Modular visual interface for GDB in Python.

This comes as a standalone single-file .gdbinit which, among the other things, enables a configurable dashboard showing the most relevant information during the program execution. Its main goal is to reduce the number of GDB commands issued to inspect the current program status allowing the programmer to focus on the control flow instead.

Features

  • Single GDB init file.
  • Write the dashboard to the main GDB console or to an external file/TTY.
  • Interaction with GDB using the native Python API.
  • Several default modules are included to address the most basic needs: source code, assembly, registers, etc.).
  • User-defined modules can be easily developed by extending a Python class.
  • Additional configuration files (both GDB and Python) are read from ~/.gdbinit.d/.
  • Fully stylable user interface and dynamic command prompt.
  • Optional syntax highlighting using the Pygments Python library.
  • No GDB command has been redefined, instead, all the features are available as subcommands of the main dashboardcommand.

Read more…