opencrow-pwn-toolbox

opencrow-pwn-toolbox is a skill for Claude Code, Codex from 02loveslollipop/OpenCROW. It costs 82 tokens per session (809 once invoked), scanned A, original, Apache-2.0.

A toolkit for binary exploitation, which means finding and testing weaknesses in compiled programs, and runtime debugging. It checks for tools such as pwntools, gdb, pwndbg, checksec, patchelf, qemu-user, and pwninit before using them.

In plain words
What is it for?
Use it for exploit development, ELF file checks, debugger-led work, library or program-loader patching, one-gadget searches, and architecture-emulated tasks.
Why use it?
It removes the need to manually find the right Python environment and confirm that required security tools are installed.

Skill for Claude CodeCodex

Written for no agent in particular: nothing here depends on one.

Good fit Use it for exploit development, ELF file checks, debugger-led work, library or program-loader patching, one-gadget searches, and architecture-emulated tasks.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/02loveslollipop/opencrow/opencrow-pwn-toolbox
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add 02loveslollipop/OpenCROW --skill opencrow-pwn-toolbox
Clone the repo
git clone --depth 1 https://github.com/02loveslollipop/OpenCROW

Made for: Claude Code, Codex.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for opencrow-pwn-toolbox

README.md
[![agentmods](https://agentmods.dev/badge/skills/02loveslollipop/opencrow/opencrow-pwn-toolbox/github.svg)](https://agentmods.dev/skills/02loveslollipop/opencrow/opencrow-pwn-toolbox)
Your own site
<a href="https://agentmods.dev/skills/02loveslollipop/opencrow/opencrow-pwn-toolbox"><img src="https://agentmods.dev/badge/skills/02loveslollipop/opencrow/opencrow-pwn-toolbox/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for opencrow-pwn-toolbox

Your own site · 80×15
<a href="https://agentmods.dev/skills/02loveslollipop/opencrow/opencrow-pwn-toolbox"><img src="https://agentmods.dev/badge/skills/02loveslollipop/opencrow/opencrow-pwn-toolbox.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 82 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 809 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 0 findings. A grade says what 26 rules found in the file — not that it is safe. Third-party audits
  • NVIDIA SkillSpector warn 7 Sept 2026
SkillSpector: 1 finding, up to high

These are SkillSpector’s own severities. On a checked sample its high-severity flags on skills were ~96% false positives — a documented command, a public API, a “never do X” rule — so we show them as a caution to read, not a verdict. Why →

  • high YARA Match · line 32
    YARA rule matched a hack tool or exploit indicator (offensive tools, reconnaissance, privilege escalation, or exploit frameworks).
    Fix: Remove offensive tool references and exploit code. Legitimate agent skills should not contain penetration testing tools, exploit frameworks, or reconnaissance utilities.
How audits are shown
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00082 $0.00809
Opus 5 $0.00041 $0.00404
Sonnet 5 $0.00016 $0.00162
Haiku 4.5 $0.00008 $0.00081

Measured 10d ago against content hash 54da754db628, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

opencrow-pwn-toolbox scanned grade A with 0 findings against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 10d ago.

The scan reads SKILL.md. This mod also ships 2 executable files (scripts/run_pwn_python.py, scripts/verify_toolkit.py), listed below but not scanned — reading those needs a real analyzer, not pattern matching.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Nothing flagged

None of the 26 patterns this scan looks for appear in this file: no shell pipes, no recursive deletes, no credential paths, no hidden text, no instruction-override or anti-refusal phrasing, no agent-config snooping. That is not a guarantee, it is the absence of the things that are checkable.

skills/opencrow-pwn-toolbox/SKILL.md · 70 lines

How it starts

The opening of the file, as written. The whole thing — 70 lines — stays where its author put it; the contents beside it link to each section on GitHub.

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, and toolbox_capabilities first.
  • Use the typed pwn operations:
    • pwn_python
    • pwn_checksec
    • pwn_cyclic
    • pwn_patch_binary
    • pwn_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

  1. Start here when the task is "get code execution" rather than "understand the binary."
  2. Triage the target with checksec, file, and libc/loader metadata.
  3. Use pwntools for scripting, local process control, remote sockets, packing, cyclic patterns, and ROP helpers.
  4. Move into gdb or pwndbg once the exploit depends on runtime state.
  5. Read references/tooling.md when choosing between the debugger, patching, or emulation tools.

Tool Selection

  • Use pwntools for exploit scripts, process or remote I/O, ELF inspection, cyclic patterns, and ROP chain construction.
  • Use checksec, patchelf, and pwninit early to understand or normalize the challenge runtime.
  • Use gdb and pwndbg for breakpoints, heap inspection, and exploit debugging.
  • Use seccomp-tools when syscall filtering or sandboxing matters.
  • Use one_gadget when the libc version is known and you want fast candidate constraints for shell-spawning gadgets.
  • Use qemu-user and qemu-user-static when the shipped challenge binary is not native to the host architecture.
  • Use gcc and nasm for shellcode stubs, helper binaries, or local harnesses.

Read the full file on GitHub · 70 lines

Files

What ships with it

3 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 10d ago First seen · 70 lines · 82 tokens per session scan A 54da754db628

Subscribe to this mod's changes

opencrow-pwn-toolbox is a skill published in the GitHub repository 02loveslollipop/OpenCROW (8 stars, last pushed 4d ago), licensed Apache-2.0. It adds 82 tokens to every session and 809 once invoked, about $0.0004 per session on Opus 5. A static security scan graded it A with 0 findings. No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.