用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/yv1ing/Z3r0 --skill gdb-pwndbg命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
Use ProjectDiscovery dnsx for authorized, small-batch DNS resolution, record lookup, and hostname validation at conservative rates.
Use ProjectDiscovery httpx for authorized, low-rate HTTP availability checks, response triage, and lightweight technology signals.
Use jadx for authorized Android APK, DEX, AAR, and JAR decompilation, app logic review, endpoint discovery, embedded-secret review, and mobile reverse engineering.
基于 SOC 职业分类
正在显示 SKILL.md
| 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.