Install
$ agentstack add skill-02loveslollipop-opencrow-opencrow-pwn-toolbox ✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.
Security review
✓ PassedNo issues found. Passed automated security review. · v0.1.0 How review works →
- ✓ Prompt-injection patterns
- ✓ Secret / credential exfiltration
- ✓ Dangerous shell & filesystem operations
- ✓ Untrusted network calls
- ✓ Known-malicious package signatures
What it can access
- ✓ Network access No
- ✓ Filesystem access No
- ✓ Shell / process execution No
- ✓ Environment & secrets No
- ✓ Dynamic code execution No
From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.
Verified badge
Passed review? Show it. Paste this badge into your README, it links to the public security report.
Reliability & compatibility
Declared compatibility
Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.
We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.
How agent discovery & health will work →About
OpenCROW Pwn Toolbox
Runtime preflight
Probe required commands with command -v and Python modules with importlib.util.find_spec before use. Prefer a PATH-resolved OpenCROW MCP helper or the ctf/sage environment when available, then the managed helper or system Python. If a capability is missing, stop that path safely and report the exact missing command or module.
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:
python3 scripts/run_pwn_python.py --code 'from pwn import *; print(cyclic(32))'
Run an exploit or helper script:
python3 scripts/run_pwn_python.py --file /absolute/path/to/exploit.py
Verify the mapped stack:
python3 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](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.
Source & license
This open-source skill is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: 02loveslollipop
- Source: 02loveslollipop/OpenCROW
- License: Apache-2.0
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet, be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.