ワンクリックで
gdb-pwndbg
Use gdb and pwndbg for authorized binary debugging, crash triage, exploit development, and runtime inspection.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
メニュー
Use gdb and pwndbg for authorized binary debugging, crash triage, exploit development, and runtime inspection.
Codex または Claude でインストール この Prompt をコピーして Codex、Claude、または他のアシスタントに貼り付けると、Skill ページを確認してインストールできます。
Use agent-browser-cli to perceive and control the supervised Chrome browser inside the sandbox, interact with pages, capture screenshots/PDFs, inspect cookies/CDP/network/console state, and troubleshoot only when needed.
Use OWASP Amass for authorized asset discovery, domain enumeration, and DNS intelligence on in-scope targets.
Use apktool for authorized Android APK resource decoding, manifest review, smali inspection, rebuild checks, and static mobile artifact triage.
Use file, 7z, unzip, tar-compatible tools, hashes, and bounded shell inspection for safe triage of provided archives and unknown files.
Use binwalk for authorized firmware, binary blob, archive, filesystem, and embedded-content triage with bounded extraction and evidence handling.
Use the pwntools-provided checksec CLI for authorized ELF hardening review, mitigation checks, and binary triage evidence.
| name | gdb-pwndbg |
| description | Use gdb and pwndbg for authorized binary debugging, crash triage, exploit development, and runtime inspection. |
Use system gdb for stock debugging. Pwndbg is installed through uv against /usr/bin/python3, and /root/.gdbinit sources the installed Pwndbg gdbinit.py so the normal gdb entrypoint has Pwndbg available without bundling another debugger.
Before constructing commands, confirm the debugger entrypoints and Pwndbg integration:
gdb --help
command -v pwndbg
gdb -batch -ex 'python import pwndbg'
gdb for the system debugger entrypoint; use pwndbg when the wrapper command is more convenient.gdb, pwndbg, and /root/.gdbinit integration.checksec for the static mitigation baseline, strace/ltrace for runtime call traces, and pwntools for repeatable interaction or exploit scripts; do not treat them as debugger replacements.Open an interactive Pwndbg-enhanced GDB session:
gdb -q ./binary
Run a bounded crash triage in batch mode:
gdb -q ./binary -ex 'set pagination off' -ex 'run' -ex 'bt' -ex 'info registers' -batch
Use a command file for repeatable sessions:
gdb -q ./binary -x gdb-commands.txt
Attach only to authorized local processes:
gdb -q -p 1234
Pair debugger observations with checksec --file=./binary, controlled inputs, and saved crash artifacts.
Report the debugger used, command file or command line, binary path, key observations, crash state, registers/backtrace when relevant, and output paths.