├── .github ├── CONTRIBUTING.md └── ISSUE_TEMPLATE.md ├── .gitignore ├── .isort.cfg ├── .sublime-settings ├── .travis.yml ├── 217color ├── DEVELOPING.md ├── FEATURES.md ├── LICENSE.md ├── README.md ├── README.md.bak ├── caps ├── .DS_Store ├── arguments_getenv.png ├── arguments_memcpy.png ├── arguments_sigsetjmp.png ├── arguments_strcpy.png ├── arguments_syscall.png ├── arguments_xtrace_init.png ├── best.png ├── config.png ├── context.png ├── disasm_taken_after.png ├── disasm_taken_before.png ├── disasm_taken_folded.png ├── disasn_taken_false.png ├── emulate_vs_disasm.png ├── emulation_plt.png ├── emulation_rop.png ├── fake_fast.png ├── heap_arena.png ├── heap_bins.png ├── heap_fastbins.png ├── heap_heap.png ├── heap_heap2.png ├── heap_largebins.png ├── heap_mallocchunk.png ├── heap_mp.png ├── heap_smallbins.png ├── heap_topchunk.png ├── heap_unsorted.png ├── ida_comments.png ├── ida_function.png ├── ida_integration.png ├── leakfind.png ├── procinfo.png ├── qemu_gef.png ├── qemu_peda.png ├── qemu_pwndbg.png ├── qemu_vanilla.png ├── rop_grep.png ├── search.png ├── telescope.png ├── telescope_collapsed.png ├── theme.png ├── vmmap.png ├── vmmap2.png ├── vmmap_pc.png ├── vmmap_register.png ├── vmmap_stack.png └── windbg.png ├── docs ├── .gitignore ├── Makefile ├── commands │ ├── arm │ │ └── cpsr.md │ ├── config │ │ ├── config.md │ │ ├── configfile.md │ │ ├── theme.md │ │ └── themefile.md │ ├── dev │ │ ├── bugreport.md │ │ ├── reinit_pwndbg.md │ │ ├── reload.md │ │ └── version.md │ ├── disas │ │ ├── emulate.md │ │ ├── nearpc.md │ │ └── pdisass.md │ ├── elfinspection │ │ ├── auxv.md │ │ ├── checksec.md │ │ ├── elfheader.md │ │ ├── got.md │ │ ├── gotplt.md │ │ ├── plt.md │ │ ├── rop.md │ │ └── ropper.md │ ├── gdbinit │ │ ├── entry_point.md │ │ ├── init.md │ │ ├── libs.md │ │ ├── main.md │ │ └── sstart.md │ ├── heap │ │ ├── arena.md │ │ ├── arenas.md │ │ ├── bins.md │ │ ├── fastbins.md │ │ ├── find_fake_fast.md │ │ ├── heap.md │ │ ├── largebins.md │ │ ├── malloc_chunk.md │ │ ├── mp.md │ │ ├── smallbins.md │ │ ├── tcache.md │ │ ├── tcachebins.md │ │ ├── top_chunk.md │ │ ├── unsortedbin.md │ │ └── vis_heap_chunks.md │ ├── ida │ │ ├── j.md │ │ └── save_ida.md │ ├── leaks │ │ ├── leakfind.md │ │ └── probeleak.md │ ├── misc │ │ ├── distance.md │ │ ├── down.md │ │ ├── errno.md │ │ ├── pwndbg.md │ │ ├── r2.md │ │ └── up.md │ ├── navigation │ │ ├── entry.md │ │ ├── nextcall.md │ │ ├── nextjmp.md │ │ ├── nextproginstr.md │ │ ├── nextret.md │ │ ├── nextsyscall.md │ │ ├── start.md │ │ ├── stepover.md │ │ ├── stepret.md │ │ └── stepsyscall.md │ ├── peda │ │ ├── getfile.md │ │ ├── getpid.md │ │ ├── xinfo.md │ │ └── xuntil.md │ ├── procinfo │ │ ├── args │ │ │ ├── argc.md │ │ │ ├── argv.md │ │ │ └── envp.md │ │ ├── aslr.md │ │ ├── canary.md │ │ ├── context.md │ │ ├── dt.md │ │ ├── dumpargs.md │ │ ├── fsbase.md │ │ ├── gsbase.md │ │ ├── hexdump.md │ │ ├── pid.md │ │ ├── piebase.md │ │ ├── procinfo.md │ │ ├── regs.md │ │ ├── retaddr.md │ │ ├── search.md │ │ ├── stack.md │ │ ├── telescope.md │ │ └── vmmap │ │ │ ├── vmmap.md │ │ │ ├── vmmap_add.md │ │ │ ├── vmmap_clear.md │ │ │ └── vmmap_load.md │ ├── statemod │ │ ├── breakrva.md │ │ ├── memfrob.md │ │ └── xor.md │ └── windbg │ │ ├── bc.md │ │ ├── bd.md │ │ ├── be.md │ │ ├── bl.md │ │ ├── bp.md │ │ ├── da.md │ │ ├── db.md │ │ ├── dc.md │ │ ├── dd.md │ │ ├── dds.md │ │ ├── dq.md │ │ ├── ds.md │ │ ├── dw.md │ │ ├── eb.md │ │ ├── ed.md │ │ ├── eq.md │ │ ├── ew.md │ │ ├── ez.md │ │ ├── eza.md │ │ ├── go.md │ │ ├── k.md │ │ ├── ln.md │ │ ├── pc.md │ │ ├── peb.md │ │ └── u.md ├── gdb │ └── __init__.py ├── index.md ├── requirements.txt └── source │ ├── api.rst │ ├── api │ ├── abi.rst │ ├── android.rst │ ├── arch.rst │ ├── arguments.rst │ ├── argv.rst │ ├── auxv.rst │ ├── chain.rst │ ├── config.rst │ ├── dt.rst │ ├── elf.rst │ ├── elftypes.rst │ ├── enhance.rst │ ├── events.rst │ ├── file.rst │ ├── gcc.rst │ ├── generate.sh │ ├── gitver.rst │ ├── hexdump.rst │ ├── ida.rst │ ├── info.rst │ ├── inthook.rst │ ├── linkmap.rst │ ├── malloc.rst │ ├── memoize.rst │ ├── memory.rst │ ├── net.rst │ ├── next.rst │ ├── proc.rst │ ├── prompt.rst │ ├── qemu.rst │ ├── regs.rst │ ├── remote.rst │ ├── search.rst │ ├── stack.rst │ ├── stdio.rst │ ├── strings.rst │ ├── symbol.rst │ ├── typeinfo.rst │ ├── ui.rst │ ├── vmmap.rst │ └── which.rst │ ├── commands.rst │ ├── commands │ ├── aslr.rst │ ├── hexdump.rst │ ├── history.rst │ ├── search.rst │ ├── stack.rst │ └── telescope.rst │ ├── conf.py │ └── index.rst ├── gdbinit.py ├── ida_script.py ├── mkdocs.yml ├── profiling ├── .gitignore ├── benchmark.sh ├── profile.sh └── test.c ├── pwndbg ├── __init__.py ├── abi.py ├── android.py ├── arch.py ├── arguments.py ├── argv.py ├── auxv.py ├── chain.py ├── color │ ├── __init__.py │ ├── backtrace.py │ ├── chain.py │ ├── context.py │ ├── disasm.py │ ├── enhance.py │ ├── hexdump.py │ ├── lexer.py │ ├── memory.py │ ├── message.py │ ├── nearpc.py │ ├── syntax_highlight.py │ ├── telescope.py │ └── theme.py ├── commands │ ├── __init__.py │ ├── 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 │ ├── history.py │ ├── ida.py │ ├── leakfind.py │ ├── misc.py │ ├── nearpc.py │ ├── next.py │ ├── peda.py │ ├── pie.py │ ├── probeleak.py │ ├── procinfo.py │ ├── radare2.py │ ├── reload.py │ ├── rop.py │ ├── ropper.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 │ ├── __init__.py │ ├── aarch64.py │ ├── alpha.py │ ├── amd64.py │ ├── arm.py │ ├── constant.py │ ├── i386.py │ ├── ia64.py │ ├── mips.py │ ├── powerpc.py │ ├── powerpc64.py │ ├── ptmalloc.py │ ├── s390.py │ ├── s390x.py │ ├── sparc.py │ ├── sparc64.py │ └── thumb.py ├── ctypes.py ├── decorators.py ├── disasm │ ├── __init__.py │ ├── arch.py │ ├── arm.py │ ├── jump.py │ ├── mips.py │ ├── ppc.py │ ├── sparc.py │ └── x86.py ├── dt.py ├── elf.py ├── elftypes.py ├── emu │ ├── __init__.py │ ├── emulator.py │ └── x86.py ├── enhance.py ├── events.py ├── exception.py ├── file.py ├── funcparser.py ├── functions.py ├── gcc.py ├── gdbutils │ ├── __init__.py │ └── functions.py ├── heap │ ├── __init__.py │ ├── dlmalloc.py │ ├── heap.py │ └── ptmalloc.py ├── hexdump.py ├── ida.py ├── info.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 │ ├── __init__.py │ ├── checksec.py │ └── readelf.py ├── pytests_collect.py ├── pytests_launcher.py ├── requirements.txt ├── setup.cfg ├── setup.sh ├── tag_release.sh ├── tests.sh └── tests ├── __init__.py ├── binaries ├── __init__.py ├── emulate_disasm.asm ├── emulate_disasm.out ├── emulate_disasm_loop.asm ├── emulate_disasm_loop.out ├── gosample.x64.go ├── gosample.x86.go ├── makefile ├── old_bash │ ├── __init__.py │ ├── binary │ └── core ├── reference-binary.c └── reference-binary.out ├── conftest.py ├── test_emulate.py ├── test_go.py ├── test_loads.py ├── test_memory.py └── test_misc.py /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/.gitignore -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/.isort.cfg -------------------------------------------------------------------------------- /.sublime-settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/.sublime-settings -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/.travis.yml -------------------------------------------------------------------------------- /217color: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/217color -------------------------------------------------------------------------------- /DEVELOPING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/DEVELOPING.md -------------------------------------------------------------------------------- /FEATURES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/FEATURES.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/README.md -------------------------------------------------------------------------------- /README.md.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/README.md.bak -------------------------------------------------------------------------------- /caps/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/.DS_Store -------------------------------------------------------------------------------- /caps/arguments_getenv.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/arguments_getenv.png -------------------------------------------------------------------------------- /caps/arguments_memcpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/arguments_memcpy.png -------------------------------------------------------------------------------- /caps/arguments_sigsetjmp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/arguments_sigsetjmp.png -------------------------------------------------------------------------------- /caps/arguments_strcpy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/arguments_strcpy.png -------------------------------------------------------------------------------- /caps/arguments_syscall.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/arguments_syscall.png -------------------------------------------------------------------------------- /caps/arguments_xtrace_init.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/arguments_xtrace_init.png -------------------------------------------------------------------------------- /caps/best.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/best.png -------------------------------------------------------------------------------- /caps/config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/config.png -------------------------------------------------------------------------------- /caps/context.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/context.png -------------------------------------------------------------------------------- /caps/disasm_taken_after.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/disasm_taken_after.png -------------------------------------------------------------------------------- /caps/disasm_taken_before.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/disasm_taken_before.png -------------------------------------------------------------------------------- /caps/disasm_taken_folded.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/disasm_taken_folded.png -------------------------------------------------------------------------------- /caps/disasn_taken_false.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/disasn_taken_false.png -------------------------------------------------------------------------------- /caps/emulate_vs_disasm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/emulate_vs_disasm.png -------------------------------------------------------------------------------- /caps/emulation_plt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/emulation_plt.png -------------------------------------------------------------------------------- /caps/emulation_rop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/emulation_rop.png -------------------------------------------------------------------------------- /caps/fake_fast.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/fake_fast.png -------------------------------------------------------------------------------- /caps/heap_arena.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/heap_arena.png -------------------------------------------------------------------------------- /caps/heap_bins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/heap_bins.png -------------------------------------------------------------------------------- /caps/heap_fastbins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/heap_fastbins.png -------------------------------------------------------------------------------- /caps/heap_heap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/heap_heap.png -------------------------------------------------------------------------------- /caps/heap_heap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/heap_heap2.png -------------------------------------------------------------------------------- /caps/heap_largebins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/heap_largebins.png -------------------------------------------------------------------------------- /caps/heap_mallocchunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/heap_mallocchunk.png -------------------------------------------------------------------------------- /caps/heap_mp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/heap_mp.png -------------------------------------------------------------------------------- /caps/heap_smallbins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/heap_smallbins.png -------------------------------------------------------------------------------- /caps/heap_topchunk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/heap_topchunk.png -------------------------------------------------------------------------------- /caps/heap_unsorted.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/heap_unsorted.png -------------------------------------------------------------------------------- /caps/ida_comments.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/ida_comments.png -------------------------------------------------------------------------------- /caps/ida_function.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/ida_function.png -------------------------------------------------------------------------------- /caps/ida_integration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/ida_integration.png -------------------------------------------------------------------------------- /caps/leakfind.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/leakfind.png -------------------------------------------------------------------------------- /caps/procinfo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/procinfo.png -------------------------------------------------------------------------------- /caps/qemu_gef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/qemu_gef.png -------------------------------------------------------------------------------- /caps/qemu_peda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/qemu_peda.png -------------------------------------------------------------------------------- /caps/qemu_pwndbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/qemu_pwndbg.png -------------------------------------------------------------------------------- /caps/qemu_vanilla.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/qemu_vanilla.png -------------------------------------------------------------------------------- /caps/rop_grep.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/rop_grep.png -------------------------------------------------------------------------------- /caps/search.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/search.png -------------------------------------------------------------------------------- /caps/telescope.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/telescope.png -------------------------------------------------------------------------------- /caps/telescope_collapsed.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/telescope_collapsed.png -------------------------------------------------------------------------------- /caps/theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/theme.png -------------------------------------------------------------------------------- /caps/vmmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/vmmap.png -------------------------------------------------------------------------------- /caps/vmmap2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/vmmap2.png -------------------------------------------------------------------------------- /caps/vmmap_pc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/vmmap_pc.png -------------------------------------------------------------------------------- /caps/vmmap_register.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/vmmap_register.png -------------------------------------------------------------------------------- /caps/vmmap_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/vmmap_stack.png -------------------------------------------------------------------------------- /caps/windbg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/caps/windbg.png -------------------------------------------------------------------------------- /docs/.gitignore: -------------------------------------------------------------------------------- 1 | build 2 | -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/commands/arm/cpsr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/arm/cpsr.md -------------------------------------------------------------------------------- /docs/commands/config/config.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/config/config.md -------------------------------------------------------------------------------- /docs/commands/config/configfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/config/configfile.md -------------------------------------------------------------------------------- /docs/commands/config/theme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/config/theme.md -------------------------------------------------------------------------------- /docs/commands/config/themefile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/config/themefile.md -------------------------------------------------------------------------------- /docs/commands/dev/bugreport.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/dev/bugreport.md -------------------------------------------------------------------------------- /docs/commands/dev/reinit_pwndbg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/dev/reinit_pwndbg.md -------------------------------------------------------------------------------- /docs/commands/dev/reload.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/dev/reload.md -------------------------------------------------------------------------------- /docs/commands/dev/version.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/dev/version.md -------------------------------------------------------------------------------- /docs/commands/disas/emulate.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/disas/emulate.md -------------------------------------------------------------------------------- /docs/commands/disas/nearpc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/disas/nearpc.md -------------------------------------------------------------------------------- /docs/commands/disas/pdisass.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/disas/pdisass.md -------------------------------------------------------------------------------- /docs/commands/elfinspection/auxv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/elfinspection/auxv.md -------------------------------------------------------------------------------- /docs/commands/elfinspection/checksec.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/elfinspection/checksec.md -------------------------------------------------------------------------------- /docs/commands/elfinspection/elfheader.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/elfinspection/elfheader.md -------------------------------------------------------------------------------- /docs/commands/elfinspection/got.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/elfinspection/got.md -------------------------------------------------------------------------------- /docs/commands/elfinspection/gotplt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/elfinspection/gotplt.md -------------------------------------------------------------------------------- /docs/commands/elfinspection/plt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/elfinspection/plt.md -------------------------------------------------------------------------------- /docs/commands/elfinspection/rop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/elfinspection/rop.md -------------------------------------------------------------------------------- /docs/commands/elfinspection/ropper.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/elfinspection/ropper.md -------------------------------------------------------------------------------- /docs/commands/gdbinit/entry_point.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/gdbinit/entry_point.md -------------------------------------------------------------------------------- /docs/commands/gdbinit/init.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/gdbinit/init.md -------------------------------------------------------------------------------- /docs/commands/gdbinit/libs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/gdbinit/libs.md -------------------------------------------------------------------------------- /docs/commands/gdbinit/main.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/gdbinit/main.md -------------------------------------------------------------------------------- /docs/commands/gdbinit/sstart.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/gdbinit/sstart.md -------------------------------------------------------------------------------- /docs/commands/heap/arena.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/arena.md -------------------------------------------------------------------------------- /docs/commands/heap/arenas.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/arenas.md -------------------------------------------------------------------------------- /docs/commands/heap/bins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/bins.md -------------------------------------------------------------------------------- /docs/commands/heap/fastbins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/fastbins.md -------------------------------------------------------------------------------- /docs/commands/heap/find_fake_fast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/find_fake_fast.md -------------------------------------------------------------------------------- /docs/commands/heap/heap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/heap.md -------------------------------------------------------------------------------- /docs/commands/heap/largebins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/largebins.md -------------------------------------------------------------------------------- /docs/commands/heap/malloc_chunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/malloc_chunk.md -------------------------------------------------------------------------------- /docs/commands/heap/mp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/mp.md -------------------------------------------------------------------------------- /docs/commands/heap/smallbins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/smallbins.md -------------------------------------------------------------------------------- /docs/commands/heap/tcache.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/tcache.md -------------------------------------------------------------------------------- /docs/commands/heap/tcachebins.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/tcachebins.md -------------------------------------------------------------------------------- /docs/commands/heap/top_chunk.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/top_chunk.md -------------------------------------------------------------------------------- /docs/commands/heap/unsortedbin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/unsortedbin.md -------------------------------------------------------------------------------- /docs/commands/heap/vis_heap_chunks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/heap/vis_heap_chunks.md -------------------------------------------------------------------------------- /docs/commands/ida/j.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/ida/j.md -------------------------------------------------------------------------------- /docs/commands/ida/save_ida.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/ida/save_ida.md -------------------------------------------------------------------------------- /docs/commands/leaks/leakfind.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/leaks/leakfind.md -------------------------------------------------------------------------------- /docs/commands/leaks/probeleak.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/leaks/probeleak.md -------------------------------------------------------------------------------- /docs/commands/misc/distance.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/misc/distance.md -------------------------------------------------------------------------------- /docs/commands/misc/down.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/misc/down.md -------------------------------------------------------------------------------- /docs/commands/misc/errno.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/misc/errno.md -------------------------------------------------------------------------------- /docs/commands/misc/pwndbg.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/misc/pwndbg.md -------------------------------------------------------------------------------- /docs/commands/misc/r2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/misc/r2.md -------------------------------------------------------------------------------- /docs/commands/misc/up.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/misc/up.md -------------------------------------------------------------------------------- /docs/commands/navigation/entry.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/navigation/entry.md -------------------------------------------------------------------------------- /docs/commands/navigation/nextcall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/navigation/nextcall.md -------------------------------------------------------------------------------- /docs/commands/navigation/nextjmp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/navigation/nextjmp.md -------------------------------------------------------------------------------- /docs/commands/navigation/nextproginstr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/navigation/nextproginstr.md -------------------------------------------------------------------------------- /docs/commands/navigation/nextret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/navigation/nextret.md -------------------------------------------------------------------------------- /docs/commands/navigation/nextsyscall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/navigation/nextsyscall.md -------------------------------------------------------------------------------- /docs/commands/navigation/start.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/navigation/start.md -------------------------------------------------------------------------------- /docs/commands/navigation/stepover.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/navigation/stepover.md -------------------------------------------------------------------------------- /docs/commands/navigation/stepret.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/navigation/stepret.md -------------------------------------------------------------------------------- /docs/commands/navigation/stepsyscall.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/navigation/stepsyscall.md -------------------------------------------------------------------------------- /docs/commands/peda/getfile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/peda/getfile.md -------------------------------------------------------------------------------- /docs/commands/peda/getpid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/peda/getpid.md -------------------------------------------------------------------------------- /docs/commands/peda/xinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/peda/xinfo.md -------------------------------------------------------------------------------- /docs/commands/peda/xuntil.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/peda/xuntil.md -------------------------------------------------------------------------------- /docs/commands/procinfo/args/argc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/args/argc.md -------------------------------------------------------------------------------- /docs/commands/procinfo/args/argv.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/args/argv.md -------------------------------------------------------------------------------- /docs/commands/procinfo/args/envp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/args/envp.md -------------------------------------------------------------------------------- /docs/commands/procinfo/aslr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/aslr.md -------------------------------------------------------------------------------- /docs/commands/procinfo/canary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/canary.md -------------------------------------------------------------------------------- /docs/commands/procinfo/context.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/context.md -------------------------------------------------------------------------------- /docs/commands/procinfo/dt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/dt.md -------------------------------------------------------------------------------- /docs/commands/procinfo/dumpargs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/dumpargs.md -------------------------------------------------------------------------------- /docs/commands/procinfo/fsbase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/fsbase.md -------------------------------------------------------------------------------- /docs/commands/procinfo/gsbase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/gsbase.md -------------------------------------------------------------------------------- /docs/commands/procinfo/hexdump.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/hexdump.md -------------------------------------------------------------------------------- /docs/commands/procinfo/pid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/pid.md -------------------------------------------------------------------------------- /docs/commands/procinfo/piebase.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/piebase.md -------------------------------------------------------------------------------- /docs/commands/procinfo/procinfo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/procinfo.md -------------------------------------------------------------------------------- /docs/commands/procinfo/regs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/regs.md -------------------------------------------------------------------------------- /docs/commands/procinfo/retaddr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/retaddr.md -------------------------------------------------------------------------------- /docs/commands/procinfo/search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/search.md -------------------------------------------------------------------------------- /docs/commands/procinfo/stack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/stack.md -------------------------------------------------------------------------------- /docs/commands/procinfo/telescope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/telescope.md -------------------------------------------------------------------------------- /docs/commands/procinfo/vmmap/vmmap.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/vmmap/vmmap.md -------------------------------------------------------------------------------- /docs/commands/procinfo/vmmap/vmmap_add.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/vmmap/vmmap_add.md -------------------------------------------------------------------------------- /docs/commands/procinfo/vmmap/vmmap_clear.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/vmmap/vmmap_clear.md -------------------------------------------------------------------------------- /docs/commands/procinfo/vmmap/vmmap_load.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/procinfo/vmmap/vmmap_load.md -------------------------------------------------------------------------------- /docs/commands/statemod/breakrva.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/statemod/breakrva.md -------------------------------------------------------------------------------- /docs/commands/statemod/memfrob.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/statemod/memfrob.md -------------------------------------------------------------------------------- /docs/commands/statemod/xor.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/statemod/xor.md -------------------------------------------------------------------------------- /docs/commands/windbg/bc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/bc.md -------------------------------------------------------------------------------- /docs/commands/windbg/bd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/bd.md -------------------------------------------------------------------------------- /docs/commands/windbg/be.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/be.md -------------------------------------------------------------------------------- /docs/commands/windbg/bl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/bl.md -------------------------------------------------------------------------------- /docs/commands/windbg/bp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/bp.md -------------------------------------------------------------------------------- /docs/commands/windbg/da.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/da.md -------------------------------------------------------------------------------- /docs/commands/windbg/db.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/db.md -------------------------------------------------------------------------------- /docs/commands/windbg/dc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/dc.md -------------------------------------------------------------------------------- /docs/commands/windbg/dd.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/dd.md -------------------------------------------------------------------------------- /docs/commands/windbg/dds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/dds.md -------------------------------------------------------------------------------- /docs/commands/windbg/dq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/dq.md -------------------------------------------------------------------------------- /docs/commands/windbg/ds.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/ds.md -------------------------------------------------------------------------------- /docs/commands/windbg/dw.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/dw.md -------------------------------------------------------------------------------- /docs/commands/windbg/eb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/eb.md -------------------------------------------------------------------------------- /docs/commands/windbg/ed.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/ed.md -------------------------------------------------------------------------------- /docs/commands/windbg/eq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/eq.md -------------------------------------------------------------------------------- /docs/commands/windbg/ew.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/ew.md -------------------------------------------------------------------------------- /docs/commands/windbg/ez.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/ez.md -------------------------------------------------------------------------------- /docs/commands/windbg/eza.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/eza.md -------------------------------------------------------------------------------- /docs/commands/windbg/go.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/go.md -------------------------------------------------------------------------------- /docs/commands/windbg/k.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/k.md -------------------------------------------------------------------------------- /docs/commands/windbg/ln.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/ln.md -------------------------------------------------------------------------------- /docs/commands/windbg/pc.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/pc.md -------------------------------------------------------------------------------- /docs/commands/windbg/peb.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/peb.md -------------------------------------------------------------------------------- /docs/commands/windbg/u.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/commands/windbg/u.md -------------------------------------------------------------------------------- /docs/gdb/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/gdb/__init__.py -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/source/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api.rst -------------------------------------------------------------------------------- /docs/source/api/abi.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/abi.rst -------------------------------------------------------------------------------- /docs/source/api/android.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/android.rst -------------------------------------------------------------------------------- /docs/source/api/arch.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/arch.rst -------------------------------------------------------------------------------- /docs/source/api/arguments.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/arguments.rst -------------------------------------------------------------------------------- /docs/source/api/argv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/argv.rst -------------------------------------------------------------------------------- /docs/source/api/auxv.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/auxv.rst -------------------------------------------------------------------------------- /docs/source/api/chain.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/chain.rst -------------------------------------------------------------------------------- /docs/source/api/config.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/config.rst -------------------------------------------------------------------------------- /docs/source/api/dt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/dt.rst -------------------------------------------------------------------------------- /docs/source/api/elf.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/elf.rst -------------------------------------------------------------------------------- /docs/source/api/elftypes.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/elftypes.rst -------------------------------------------------------------------------------- /docs/source/api/enhance.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/enhance.rst -------------------------------------------------------------------------------- /docs/source/api/events.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/events.rst -------------------------------------------------------------------------------- /docs/source/api/file.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/file.rst -------------------------------------------------------------------------------- /docs/source/api/gcc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/gcc.rst -------------------------------------------------------------------------------- /docs/source/api/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/generate.sh -------------------------------------------------------------------------------- /docs/source/api/gitver.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/gitver.rst -------------------------------------------------------------------------------- /docs/source/api/hexdump.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/hexdump.rst -------------------------------------------------------------------------------- /docs/source/api/ida.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/ida.rst -------------------------------------------------------------------------------- /docs/source/api/info.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/info.rst -------------------------------------------------------------------------------- /docs/source/api/inthook.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/inthook.rst -------------------------------------------------------------------------------- /docs/source/api/linkmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/linkmap.rst -------------------------------------------------------------------------------- /docs/source/api/malloc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/malloc.rst -------------------------------------------------------------------------------- /docs/source/api/memoize.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/memoize.rst -------------------------------------------------------------------------------- /docs/source/api/memory.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/memory.rst -------------------------------------------------------------------------------- /docs/source/api/net.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/net.rst -------------------------------------------------------------------------------- /docs/source/api/next.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/next.rst -------------------------------------------------------------------------------- /docs/source/api/proc.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/proc.rst -------------------------------------------------------------------------------- /docs/source/api/prompt.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/prompt.rst -------------------------------------------------------------------------------- /docs/source/api/qemu.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/qemu.rst -------------------------------------------------------------------------------- /docs/source/api/regs.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/regs.rst -------------------------------------------------------------------------------- /docs/source/api/remote.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/remote.rst -------------------------------------------------------------------------------- /docs/source/api/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/search.rst -------------------------------------------------------------------------------- /docs/source/api/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/stack.rst -------------------------------------------------------------------------------- /docs/source/api/stdio.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/stdio.rst -------------------------------------------------------------------------------- /docs/source/api/strings.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/strings.rst -------------------------------------------------------------------------------- /docs/source/api/symbol.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/symbol.rst -------------------------------------------------------------------------------- /docs/source/api/typeinfo.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/typeinfo.rst -------------------------------------------------------------------------------- /docs/source/api/ui.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/ui.rst -------------------------------------------------------------------------------- /docs/source/api/vmmap.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/vmmap.rst -------------------------------------------------------------------------------- /docs/source/api/which.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/api/which.rst -------------------------------------------------------------------------------- /docs/source/commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/commands.rst -------------------------------------------------------------------------------- /docs/source/commands/aslr.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/commands/aslr.rst -------------------------------------------------------------------------------- /docs/source/commands/hexdump.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/commands/hexdump.rst -------------------------------------------------------------------------------- /docs/source/commands/history.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/commands/history.rst -------------------------------------------------------------------------------- /docs/source/commands/search.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/commands/search.rst -------------------------------------------------------------------------------- /docs/source/commands/stack.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/commands/stack.rst -------------------------------------------------------------------------------- /docs/source/commands/telescope.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/commands/telescope.rst -------------------------------------------------------------------------------- /docs/source/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/conf.py -------------------------------------------------------------------------------- /docs/source/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/docs/source/index.rst -------------------------------------------------------------------------------- /gdbinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/gdbinit.py -------------------------------------------------------------------------------- /ida_script.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/ida_script.py -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /profiling/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/profiling/.gitignore -------------------------------------------------------------------------------- /profiling/benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/profiling/benchmark.sh -------------------------------------------------------------------------------- /profiling/profile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/profiling/profile.sh -------------------------------------------------------------------------------- /profiling/test.c: -------------------------------------------------------------------------------- 1 | int main() { 2 | while(1); 3 | } 4 | -------------------------------------------------------------------------------- /pwndbg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/__init__.py -------------------------------------------------------------------------------- /pwndbg/abi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/abi.py -------------------------------------------------------------------------------- /pwndbg/android.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/android.py -------------------------------------------------------------------------------- /pwndbg/arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/arch.py -------------------------------------------------------------------------------- /pwndbg/arguments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/arguments.py -------------------------------------------------------------------------------- /pwndbg/argv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/argv.py -------------------------------------------------------------------------------- /pwndbg/auxv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/auxv.py -------------------------------------------------------------------------------- /pwndbg/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/chain.py -------------------------------------------------------------------------------- /pwndbg/color/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/__init__.py -------------------------------------------------------------------------------- /pwndbg/color/backtrace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/backtrace.py -------------------------------------------------------------------------------- /pwndbg/color/chain.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/chain.py -------------------------------------------------------------------------------- /pwndbg/color/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/context.py -------------------------------------------------------------------------------- /pwndbg/color/disasm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/disasm.py -------------------------------------------------------------------------------- /pwndbg/color/enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/enhance.py -------------------------------------------------------------------------------- /pwndbg/color/hexdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/hexdump.py -------------------------------------------------------------------------------- /pwndbg/color/lexer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/lexer.py -------------------------------------------------------------------------------- /pwndbg/color/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/memory.py -------------------------------------------------------------------------------- /pwndbg/color/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/message.py -------------------------------------------------------------------------------- /pwndbg/color/nearpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/nearpc.py -------------------------------------------------------------------------------- /pwndbg/color/syntax_highlight.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/syntax_highlight.py -------------------------------------------------------------------------------- /pwndbg/color/telescope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/telescope.py -------------------------------------------------------------------------------- /pwndbg/color/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/color/theme.py -------------------------------------------------------------------------------- /pwndbg/commands/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/__init__.py -------------------------------------------------------------------------------- /pwndbg/commands/argv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/argv.py -------------------------------------------------------------------------------- /pwndbg/commands/aslr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/aslr.py -------------------------------------------------------------------------------- /pwndbg/commands/asm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/asm.py -------------------------------------------------------------------------------- /pwndbg/commands/auxv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/auxv.py -------------------------------------------------------------------------------- /pwndbg/commands/canary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/canary.py -------------------------------------------------------------------------------- /pwndbg/commands/checksec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/checksec.py -------------------------------------------------------------------------------- /pwndbg/commands/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/config.py -------------------------------------------------------------------------------- /pwndbg/commands/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/context.py -------------------------------------------------------------------------------- /pwndbg/commands/cpsr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/cpsr.py -------------------------------------------------------------------------------- /pwndbg/commands/defcon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/defcon.py -------------------------------------------------------------------------------- /pwndbg/commands/dt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/dt.py -------------------------------------------------------------------------------- /pwndbg/commands/dumpargs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/dumpargs.py -------------------------------------------------------------------------------- /pwndbg/commands/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/elf.py -------------------------------------------------------------------------------- /pwndbg/commands/gdbinit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/gdbinit.py -------------------------------------------------------------------------------- /pwndbg/commands/got.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/got.py -------------------------------------------------------------------------------- /pwndbg/commands/heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/heap.py -------------------------------------------------------------------------------- /pwndbg/commands/hexdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/hexdump.py -------------------------------------------------------------------------------- /pwndbg/commands/history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/history.py -------------------------------------------------------------------------------- /pwndbg/commands/ida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/ida.py -------------------------------------------------------------------------------- /pwndbg/commands/leakfind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/leakfind.py -------------------------------------------------------------------------------- /pwndbg/commands/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/misc.py -------------------------------------------------------------------------------- /pwndbg/commands/nearpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/nearpc.py -------------------------------------------------------------------------------- /pwndbg/commands/next.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/next.py -------------------------------------------------------------------------------- /pwndbg/commands/peda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/peda.py -------------------------------------------------------------------------------- /pwndbg/commands/pie.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/pie.py -------------------------------------------------------------------------------- /pwndbg/commands/probeleak.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/probeleak.py -------------------------------------------------------------------------------- /pwndbg/commands/procinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/procinfo.py -------------------------------------------------------------------------------- /pwndbg/commands/radare2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/radare2.py -------------------------------------------------------------------------------- /pwndbg/commands/reload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/reload.py -------------------------------------------------------------------------------- /pwndbg/commands/rop.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/rop.py -------------------------------------------------------------------------------- /pwndbg/commands/ropper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/ropper.py -------------------------------------------------------------------------------- /pwndbg/commands/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/search.py -------------------------------------------------------------------------------- /pwndbg/commands/segments.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/segments.py -------------------------------------------------------------------------------- /pwndbg/commands/shell.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/shell.py -------------------------------------------------------------------------------- /pwndbg/commands/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/stack.py -------------------------------------------------------------------------------- /pwndbg/commands/start.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/start.py -------------------------------------------------------------------------------- /pwndbg/commands/telescope.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/telescope.py -------------------------------------------------------------------------------- /pwndbg/commands/theme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/theme.py -------------------------------------------------------------------------------- /pwndbg/commands/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/version.py -------------------------------------------------------------------------------- /pwndbg/commands/vmmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/vmmap.py -------------------------------------------------------------------------------- /pwndbg/commands/windbg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/windbg.py -------------------------------------------------------------------------------- /pwndbg/commands/xinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/xinfo.py -------------------------------------------------------------------------------- /pwndbg/commands/xor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/commands/xor.py -------------------------------------------------------------------------------- /pwndbg/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/config.py -------------------------------------------------------------------------------- /pwndbg/constants/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/__init__.py -------------------------------------------------------------------------------- /pwndbg/constants/aarch64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/aarch64.py -------------------------------------------------------------------------------- /pwndbg/constants/alpha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/alpha.py -------------------------------------------------------------------------------- /pwndbg/constants/amd64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/amd64.py -------------------------------------------------------------------------------- /pwndbg/constants/arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/arm.py -------------------------------------------------------------------------------- /pwndbg/constants/constant.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/constant.py -------------------------------------------------------------------------------- /pwndbg/constants/i386.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/i386.py -------------------------------------------------------------------------------- /pwndbg/constants/ia64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/ia64.py -------------------------------------------------------------------------------- /pwndbg/constants/mips.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/mips.py -------------------------------------------------------------------------------- /pwndbg/constants/powerpc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/powerpc.py -------------------------------------------------------------------------------- /pwndbg/constants/powerpc64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/powerpc64.py -------------------------------------------------------------------------------- /pwndbg/constants/ptmalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/ptmalloc.py -------------------------------------------------------------------------------- /pwndbg/constants/s390.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/s390.py -------------------------------------------------------------------------------- /pwndbg/constants/s390x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/s390x.py -------------------------------------------------------------------------------- /pwndbg/constants/sparc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/sparc.py -------------------------------------------------------------------------------- /pwndbg/constants/sparc64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/sparc64.py -------------------------------------------------------------------------------- /pwndbg/constants/thumb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/constants/thumb.py -------------------------------------------------------------------------------- /pwndbg/ctypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/ctypes.py -------------------------------------------------------------------------------- /pwndbg/decorators.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/decorators.py -------------------------------------------------------------------------------- /pwndbg/disasm/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/disasm/__init__.py -------------------------------------------------------------------------------- /pwndbg/disasm/arch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/disasm/arch.py -------------------------------------------------------------------------------- /pwndbg/disasm/arm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/disasm/arm.py -------------------------------------------------------------------------------- /pwndbg/disasm/jump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/disasm/jump.py -------------------------------------------------------------------------------- /pwndbg/disasm/mips.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | -------------------------------------------------------------------------------- /pwndbg/disasm/ppc.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | -------------------------------------------------------------------------------- /pwndbg/disasm/sparc.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | # -*- coding: utf-8 -*- 3 | -------------------------------------------------------------------------------- /pwndbg/disasm/x86.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/disasm/x86.py -------------------------------------------------------------------------------- /pwndbg/dt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/dt.py -------------------------------------------------------------------------------- /pwndbg/elf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/elf.py -------------------------------------------------------------------------------- /pwndbg/elftypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/elftypes.py -------------------------------------------------------------------------------- /pwndbg/emu/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/emu/__init__.py -------------------------------------------------------------------------------- /pwndbg/emu/emulator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/emu/emulator.py -------------------------------------------------------------------------------- /pwndbg/emu/x86.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/emu/x86.py -------------------------------------------------------------------------------- /pwndbg/enhance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/enhance.py -------------------------------------------------------------------------------- /pwndbg/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/events.py -------------------------------------------------------------------------------- /pwndbg/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/exception.py -------------------------------------------------------------------------------- /pwndbg/file.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/file.py -------------------------------------------------------------------------------- /pwndbg/funcparser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/funcparser.py -------------------------------------------------------------------------------- /pwndbg/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/functions.py -------------------------------------------------------------------------------- /pwndbg/gcc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/gcc.py -------------------------------------------------------------------------------- /pwndbg/gdbutils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/gdbutils/__init__.py -------------------------------------------------------------------------------- /pwndbg/gdbutils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/gdbutils/functions.py -------------------------------------------------------------------------------- /pwndbg/heap/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/heap/__init__.py -------------------------------------------------------------------------------- /pwndbg/heap/dlmalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/heap/dlmalloc.py -------------------------------------------------------------------------------- /pwndbg/heap/heap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/heap/heap.py -------------------------------------------------------------------------------- /pwndbg/heap/ptmalloc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/heap/ptmalloc.py -------------------------------------------------------------------------------- /pwndbg/hexdump.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/hexdump.py -------------------------------------------------------------------------------- /pwndbg/ida.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/ida.py -------------------------------------------------------------------------------- /pwndbg/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/info.py -------------------------------------------------------------------------------- /pwndbg/inthook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/inthook.py -------------------------------------------------------------------------------- /pwndbg/jump/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/jump/__init__.py -------------------------------------------------------------------------------- /pwndbg/memoize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/memoize.py -------------------------------------------------------------------------------- /pwndbg/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/memory.py -------------------------------------------------------------------------------- /pwndbg/net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/net.py -------------------------------------------------------------------------------- /pwndbg/next.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/next.py -------------------------------------------------------------------------------- /pwndbg/proc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/proc.py -------------------------------------------------------------------------------- /pwndbg/prompt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/prompt.py -------------------------------------------------------------------------------- /pwndbg/qemu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/qemu.py -------------------------------------------------------------------------------- /pwndbg/regs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/regs.py -------------------------------------------------------------------------------- /pwndbg/remote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/remote.py -------------------------------------------------------------------------------- /pwndbg/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/search.py -------------------------------------------------------------------------------- /pwndbg/stack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/stack.py -------------------------------------------------------------------------------- /pwndbg/stdio.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/stdio.py -------------------------------------------------------------------------------- /pwndbg/strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/strings.py -------------------------------------------------------------------------------- /pwndbg/symbol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/symbol.py -------------------------------------------------------------------------------- /pwndbg/typeinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/typeinfo.py -------------------------------------------------------------------------------- /pwndbg/ui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/ui.py -------------------------------------------------------------------------------- /pwndbg/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/version.py -------------------------------------------------------------------------------- /pwndbg/vmmap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/vmmap.py -------------------------------------------------------------------------------- /pwndbg/which.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/which.py -------------------------------------------------------------------------------- /pwndbg/wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/wrappers/__init__.py -------------------------------------------------------------------------------- /pwndbg/wrappers/checksec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/wrappers/checksec.py -------------------------------------------------------------------------------- /pwndbg/wrappers/readelf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pwndbg/wrappers/readelf.py -------------------------------------------------------------------------------- /pytests_collect.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pytests_collect.py -------------------------------------------------------------------------------- /pytests_launcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/pytests_launcher.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/setup.sh -------------------------------------------------------------------------------- /tag_release.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tag_release.sh -------------------------------------------------------------------------------- /tests.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests.sh -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/binaries/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/__init__.py -------------------------------------------------------------------------------- /tests/binaries/emulate_disasm.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/emulate_disasm.asm -------------------------------------------------------------------------------- /tests/binaries/emulate_disasm.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/emulate_disasm.out -------------------------------------------------------------------------------- /tests/binaries/emulate_disasm_loop.asm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/emulate_disasm_loop.asm -------------------------------------------------------------------------------- /tests/binaries/emulate_disasm_loop.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/emulate_disasm_loop.out -------------------------------------------------------------------------------- /tests/binaries/gosample.x64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/gosample.x64.go -------------------------------------------------------------------------------- /tests/binaries/gosample.x86.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/gosample.x86.go -------------------------------------------------------------------------------- /tests/binaries/makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/makefile -------------------------------------------------------------------------------- /tests/binaries/old_bash/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/old_bash/__init__.py -------------------------------------------------------------------------------- /tests/binaries/old_bash/binary: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/old_bash/binary -------------------------------------------------------------------------------- /tests/binaries/old_bash/core: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/old_bash/core -------------------------------------------------------------------------------- /tests/binaries/reference-binary.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/reference-binary.c -------------------------------------------------------------------------------- /tests/binaries/reference-binary.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/binaries/reference-binary.out -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/test_emulate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/test_emulate.py -------------------------------------------------------------------------------- /tests/test_go.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/test_go.py -------------------------------------------------------------------------------- /tests/test_loads.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/test_loads.py -------------------------------------------------------------------------------- /tests/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/test_memory.py -------------------------------------------------------------------------------- /tests/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cebrusfs/217gdb/HEAD/tests/test_misc.py --------------------------------------------------------------------------------