Go to file
Zach Riggle c19dba46c1 Add best.jpg and link 2016-06-29 22:43:32 +02:00
caps Add best.jpg and link 2016-06-29 22:43:32 +02:00
capstone@944778a78d Update Capstone and Unicorn versions 2016-06-19 03:31:18 -07:00
pwndbg top_chunk shoud print metadata 2016-06-29 22:43:32 +02:00
tests Add core files for testing purposes 2016-06-15 13:52:29 -07:00
unicorn@d92b37ed7d Update Capstone and Unicorn versions 2016-06-19 03:31:18 -07:00
.gitignore lots of WIP stuff 2015-05-09 15:25:24 -04:00
.gitmodules Update installation instructions 2016-05-11 19:36:26 -07:00
.isort.cfg Add isort, config, and pre-CI hook 2016-06-14 12:31:56 -07:00
.sublime-settings Add sublime-settings [skip ci] 2015-10-25 16:51:45 -04:00
.travis.yml Add isort, config, and pre-CI hook 2016-06-14 12:31:56 -07:00
LICENSE.md license 2015-03-11 03:29:11 -07:00
README.md Add best.jpg and link 2016-06-29 22:43:32 +02:00
gdbinit.py sixize 2016-06-14 12:32:22 -07:00
ida_script.py Add isort, config, and pre-CI hook 2016-06-14 12:31:56 -07:00
requirements.txt Use six module for types 2016-06-14 12:32:22 -07:00
setup.sh Enable caching on Travis (#59) 2016-06-10 12:48:58 -06:00

README.md

pwndbg Build Status license

/poʊndbæg/

noun

  1. a collection of python that makes debugging with gdb suck less
  2. a PEDA replacement

[Pwndbg]

Why?

Vanilla GDB is terrible to use for reverse engineering and exploit development. Typing x/g30x $esp is not fun, and does not confer much information. The year is 2016 and GDB still lacks a hexdump command. GDB's syntax is arcane and difficult to approach. Windbg users are completely lost when they occasionally need to bump into GDB.

What?

Pwndbg is a Python module which is loaded directly into GDB, and provides a suite of utilities and crutches to hack around all of the cruft that is GDB and smooth out the rough edges.

Many other projects from the past (e.g., gdbinit, PEDA) and presesnt (e.g. GEF) exist to fill some these gaps. Unfortunately, they're all either unmaintained, unmaintainable, or not well suited to easily navigating the code to hack in new features (respectively).

Pwndbg exists not only to replace all of its predecessors, but also to have a clean implementation that runs quickly and is resilient against all the weird corner cases that come up.

How?

Installation is straightforward. Pwndbg is best supported on Ubuntu 14.04 with GDB 7.7, and Ubuntu 16.04 with GDB 7.11.

git clone https://github.com/pwndbg/pwndbg
cd pwndbg
sudo ./setup.sh

If you use any other Linux distribution, we recommend using the latest available GDB built from source. Be sure to pass --with-python=/path/to/python to configure.

Who?

Most of Pwndbg was written by Zach Riggle, with many other contributors offering up patches via Pull Requests.