SC

scanning-api-security

Automates the identification of API vulnerabilities based on the OWASP API Security Top 10.

Install

mkdir -p .claude/skills/scanning-api-security && curl -L -o skill.zip "https://agentskills.codes/api/skills/download/3838" && unzip -o skill.zip -d .claude/skills/scanning-api-security && rm skill.zip

Installs to .claude/skills/scanning-api-security

Activation

This is the description your AI agent reads to decide when to run this skill — the better it matches your request, the more reliably it fires.

Detect API security vulnerabilities including injection, broken auth,
69 charsno explicit “when” trigger
Advanced

Key capabilities

  • Scan API endpoint implementations
  • Audit authentication middleware
  • Check for Broken Object Level Authorization (BOLA)
  • Identify excessive data exposure
  • Detect mass assignment vulnerabilities
  • Verify input validation

How it works

This skill detects API security vulnerabilities by scanning route definitions, middleware, and data handling against OWASP API Security Top 10, identifying issues like injection, broken authentication, and data exposure.

Inputs & outputs

You give it
API source code, OpenAPI specification
You get back
Machine-readable and human-readable vulnerability reports, endpoint-to-auth-middleware mapping, data-exposure audit, inline code comments

When to use scanning-api-security

  • Auditing API route middleware
  • Scanning for injection vulnerabilities
  • Verifying authentication enforcement
  • Checking against OWASP API Security Top 10

About this skill

Scanning API Security

Overview

Detect API security vulnerabilities by scanning endpoint implementations, authentication flows, and data handling against the OWASP API Security Top 10. Identify injection vectors, broken authentication, excessive data exposure, mass assignment, and missing rate limiting through static analysis of route handlers, middleware chains, and request validation logic.

Prerequisites

  • API source code with route definitions and controller/handler implementations accessible
  • OpenAPI specification for cross-referencing documented vs. implemented security controls
  • OWASP API Security Top 10 (2023) checklist familiarity
  • Security scanning tools: OWASP ZAP, Burp Suite, or nuclei for dynamic testing
  • Dependency vulnerability scanner: npm audit, safety (Python), or govulncheck

Instructions

  1. Scan all route definitions using Grep to build a complete inventory of endpoints, HTTP methods, and middleware chains applied to each route.
  2. Audit authentication middleware to verify every mutation endpoint (POST, PUT, PATCH, DELETE) has auth enforcement and that no endpoints accidentally bypass auth through route ordering.
  3. Check for Broken Object Level Authorization (BOLA) by verifying that resource access checks compare the authenticated user's ID/role against the requested resource ownership, not just valid authentication.
  4. Identify excessive data exposure by comparing response serialization against API contracts -- flag endpoints returning full database records instead of explicit field whitelists.
  5. Detect mass assignment vulnerabilities by checking whether request bodies are passed directly to ORM create/update calls without field-level allowlisting.
  6. Verify input validation exists on all request parameters, query strings, headers, and body fields, checking for SQL injection, NoSQL injection, and command injection patterns.
  7. Audit rate limiting configuration to ensure all public-facing and authentication endpoints have per-IP and per-user rate limits applied.
  8. Check security headers (CORS, CSP, HSTS, X-Content-Type-Options) and verify CORS Access-Control-Allow-Origin is not set to wildcard * on authenticated endpoints.
  9. Scan dependencies for known CVEs and generate a prioritized remediation report with severity ratings and fix recommendations.

See ${CLAUDE_SKILL_DIR}/references/implementation.md for the full implementation guide.

Output

  • ${CLAUDE_SKILL_DIR}/reports/security-scan.json - Machine-readable vulnerability report with severity ratings
  • ${CLAUDE_SKILL_DIR}/reports/security-scan.md - Human-readable report with remediation guidance
  • ${CLAUDE_SKILL_DIR}/reports/endpoint-auth-matrix.md - Endpoint-to-auth-middleware mapping table
  • ${CLAUDE_SKILL_DIR}/reports/data-exposure-audit.md - Fields returned vs. fields documented per endpoint
  • Inline code comments marking identified vulnerabilities with // SECURITY: annotations

Error Handling

ErrorCauseSolution
False positive on auth bypassRoute uses custom auth decorator not recognized by scannerAdd custom auth patterns to scanner configuration; document non-standard auth middleware
BOLA not detectedAuthorization check exists but uses flawed comparison logicManually review ownership checks; verify tenant isolation in multi-tenant queries
Injection false negativeParameterized queries mask injection in string-built sub-queriesScan for raw SQL concatenation patterns alongside ORM usage; check dynamic query builders
CORS misconfiguration missedCORS configured at reverse proxy level, not in application codeExtend scan to include nginx/Apache config files and cloud provider CORS settings
Dependency scan timeoutLarge dependency tree with many transitive dependenciesRun dependency scan in parallel; cache vulnerability database locally

Refer to ${CLAUDE_SKILL_DIR}/references/errors.md for comprehensive error patterns.

Examples

OWASP Top 10 audit: Scan a Node.js Express API against all 10 OWASP API Security categories, generating a compliance matrix showing pass/fail/warning status for each category with specific file:line references.

Pre-deployment gate: Integrate security scan into CI pipeline that blocks deployment if any Critical or High severity findings are detected, while allowing Medium/Low with documented exceptions.

Authentication flow review: Trace the complete auth flow from login through token issuance, refresh, and revocation, identifying token lifetime issues, missing refresh rotation, and insecure token storage patterns.

See ${CLAUDE_SKILL_DIR}/references/examples.md for additional examples.

Resources

Prerequisites

API source code with route definitions and controller/handler implementations accessibleOpenAPI specification for cross-referencing documented vs. implemented security controlsOWASP API Security Top 10 (2023) checklist familiaritySecurity scanning tools: OWASP ZAP, Burp Suite, or nuclei for dynamic testing

Limitations

  • False positive on auth bypass due to custom auth decorators
  • BOLA not detected if authorization check uses flawed comparison logic
  • Injection false negative if parameterized queries mask injection in string-built sub-queries

How it compares

This skill provides a structured approach to API security auditing using static analysis and specific checks against OWASP API Security Top 10, unlike general code reviews.

Compared to similar skills

scanning-api-security side by side with the closest alternatives in the catalog.

SkillInstallsUpdatedSafetyDifficulty
scanning-api-security (this skill)226dReviewAdvanced
api-security-best-practices156moReviewIntermediate
api-security-testing17moReviewAdvanced
openrouter-data-privacy026dReviewIntermediate

Try saying

Example prompts that trigger this skill in your AI assistant.

More by jeremylongshore

View all by jeremylongshore

analyzing-logs

jeremylongshore

Analyze application logs to detect performance issues, identify error patterns, and improve stability by extracting key insights.

14123

ollama-setup

jeremylongshore

Configure auto-configure Ollama when user needs local LLM deployment, free AI alternatives, or wants to eliminate hosted API costs. Trigger phrases: "install ollama", "local AI", "free LLM", "self-hosted AI", "replace OpenAI", "no API costs". Use when appropriate context detected. Trigger with relevant phrases based on skill purpose.

1167

backtesting-trading-strategies

jeremylongshore

Backtest crypto and traditional trading strategies against historical data. Calculates performance metrics (Sharpe, Sortino, max drawdown), generates equity curves, and optimizes strategy parameters. Use when user wants to test a trading strategy, validate signals, or compare approaches. Trigger with phrases like "backtest strategy", "test trading strategy", "historical performance", "simulate trades", "optimize parameters", or "validate signals".

1071

generating-database-seed-data

jeremylongshore

Process this skill enables AI assistant to generate realistic test data and database seed scripts for development and testing environments. it uses faker libraries to create realistic data, maintains relational integrity, and allows configurable data volumes. u... Use when working with databases or data models. Trigger with phrases like 'database', 'query', or 'schema'.

1033

cursor-codebase-indexing

jeremylongshore

Execute set up and optimize Cursor codebase indexing. Triggers on "cursor index setup", "codebase indexing", "index codebase", "cursor semantic search". Use when working with cursor codebase indexing functionality. Trigger with phrases like "cursor codebase indexing", "cursor indexing", "cursor".

885

testing-mobile-apps

jeremylongshore

Execute mobile app testing on iOS and Android devices/simulators. Use when performing specialized testing. Trigger with phrases like "test mobile app", "run iOS tests", or "validate Android functionality".

810

You might also like

api-security-best-practices

davila7

Implement secure API design patterns including authentication, authorization, input validation, rate limiting, and protection against common API vulnerabilities

1554

api-security-testing

Ed1s0nZ

API安全测试的专业技能和方法论

18

openrouter-data-privacy

jeremylongshore

Implement data privacy controls for OpenRouter requests. Use when handling PII or meeting compliance requirements. Trigger with phrases like 'openrouter privacy', 'openrouter pii', 'openrouter gdpr', 'openrouter data protection'.

05

apollo-security-basics

jeremylongshore

Apply Apollo.io API security best practices. Use when securing Apollo integrations, managing API keys, or implementing secure data handling. Trigger with phrases like "apollo security", "secure apollo api", "apollo api key security", "apollo data protection".

13

perplexity-enterprise-rbac

jeremylongshore

Configure Perplexity enterprise SSO, role-based access control, and organization management. Use when implementing SSO integration, configuring role-based permissions, or setting up organization-level controls for Perplexity. Trigger with phrases like "perplexity SSO", "perplexity RBAC", "perplexity enterprise", "perplexity roles", "perplexity permissions", "perplexity SAML".

04

webhook-security

dadbodgeoff

Implement secure webhook handling with signature verification, replay protection, and idempotency. Use when receiving webhooks from third-party services like Stripe, GitHub, Twilio, or building your own webhook system.

12

Search skills

Search the agent skills registry