Expert skill for protocol fuzzing, vulnerability discovery, and security testing
Generates and executes protocol fuzzing tests to discover security vulnerabilities in network services.
npx claudepluginhub a5c-ai/babysitterThis skill is limited to using the following tools:
README.mdExpert skill for protocol fuzzing, vulnerability discovery, and security testing of network protocols.
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 fuzzerfrom 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-fuzz -i input_corpus -o findings -M main -- ./target @@
afl-cov -d findings --coverage-cmd "./target AFL_FILE" --code-dir src/
afl-analyze -i crash_file -- ./target @@
Activates when the user asks about AI prompts, needs prompt templates, wants to search for prompts, or mentions prompts.chat. Use for discovering, retrieving, and improving prompts.
Search, retrieve, and install Agent Skills from the prompts.chat registry using MCP tools. Use when the user asks to find skills, browse skill catalogs, install a skill for Claude, or extend Claude's capabilities with reusable AI agent components.
This skill should be used when the user asks to "create an agent", "add an agent", "write a subagent", "agent frontmatter", "when to use description", "agent examples", "agent tools", "agent colors", "autonomous agent", or needs guidance on agent structure, system prompts, triggering conditions, or agent development best practices for Claude Code plugins.