Agent skill
opencrow-pwn-toolbox
Use the Anaconda `ctf` environment and installed exploit tooling for binary exploitation and runtime-debugging tasks. Use when Codex needs `pwntools`, `pwndbg`, `gdb`, `checksec`, `patchelf`, `qemu-user`, `pwninit`, or other pwn-focused helpers.
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/other/other/opencrow-pwn-toolbox
SKILL.md
OpenCROW Pwn Toolbox
Prefer the opencrow-pwn-mcp server for typed ELF triage, cyclic work, patching, and one-gadget search. Fall back to the direct scripts only when you need to debug the underlying ctf-environment execution path.
MCP First
- Use
toolbox_info,toolbox_verify, andtoolbox_capabilitiesfirst. - Use the typed pwn operations:
pwn_pythonpwn_checksecpwn_cyclicpwn_patch_binarypwn_one_gadget
- Treat the existing helper scripts as the implementation fallback, not the primary interface.
Use this skill for exploit development, ELF triage, debugger-heavy workflows, loader/libc patching, one-gadget hunting, and architecture-emulated pwn work in the ctf environment.
Quick Start
Run inline Python in ctf:
python ~/.codex/skills/opencrow-pwn-toolbox/scripts/run_pwn_python.py --code 'from pwn import *; print(cyclic(32))'
Run an exploit or helper script:
python ~/.codex/skills/opencrow-pwn-toolbox/scripts/run_pwn_python.py --file /absolute/path/to/exploit.py
Verify the mapped stack:
python ~/.codex/skills/opencrow-pwn-toolbox/scripts/verify_toolkit.py
Workflow
- Start here when the task is "get code execution" rather than "understand the binary."
- Triage the target with
checksec,file, and libc/loader metadata. - Use
pwntoolsfor scripting, local process control, remote sockets, packing, cyclic patterns, and ROP helpers. - Move into
gdborpwndbgonce the exploit depends on runtime state. - Read references/tooling.md when choosing between the debugger, patching, or emulation tools.
Tool Selection
- Use
pwntoolsfor exploit scripts, process or remote I/O, ELF inspection, cyclic patterns, and ROP chain construction. - Use
checksec,patchelf, andpwninitearly to understand or normalize the challenge runtime. - Use
gdbandpwndbgfor breakpoints, heap inspection, and exploit debugging. - Use
seccomp-toolswhen syscall filtering or sandboxing matters. - Use
one_gadgetwhen the libc version is known and you want fast candidate constraints for shell-spawning gadgets. - Use
qemu-userandqemu-user-staticwhen the shipped challenge binary is not native to the host architecture. - Use
gccandnasmfor shellcode stubs, helper binaries, or local harnesses.
Resources
scripts/run_pwn_python.py: execute inline code or a.pyfile inside thectfenvironment.scripts/verify_toolkit.py: confirm that the mapped Python and native pwn tools are installed.references/tooling.md: quick selection notes for exploit workflows.
Recommended Agent Skills
Expand your agent's capabilities with these related and highly-rated skills.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
agent-ops-spec
Manage specification documents in .agent/specs/. Use when user provides requirements, acceptance criteria, or feature descriptions that need to be tracked and validated against implementation.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-testing
Test strategy, execution, and coverage analysis. Use when designing tests, running test suites, or analyzing test results beyond baseline checks.
agent-ops-state
Maintain .agent state files. Use at session start, after meaningful steps, and before concluding: read/update constitution/memory/focus/issues/baseline consistently.
Didn't find tool you were looking for?