library/specializations/network-programming/skills/protocol-fuzzer/SKILL.md
Expert skill for protocol fuzzing, vulnerability discovery, and security testing
npx skillsauth add a5c-ai/babysitter protocol-fuzzerInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
Expert 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 @@
development
Model documentation skill for generating model cards following Google's model card framework.
development
MLflow integration skill for experiment tracking, model registry, and artifact management. Enables LLMs to log experiments, compare runs, manage model lifecycle, and retrieve artifacts through the MLflow API.
data-ai
LIME-based local explanation skill for individual predictions across tabular, text, and image data.
devops
Kubeflow Pipelines skill for ML workflow orchestration, component management, and Kubernetes-native ML.