Agent skill
protocol-fuzzer
Expert skill for protocol fuzzing, vulnerability discovery, and security testing
Install this agent skill to your Project
npx add-skill https://github.com/majiayu000/claude-skill-registry/tree/main/skills/data/protocol-fuzzer
SKILL.md
Protocol Fuzzer Skill
Expert skill for protocol fuzzing, vulnerability discovery, and security testing of network protocols.
Capabilities
- Fuzzer Configuration: Configure AFL++, libFuzzer, boofuzz, and Peach Fuzzer
- Mutation Strategy Design: Generate effective mutation strategies for different protocols
- Coverage Analysis: Analyze code coverage and crash reports
- Grammar Definition: Create protocol grammar definitions for structured fuzzing
- Vulnerability Detection: Detect crash patterns, memory corruption, and security vulnerabilities
- Test Case Generation: Generate reproducible test cases from fuzzing results
- Crash Triage: Analyze and deduplicate crash reports
- Security Reporting: Generate security vulnerability reports
Tools and Dependencies
AFL++- American Fuzzy Lop Plus PluslibFuzzer- LLVM-based in-process fuzzerboofuzz- Network protocol fuzzer (Sulley successor)Peach Fuzzer- Smart fuzzing frameworkradamsa- General-purpose fuzzerhonggfuzz- Security-oriented fuzzer
Target Processes
- protocol-fuzzer.js
- binary-protocol-parser.js
- network-testing-framework.js
Usage Examples
Boofuzz Protocol Fuzzing
from boofuzz import *
session = Session(target=Target(connection=TCPSocketConnection("127.0.0.1", 8080)))
s_initialize("HTTP Request")
s_string("GET", fuzzable=False)
s_delim(" ", fuzzable=False)
s_string("/", name="path")
s_static("\r\n\r\n")
session.connect(s_get("HTTP Request"))
session.fuzz()
AFL++ Instrumented Fuzzing
afl-fuzz -i input_corpus -o findings -M main -- ./target @@
afl-cov -d findings --coverage-cmd "./target AFL_FILE" --code-dir src/
Crash Analysis
afl-analyze -i crash_file -- ./target @@
Quality Gates
- Coverage threshold achieved
- No critical vulnerabilities found
- All crashes triaged
- Reproducible test cases generated
- Security report completed
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?