api
This skill should be used when the user asks to "check API security", "audit REST API", "find BOLA vulnerabilities", "check for mass assignment", "analyze API rate limiting", "detect excessive data exposure", or mentions "API security", "BOLA", "IDOR", "mass assignment", "rate limiting", "broken function-level authorization", "excessive data exposure", or "OWASP API Top 10" in a security context.
What this skill does
# API Security (API) Analyze REST and RPC APIs for security vulnerabilities aligned with the OWASP API Security Top 10, including Broken Object-Level Authorization (BOLA), mass assignment, missing rate limiting, broken function-level authorization, and excessive data exposure. API-specific vulnerabilities arise from the unique patterns of programmatic access, where client-side UI constraints do not apply. ## Supported Flags Read `../../shared/schemas/flags.md` for the full flag specification. This skill supports all cross-cutting flags. Key flags for this skill: - `--scope` determines which files to analyze (default: `changed`) - `--depth standard` reads code and checks API endpoint handlers - `--depth deep` traces data from request to database to response serialization - `--severity` filters output (API issues are often `high` or `critical`) ## Framework Context Key CWEs in scope: - CWE-639: Authorization Bypass Through User-Controlled Key (BOLA) - CWE-915: Improperly Controlled Modification of Dynamically-Determined Object Attributes - CWE-770: Allocation of Resources Without Limits (rate limiting) - CWE-862: Missing Authorization (function-level auth) - CWE-200: Exposure of Sensitive Information (excessive data) OWASP API Security Top 10 (2023) categories: - API1:2023 Broken Object-Level Authorization - API2:2023 Broken Authentication - API3:2023 Broken Object Property-Level Authorization - API4:2023 Unrestricted Resource Consumption - API5:2023 Broken Function-Level Authorization ## Detection Patterns Read `references/detection-patterns.md` for the full catalog of code patterns, search heuristics, language-specific examples, and false positive guidance. ## Workflow ### 1. Determine Scope Parse flags and resolve the file list per `../../shared/schemas/flags.md`. Filter to files likely to contain API logic: - Route/endpoint definitions (`**/routes/**`, `**/api/**`, `**/endpoints/**`) - Controllers and handlers (`**/controllers/**`, `**/handlers/**`, `**/views/**`) - Serializers and DTOs (`**/serializers/**`, `**/dto/**`, `**/schemas/**`) - Middleware (`**/middleware/**`, `**/middlewares/**`) - Rate limiting configuration (`**/config/**`, `**/limiters/**`) ### 2. Check for Available Scanners Detect scanners per `../../shared/schemas/scanners.md`: 1. `semgrep` -- primary scanner for API patterns 2. `bandit` -- Python API security issues 3. `brakeman` -- Rails API vulnerabilities Record which scanners are available and which are missing. ### 3. Run Scanners (If Available) If semgrep is available, run with rules targeting API security: ``` semgrep scan --config auto --json --quiet <target> ``` Filter results to rules matching BOLA, mass assignment, authorization, and data exposure patterns. Normalize output to the findings schema. ### 4. Claude Code Analysis Regardless of scanner availability, perform manual code analysis: 1. **BOLA audit**: Find API endpoints that accept resource IDs and verify each enforces ownership or authorization before returning/modifying data. 2. **Mass assignment**: Find endpoints that accept request bodies and bind them directly to models without explicit field allowlisting. 3. **Rate limiting**: Check for rate limiting middleware on authentication endpoints, data-intensive endpoints, and mutation endpoints. 4. **Function-level authorization**: Verify admin/privileged endpoints have role-based authorization, not just authentication. 5. **Excessive data exposure**: Check API responses for fields that should not be exposed (passwords, internal IDs, sensitive user data). When `--depth deep`, additionally trace: - Full request-to-response data flow including serialization - Authorization middleware chains across all API routes - Rate limiting configuration and bypass scenarios ### 5. Report Findings Format output per `../../shared/schemas/findings.md` using the `API` prefix (e.g., `API-001`, `API-002`). Include for each finding: - Severity and confidence - Exact file location with code snippet - OWASP API Top 10 reference - Concrete fix with diff when possible - CWE references ## What to Look For These are the high-signal patterns specific to API security. Each maps to a detection pattern in `references/detection-patterns.md`. 1. **Broken Object-Level Authorization (BOLA)** -- API endpoints accept a resource ID from the client and return data without verifying the requesting user owns or is authorized to access that resource. 2. **Mass assignment** -- Request body fields are bound directly to database model attributes, allowing attackers to set fields they should not control (role, price, isAdmin). 3. **Missing rate limiting** -- API endpoints lack rate limiting, allowing brute-force attacks on authentication, enumeration, and resource exhaustion. 4. **Broken function-level authorization** -- Admin or privileged API endpoints are accessible to regular users because they check authentication but not authorization role/permissions. 5. **Excessive data exposure** -- API responses include sensitive fields (password hashes, tokens, internal metadata) that the client does not need. 6. **Missing input validation** -- API endpoints accept unbounded inputs (no max length, no type validation) enabling injection and resource abuse. ## Scanner Integration | Scanner | Coverage | Command | |---------|----------|---------| | semgrep | BOLA, mass assignment, missing auth | `semgrep scan --config auto --json --quiet <target>` | | bandit | Python API security patterns | `bandit -r <target> -f json -q` | | brakeman | Rails mass assignment, authorization | `brakeman -q -f json -o /dev/stdout` | **Fallback (no scanner)**: Use Grep with patterns from `references/detection-patterns.md` to find API route definitions, model binding, rate limiting config, and response serialization. Report findings with `confidence: medium`. ## Output Format Use the findings schema from `../../shared/schemas/findings.md`. - **ID prefix**: `API` (e.g., `API-001`) - **metadata.tool**: `api` - **metadata.framework**: `api` - **metadata.category**: `API` - **references.api_top10**: `API1:2023`, `API3:2023`, etc. - **references.cwe**: `CWE-639`, `CWE-915`, `CWE-770` - **references.stride**: `I` (Information Disclosure) or `E` (Elevation of Privilege) Severity guidance for this category: - **critical**: BOLA on sensitive data (financial, medical, PII), mass assignment on role/privilege fields - **high**: BOLA on user-scoped data, missing auth on admin endpoints, mass assignment on price/status - **medium**: Missing rate limiting on auth endpoints, excessive data exposure of non-critical fields - **low**: Minor data over-exposure, rate limit too generous but present
Related in Backend & APIs
jfrog
IncludedInteract with the JFrog Platform via the JFrog CLI and REST/GraphQL APIs. Use this skill when the user wants to manage Artifactory repositories, upload or download artifacts, manage builds, configure permissions, manage users and groups, work with access tokens, configure JFrog CLI servers, search artifacts, manage properties, set up replication, manage JFrog Projects, run security audits or scans, look up CVE details, query exposures scan results from JFrog Advanced Security, manage release bundles and lifecycle operations, aggregate or export platform data, or perform any JFrog Platform administration task. Also use when the user mentions jf, jfrog, artifactory, xray, distribution, evidence, apptrust, onemodel, graphql, workers, mission control, curation, advanced security, exposures, or any JFrog product name.
cupynumeric-migration-readiness
IncludedPre-migration readiness assessor for porting NumPy to cuPyNumeric. Use BEFORE substantial porting work begins when the user asks whether code will scale on GPU, whether they should migrate to cuPyNumeric, which NumPy patterns transfer cleanly, what must be refactored before porting, or mentions pre-port assessment, scaling analysis, or refactor planning. Inspect the user's source code, look up NumPy usage, cross-reference the cuPyNumeric API support manifest, and distinguish distributed-scaling-friendly patterns from blockers such as unsupported APIs, scalar synchronization, host round-trips, Python/object-heavy control flow, shape/data-dependent branching, and in-place mutation hazards. Produce a verdict of READY, LIGHT REFACTOR, SIGNIFICANT REFACTOR, or NOT RECOMMENDED, with concrete refactor pointers.
alibabacloud-data-agent-skill
IncludedInvoke Alibaba Cloud Apsara Data Agent for Analytics via CLI to perform natural language-driven data analysis on enterprise databases. Data Agent for Analytics is an intelligent data analysis agent developed by Alibaba Cloud Database team for enterprise users. It automatically completes requirement analysis, data understanding, analysis insights, and report generation based on natural language descriptions. This tool supports: discovering data resources (instances/databases/tables) managed in DMS, initiating query or deep analysis sessions, real-time progress tracking, and retrieving analysis conclusions and generated reports. Use this Skill when users need to query databases, analyze data trends, generate data reports, ask questions in natural language, or mention "Data Agent", "data analysis", "database query", "SQL analysis", "data insights".
token-optimizer
IncludedReduce OpenClaw token usage and API costs through smart model routing, heartbeat optimization, budget tracking, and native 2026.2.15 features (session pruning, bootstrap size limits, cache TTL alignment). Use when token costs are high, API rate limits are being hit, or hosting multiple agents at scale. The 4 executable scripts (context_optimizer, model_router, heartbeat_optimizer, token_tracker) are local-only — no network requests, no subprocess calls, no system modifications. Reference files (PROVIDERS.md, config-patches.json) document optional multi-provider strategies that require external API keys and network access if you choose to use them. See SECURITY.md for full breakdown.
resend-cli
IncludedUse this skill when the task is specifically about operating Resend from an AI agent, terminal session, or CI job via the official resend CLI: installing/authenticating the CLI, sending/listing/updating/cancelling emails, batch sends, domains and DNS, webhooks and local listeners, inbound receiving, contacts, topics, segments, broadcasts, templates, API keys, profiles, or debugging Resend CLI/API failures. Trigger on mentions of Resend CLI, `resend`, `resend doctor`, `resend emails send`, `resend domains`, `resend webhooks listen`, `resend emails receiving`, or agent-friendly terminal automation.
alibabacloud-odps-maxframe-coding
IncludedUse this skill for MaxFrame SDK development and documentation navigation on Alibaba Cloud MaxCompute (ODPS). Helps answer MaxFrame API, concept, official example, and supported pandas API questions; create data processing programs; read/write MaxCompute tables; debug jobs (remote or local); and build custom DPE runtime images. Trigger when users mention MaxFrame, MaxCompute with MaxFrame, ODPS table processing, DPE runtime, MaxFrame docs/examples, DataFrame/Tensor operations, or GPU runtime setup. Works for both English and Chinese queries about Alibaba Cloud data processing with MaxFrame.