Back to Skills

Fuzzing APIs

jeremylongshore
Updated Yesterday
13 views
712
74
712
View on GitHub
Metaaitestingapiautomationdesign

About

This skill enables Claude to automatically fuzz test APIs using malformed inputs and boundary values to uncover security vulnerabilities like SQL injection and XSS. Developers should use it when they need to perform security analysis or identify input validation failures in their APIs. It's triggered via the `/fuzz-api` command for comprehensive vulnerability scanning.

Quick Install

Claude Code

Recommended
Plugin CommandRecommended
/plugin add https://github.com/jeremylongshore/claude-code-plugins-plus
Git CloneAlternative
git clone https://github.com/jeremylongshore/claude-code-plugins-plus.git ~/.claude/skills/Fuzzing APIs

Copy and paste this command in Claude Code to install this skill

Documentation

Overview

This skill allows Claude to conduct automated fuzz testing on REST APIs. It identifies potential security flaws and robustness issues by injecting various malformed inputs, boundary values, and random data.

How It Works

  1. Input Generation: The skill generates a diverse set of test inputs, including malformed data, boundary values, and random payloads.
  2. API Interaction: It sends these inputs to the specified API endpoints.
  3. Result Analysis: It analyzes the API's responses and behavior to identify vulnerabilities, crashes, and unexpected results, such as SQL injection errors or XSS vulnerabilities.

When to Use This Skill

This skill activates when you need to:

  • Identify potential security vulnerabilities in an API.
  • Test the robustness of an API against unexpected inputs.
  • Ensure proper input validation is implemented in an API.

Examples

Example 1: Discovering SQL Injection Vulnerability

User request: "Fuzz test the /users endpoint for SQL injection vulnerabilities."

The skill will:

  1. Generate SQL injection payloads.
  2. Send these payloads to the /users endpoint.
  3. Analyze the API's responses for SQL errors or unexpected behavior indicating a SQL injection vulnerability.

Example 2: Testing Input Validation

User request: "Fuzz test the /products endpoint to check for input validation issues with price and quantity parameters."

The skill will:

  1. Generate malformed inputs for price and quantity (e.g., negative values, extremely large numbers, non-numeric characters).
  2. Send these inputs to the /products endpoint.
  3. Analyze the API's responses for errors or unexpected behavior, indicating input validation failures.

Best Practices

  • Specificity: Be specific about the API endpoint or parameters you want to fuzz.
  • Context: Provide context about the expected behavior of the API.
  • Iteration: Run multiple fuzzing sessions with different input sets for thorough testing.

Integration

This skill can be used in conjunction with other security analysis tools to provide a more comprehensive assessment of an API's security posture. It can also be integrated into a CI/CD pipeline to automate security testing.

GitHub Repository

jeremylongshore/claude-code-plugins-plus
Path: backups/plugin-enhancements/plugin-backups/api-fuzzer_20251019_154030/skills/skill-adapter
aiautomationclaude-codedevopsmarketplacemcp

Related Skills

sglang

Meta

SGLang is a high-performance LLM serving framework that specializes in fast, structured generation for JSON, regex, and agentic workflows using its RadixAttention prefix caching. It delivers significantly faster inference, especially for tasks with repeated prefixes, making it ideal for complex, structured outputs and multi-turn conversations. Choose SGLang over alternatives like vLLM when you need constrained decoding or are building applications with extensive prefix sharing.

View skill

evaluating-llms-harness

Testing

This Claude Skill runs the lm-evaluation-harness to benchmark LLMs across 60+ standardized academic tasks like MMLU and GSM8K. It's designed for developers to compare model quality, track training progress, or report academic results. The tool supports various backends including HuggingFace and vLLM models.

View skill

content-collections

Meta

This skill provides a production-tested setup for Content Collections, a TypeScript-first tool that transforms Markdown/MDX files into type-safe data collections with Zod validation. Use it when building blogs, documentation sites, or content-heavy Vite + React applications to ensure type safety and automatic content validation. It covers everything from Vite plugin configuration and MDX compilation to deployment optimization and schema validation.

View skill

llamaguard

Other

LlamaGuard is Meta's 7-8B parameter model for moderating LLM inputs and outputs across six safety categories like violence and hate speech. It offers 94-95% accuracy and can be deployed using vLLM, Hugging Face, or Amazon SageMaker. Use this skill to easily integrate content filtering and safety guardrails into your AI applications.

View skill