gitextract_tg8j9h13/ ├── .editorconfig ├── .gitattributes ├── .github/ │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yaml │ │ └── feature_request.yaml │ ├── PULL_REQUEST_TEMPLATE.md │ ├── stale.yml │ ├── tests/ │ │ ├── entrypoint.sh │ │ ├── run-tests.sh │ │ └── setup-dockerfile.sh │ └── workflows/ │ ├── coverage.yml │ ├── extended-tests.yml │ ├── generate-docs.yml │ ├── notify.yml │ ├── tests.yml │ └── validate.yml ├── .gitignore ├── .pre-commit-config.yaml ├── .pylintrc ├── .python-version ├── .readthedocs.yml ├── LICENSE ├── README.md ├── docs/ │ ├── .markdownlint.yaml │ ├── api/ │ │ └── gef.md │ ├── api.md │ ├── commands/ │ │ ├── aliases.md │ │ ├── arch.md │ │ ├── aslr.md │ │ ├── canary.md │ │ ├── checksec.md │ │ ├── config.md │ │ ├── context.md │ │ ├── dereference.md │ │ ├── edit-flags.md │ │ ├── elf-info.md │ │ ├── entry-break.md │ │ ├── eval.md │ │ ├── format-string-helper.md │ │ ├── functions.md │ │ ├── gef-remote.md │ │ ├── gef.md │ │ ├── got.md │ │ ├── heap-analysis-helper.md │ │ ├── heap.md │ │ ├── help.md │ │ ├── hexdump.md │ │ ├── highlight.md │ │ ├── hijack-fd.md │ │ ├── memory.md │ │ ├── name-break.md │ │ ├── nop.md │ │ ├── patch.md │ │ ├── pattern.md │ │ ├── pcustom.md │ │ ├── pie.md │ │ ├── print-format.md │ │ ├── process-search.md │ │ ├── process-status.md │ │ ├── registers.md │ │ ├── reset-cache.md │ │ ├── scan.md │ │ ├── search-pattern.md │ │ ├── shellcode.md │ │ ├── skipi.md │ │ ├── stepover.md │ │ ├── stub.md │ │ ├── theme.md │ │ ├── tmux-setup.md │ │ ├── trace-run.md │ │ ├── version.md │ │ ├── vmmap.md │ │ ├── xfiles.md │ │ ├── xinfo.md │ │ └── xor-memory.md │ ├── compat.md │ ├── config.md │ ├── debugging.md │ ├── deprecated.md │ ├── faq.md │ ├── functions/ │ │ ├── base.md │ │ ├── bss.md │ │ ├── got.md │ │ ├── heap.md │ │ └── stack.md │ ├── index.md │ ├── install.md │ ├── obsolete/ │ │ ├── docs/ │ │ │ └── index.md │ │ ├── mkdocs.yml │ │ └── requirements.txt │ ├── requirements.txt │ ├── screenshots.md │ └── testing.md ├── gef.py ├── get-pip.py ├── mkdocs.yml ├── ruff.toml ├── scripts/ │ ├── gef-extras.sh │ ├── gef.sh │ ├── generate-api-docs.sh │ ├── generate-coverage-docs.sh │ ├── generate-settings-docs.sh │ ├── new-release.py │ ├── remote_debug.py │ └── vscode_debug.py └── tests/ ├── __init__.py ├── api/ │ ├── __init__.py │ ├── deprecated.py │ ├── gef_arch.py │ ├── gef_disassemble.py │ ├── gef_heap.py │ ├── gef_memory.py │ ├── gef_session.py │ └── misc.py ├── base.py ├── binaries/ │ ├── Makefile │ ├── bss.c │ ├── canary.c │ ├── checksec-no-canary.c │ ├── checksec-no-nx.c │ ├── checksec-no-pie.c │ ├── class.cpp │ ├── collision.c │ ├── default.c │ ├── format-string-helper.c │ ├── heap-analysis.c │ ├── heap-bins.c │ ├── heap-fastbins.c │ ├── heap-multiple-heaps.c │ ├── heap-non-main.c │ ├── heap-tcache.c │ ├── heap.c │ ├── memwatch.c │ ├── mmap-known-address.c │ ├── nested.c │ ├── nested2.c │ ├── pattern.c │ ├── pcustom.c │ └── utils.h ├── commands/ │ ├── __init__.py │ ├── aliases.py │ ├── arch.py │ ├── aslr.py │ ├── canary.py │ ├── checksec.py │ ├── context.py │ ├── dereference.py │ ├── edit_flags.py │ ├── elf_info.py │ ├── entry_break.py │ ├── format_string_helper.py │ ├── functions.py │ ├── gef.py │ ├── gef_remote.py │ ├── got.py │ ├── heap.py │ ├── heap_analysis.py │ ├── hexdump.py │ ├── highlight.py │ ├── hijack_fd.py │ ├── memory.py │ ├── name_break.py │ ├── nop.py │ ├── patch.py │ ├── pattern.py │ ├── pcustom.py │ ├── pie.py │ ├── print_format.py │ ├── process_search.py │ ├── process_status.py │ ├── registers.py │ ├── reset_cache.py │ ├── scan.py │ ├── search_pattern.py │ ├── shellcode.py │ ├── skipi.py │ ├── smart_eval.py │ ├── stepover.py │ ├── stub.py │ ├── theme.py │ ├── trace_run.py │ ├── version.py │ ├── vmmap.py │ ├── xfiles.py │ ├── xinfo.py │ └── xor_memory.py ├── config/ │ └── __init__.py ├── extended/ │ ├── archlinux.sh │ ├── debian.sh │ ├── fedora.sh │ └── run_pytest.sh ├── functions/ │ ├── __init__.py │ └── elf_sections.py ├── perf/ │ ├── __init__.py │ └── benchmark.py ├── pytest.ini ├── regressions/ │ ├── __init__.py │ ├── filename_collision_lookup.py │ ├── gdbserver_connection.py │ └── registers_register_order.py ├── requirements.txt ├── scripts/ │ ├── __init__.py │ └── test_gef.py └── utils.py