Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created April 2, 2019 09:51
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/8358f437b5c9d969f41bfa6853696d17 to your computer and use it in GitHub Desktop.
Save ryantm/8358f437b5c9d969f41bfa6853696d17 to your computer and use it in GitHub Desktop.
/nix/store/mimbzslvwslbjcxp9yhr1h09v3vs2gsm-pwndbg-2019.01.25
├── bin
│   └── pwndbg
├── nix-support
│   └── propagated-build-inputs
└── share
└── pwndbg
├── gdbinit.py
├── ida_script.py
├── pwndbg
│   ├── abi.py
│   ├── android.py
│   ├── arch.py
│   ├── arguments.py
│   ├── argv.py
│   ├── auxv.py
│   ├── chain.py
│   ├── color
│   │   ├── backtrace.py
│   │   ├── chain.py
│   │   ├── context.py
│   │   ├── disasm.py
│   │   ├── enhance.py
│   │   ├── hexdump.py
│   │   ├── __init__.py
│   │   ├── lexer.py
│   │   ├── memory.py
│   │   ├── message.py
│   │   ├── nearpc.py
│   │   ├── syntax_highlight.py
│   │   ├── telescope.py
│   │   └── theme.py
│   ├── commands
│   │   ├── argv.py
│   │   ├── aslr.py
│   │   ├── asm.py
│   │   ├── auxv.py
│   │   ├── canary.py
│   │   ├── checksec.py
│   │   ├── config.py
│   │   ├── context.py
│   │   ├── cpsr.py
│   │   ├── defcon.py
│   │   ├── dt.py
│   │   ├── dumpargs.py
│   │   ├── elf.py
│   │   ├── gdbinit.py
│   │   ├── got.py
│   │   ├── heap.py
│   │   ├── hexdump.py
│   │   ├── ida.py
│   │   ├── __init__.py
│   │   ├── misc.py
│   │   ├── nearpc.py
│   │   ├── next.py
│   │   ├── peda.py
│   │   ├── pie.py
│   │   ├── probeleak.py
│   │   ├── procinfo.py
│   │   ├── radare2.py
│   │   ├── reload.py
│   │   ├── ropper.py
│   │   ├── rop.py
│   │   ├── search.py
│   │   ├── segments.py
│   │   ├── shell.py
│   │   ├── stack.py
│   │   ├── start.py
│   │   ├── telescope.py
│   │   ├── theme.py
│   │   ├── version.py
│   │   ├── vmmap.py
│   │   ├── windbg.py
│   │   ├── xinfo.py
│   │   └── xor.py
│   ├── config.py
│   ├── constants
│   │   ├── aarch64.py
│   │   ├── alpha.py
│   │   ├── amd64.py
│   │   ├── arm.py
│   │   ├── constant.py
│   │   ├── i386.py
│   │   ├── ia64.py
│   │   ├── __init__.py
│   │   ├── mips.py
│   │   ├── powerpc64.py
│   │   ├── powerpc.py
│   │   ├── ptmalloc.py
│   │   ├── s390.py
│   │   ├── s390x.py
│   │   ├── sparc64.py
│   │   ├── sparc.py
│   │   └── thumb.py
│   ├── ctypes.py
│   ├── decorators.py
│   ├── disasm
│   │   ├── arch.py
│   │   ├── arm.py
│   │   ├── __init__.py
│   │   ├── jump.py
│   │   ├── mips.py
│   │   ├── ppc.py
│   │   ├── sparc.py
│   │   └── x86.py
│   ├── dt.py
│   ├── elf.py
│   ├── elftypes.py
│   ├── emu
│   │   ├── emulator.py
│   │   ├── __init__.py
│   │   └── x86.py
│   ├── enhance.py
│   ├── events.py
│   ├── exception.py
│   ├── file.py
│   ├── funcparser.py
│   ├── functions.py
│   ├── gcc.py
│   ├── gdbutils
│   │   ├── functions.py
│   │   └── __init__.py
│   ├── heap
│   │   ├── dlmalloc.py
│   │   ├── heap.py
│   │   ├── __init__.py
│   │   └── ptmalloc.py
│   ├── hexdump.py
│   ├── ida.py
│   ├── info.py
│   ├── __init__.py
│   ├── inthook.py
│   ├── jump
│   │   └── __init__.py
│   ├── memoize.py
│   ├── memory.py
│   ├── net.py
│   ├── next.py
│   ├── proc.py
│   ├── prompt.py
│   ├── qemu.py
│   ├── regs.py
│   ├── remote.py
│   ├── search.py
│   ├── stack.py
│   ├── stdio.py
│   ├── strings.py
│   ├── symbol.py
│   ├── typeinfo.py
│   ├── ui.py
│   ├── version.py
│   ├── vmmap.py
│   ├── which.py
│   └── wrappers
│   ├── checksec.py
│   ├── __init__.py
│   └── readelf.py
├── pytests_collect.py
└── pytests_launcher.py
14 directories, 144 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment