Go to file
Bet4 64ca9a66cf
Fix decompile error (#716)
2020-03-08 14:11:04 +01:00
.github Update CONTRIBUTING.md (#593) 2019-02-05 14:48:12 -06:00
caps Per section context output (#697) 2020-03-06 08:19:58 +01:00
docs Happy new year 2020 (#718) 2020-03-08 14:09:55 +01:00
profiling Profiling and performance improvements (#421) 2018-02-24 22:45:14 +07:00
pwndbg Per section context output (#697) 2020-03-06 08:19:58 +01:00
tests typeinfo: more types for golang and tests (#652) 2019-05-31 09:09:08 +02:00
.gitignore Run each test in a separate GDB session (#498) 2018-07-08 19:03:03 +02:00
.isort.cfg Promote GDB to a third-party utility 2016-10-03 15:39:51 -07:00
.sublime-settings Add sublime-settings [skip ci] 2015-10-25 16:51:45 -04:00
.travis.yml Fix nearpc following jumps when used w/o emulation (#499) 2018-07-08 23:25:59 +02:00
DEVELOPING.md fix spelling errors (#699) 2020-01-28 16:42:53 +01:00
FEATURES.md Per section context output (#697) 2020-03-06 08:19:58 +01:00
LICENSE.md license 2015-03-11 03:29:11 -07:00
README.md Happy new year 2020 (#718) 2020-03-08 14:09:55 +01:00
gdbinit.py Sort inputs 2017-02-10 14:38:27 -05:00
ida_script.py Fix decompile error (#716) 2020-03-08 14:11:04 +01:00
mkdocs.yml Add mkdocs documentation (#639) 2019-05-10 19:37:41 +02:00
pytests_collect.py Run each test in a separate GDB session (#498) 2018-07-08 19:03:03 +02:00
pytests_launcher.py Run each test in a separate GDB session (#498) 2018-07-08 19:03:03 +02:00
requirements.txt Bump Capstone to 4.0.1 (#591) 2019-01-15 14:18:21 +01:00
setup.cfg Add PEP8 configuration file for pep8 command-line and PyCharm 2016-12-13 16:36:54 -06:00
setup.sh Remove useless cat from setup (#717) 2020-03-08 14:10:19 +01:00
tag_release.sh Merge stable to dev (#365) 2017-11-29 18:43:21 -06:00
tests.sh Fix nearpc following jumps when used w/o emulation (#499) 2018-07-08 23:25:59 +02:00

README.md

pwndbg Build Status license Py2&3 IRC

pwndbg (/poʊndbæg/) is a GDB plug-in that makes debugging with GDB suck less, with a focus on features needed by low-level software developers, hardware hackers, reverse-engineers and exploit developers.

It has a boatload of features, see FEATURES.md.

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 2020 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 present (e.g. GEF) exist to fill some these gaps. Each provides an excellent experience and great features -- but they're difficult to extend (some are unmaintained, and all are a single 100KB, 200KB, or 300KB file (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
./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.

What can I do with that?

For further info about features/functionalities, see FEATURES.

Who?

Pwndbg is an open-source project, written and maintained by many contributors!

Want to help with development? Read CONTRIBUTING.

Contact

If you have any questions not worthy of a bug report, feel free to ping ebeip90 or disconnect3d at #pwndbg on Freenode and ask away. Click here to connect.