Install
$ agentstack add skill-02loveslollipop-opencrow-opencrow-network-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 Network 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.
Use this skill for network artifact work that spans both Python packet tooling and native capture or triage tools: scapy, tshark, tcpdump, nmap, nc, and socat.
Quick Start
Start the MCP server from the installed CLI:
opencrow-network-mcp
Run inline Python in ctf:
python3 scripts/run_network_python.py --code 'from scapy.all import IP, TCP; print((IP(dst=\"127.0.0.1\")/TCP(dport=31337)).summary())'
Run a packet helper:
python3 scripts/run_network_python.py --file /absolute/path/to/packets.py
Verify the mapped stack:
python3 scripts/verify_toolkit.py
Workflow
- Start with the MCP server and call
toolbox_info,toolbox_verify, andtoolbox_capabilities. - Use
network_pcap_inspectfirst when you already have a capture or need a quick filtered look at traffic. - Use
network_scanto map reachable services before deeper protocol work. - Use
network_socket_probefor one-shot TCP or UDP validation without opening a persistent async session. - Use
network_pythonfor Scapy-driven packet generation, decoding, or challenge-specific protocol logic. - Use
netcat-asyncorssh-asyncseparately when you need a long-lived interactive session rather than packet tooling. - Read [references/tooling.md](references/tooling.md) for quick guidance.
Tool Selection
- Use
scapyfor packet crafting, sniffing, protocol parsing, PCAP analysis, and challenge-specific dissectors. - Use
opencrow-network-mcpfirst for typed MCP access to capture inspection, scanning, probing, and Scapy execution. - Use
tsharkfor quick PCAP summaries, display filters, and protocol-aware decoding. - Use
tcpdumpfor capture creation and fast packet inspection from the shell. - Use
nmapfor host, port, and service discovery before deeper protocol analysis. - Use
ncorsocatfor quick socket experiments, port relays, or test servers. - Use plain Python socket code only when the task is simpler than full packet work.
- Use
netcat-asyncwhen the service is an interactive TCP stream and session persistence matters more than packet structure.
Resources
opencrow-network-mcp: stdio MCP server for typed PCAP inspection, scanning, socket probing, and Scapy execution.scripts/run_network_python.py: execute inline code or a.pyfile inside thectfenvironment.scripts/verify_toolkit.py: confirm thatscapyis available.references/tooling.md: quick selection notes for network 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.