You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
Go to file
Allison Fister 72ab4aa5e8
move tuple to global scope
2 years ago
.devcontainer Updated permissions for Docker container 4 years ago
.github init add portable pwndbg using nix, package for rpm,deb,arch,alpine 2 years ago
caps Try heap (#744) 6 years ago
docs Remove support for Ubuntu 18.04 (#1812) (#1814) 2 years ago
gdb-pt-dump@aa7d3f86ed Update tests to gracefully handle multiple qemu processess running 2 years ago
nix Fix nix release build 2 years ago
profiling Optimize vis_heap_chunks command (#1678) 3 years ago
pwndbg move tuple to global scope 2 years ago
tests fix arch ci tests 2 years ago
.dockerignore Bringt back Archlinux CI. Fixes #1772, closes #1783 (#1800) 2 years ago
.gitignore Fix nix release build 2 years ago
.gitmodules hack-pt-dump 3 years ago
DEVELOPING.md Switch from flake8 to ruff (#1696) 3 years ago
Dockerfile fix dockerfile 2 years ago
Dockerfile.arch fix arch ci? 2 years ago
FEATURES.md Add Documentation for Rizin 3 years ago
LICENSE.md license 11 years ago
README.md Remove support for Ubuntu 18.04 (#1812) (#1814) 2 years ago
dev-requirements.txt Update code to Python >= 3.8 (#1840) 2 years ago
docker-compose.yml Remove support for Ubuntu 18.04 (#1812) (#1814) 2 years ago
flake.lock Fix nix release build 2 years ago
flake.nix flake.nix: fix syntax error 2 years ago
gdbinit.py Fixes #1870 2 years ago
ida_script.py Update code to Python >= 3.8 (#1840) 2 years ago
lint.sh lint.sh: use tools from .venv 2 years ago
mkdocs.yml GPT-3 Command for Pwndbg (#1589) 3 years ago
poetry.lock Bump cryptography from 41.0.2 to 41.0.3 2 years ago
pyproject.toml Fixes 1777: update Pwntools to 4.11 2 years ago
setup-dev.sh avoid breaking pacman.conf if entries already exist 2 years ago
setup.sh fix arch ci 2 years ago
tests.sh tests.sh: check for parallel_env requirement (closes #1606) (#1607) 3 years ago

README.md

pwndbg

license Unit tests Discord

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 2023 and GDB still lacks a real 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 363KB 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. It also comes batteries-included, so all of its features are available if you run setup.sh.

How?

Installation is straightforward:

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

Pwndbg is supported on Ubuntu 20.04, and 22.04 with GDB 9.2 and later. We do not test on any older versions of Ubuntu, so pwndbg may not work on these versions (for Ubuntu 18.04 use the 2023.07.17: ubuntu18.04-final release). We may accept pull requests fixing issues in older versions on a case by case basis, please discuss this with us on Discord first. You can also always checkout an older version of pwndbg from around the time the Ubuntu version you're interested in was still supported by Canonical, or you can attempt to build a newer version of GDB from source.

Other Linux distributions are also supported via setup.sh, including:

  • Debian-based OSes (via apt-get)
  • Fedora and Red Hat (via dnf)
  • Clear (via swiped)
  • OpenSUSE LEAP (via zypper)
  • Arch and Manjaro (via community AUR packages)
  • Void (via xbps)
  • Gentoo (via emerge)

If you use any Linux distribution other than Ubuntu, we recommend using the latest available GDB built from source. You can build it as:

cd <gdb-sources-dir>
mkdir build
cd build
../configure --disable-nls --disable-werror --with-system-readline --with-python=`which python3` --with-system-gdbinit=/etc/gdb/gdbinit --enable-targets=all
make -j7

What can I do with that?

For further info about features/functionalities, see FEATURES.

Who?

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

Pwndbg was originally created by Zach Riggle, who is no longer with us. We want to thank Zach for all of his contributions to Pwndbg and the wider security community.

Want to help with development? Read CONTRIBUTING or join our Discord server!

How to develop?

To run tests locally you can do this in docker image, after cloning repo run simply

docker-compose run main ./tests.sh 

Disclaimer - this won't work on apple silicon macs.

Contact

If you have any questions not worthy of a bug report, feel free to ping anybody on Discord and ask away.