Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
jim60105 avatar

Api Security

  • 4 installs
  • 21 repo stars
  • Updated July 31, 2026
  • jim60105/copilot-prompt

Design, implement, and verify secure REST/GraphQL/gRPC APIs against the OWASP API Security Top 10 (2023), covering authz, rate limiting, and input validation.

About

A structured guide for building and auditing secure APIs across threat modeling, secure implementation, and verification against the OWASP API Security Top 10. A developer uses it to review API code for BOLA/BFLA/mass-assignment issues or harden an API's auth and validation.

  • Never/Instead table of critical API security rules
  • Covers OWASP API Top 10 with references and ZAP/Schemathesis testing

Api Security by the numbers

  • 4 all-time installs (skills.sh)
  • Ranked #1,738 of 2,203 Security skills by installs in the Skillselion catalog
  • Data as of Aug 2, 2026 (Skillselion catalog sync)
npx skills add https://github.com/jim60105/copilot-prompt --skill api-security

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs4
repo stars21
Last updatedJuly 31, 2026
Repositoryjim60105/copilot-prompt

What it does

Design, implement, and verify secure REST/GraphQL/gRPC APIs against the OWASP API Security Top 10 (2023), covering authz, rate limiting, and input validation.

Files

SKILL.mdMarkdownGitHub ↗

API Security Development Guide

Structured approach to building secure APIs, covering OWASP API Security Top 10 (2023), secure design patterns, and verification checklists. Apply these guidelines throughout the API development lifecycle — from threat modeling to deployment monitoring.

Secure API Development Lifecycle

Phase 1: API Threat Modeling and Design

  • Identify API attack surfaces: public endpoints, authenticated endpoints, admin endpoints, webhooks, third-party integrations
  • Map data flows: what sensitive data crosses each API boundary
  • Define authorization model: which users/roles access which resources and properties
  • Design security controls:
  • Centralized authentication (OAuth2/OIDC at API gateway)
  • Object-level authorization at data access layer
  • Schema-based input validation at every endpoint
  • Rate limiting per endpoint sensitivity
  • API versioning with deprecation strategy

Phase 2: Secure Implementation

Critical API Security Rules
NeverInstead
Return full objects (to_dict/to_json)Explicit response schemas with cherry-picked fields
Accept arbitrary fields for updateAllowlisted update schemas (prevent mass assignment)
Use sequential/guessable IDs in URLsUUIDs/GUIDs for resource identifiers
Trust object ID alone for accessCheck object ownership against authenticated user
Rely on client-side role checksServer-side RBAC/ABAC middleware
Accept unlimited query params/bodySchema validation with size/type/range limits
Skip rate limiting on any endpointRate limit ALL endpoints, stricter on auth/business flows
Return stack traces in errorsRFC 7807 Problem Details with generic messages
Trust third-party API responsesValidate and sanitize all external API data
Put API keys in URLsUse Authorization header or secure key vault
Use wildcard CORS with credentialsExplicit origin allowlist
Allow unlimited GraphQL depth/complexityQuery depth + complexity + batch limits

Reference detailed guides:

  • For OWASP API Top 10 with code examples: See references/owasp-api-top-10.md
  • For secure API design patterns: See references/secure-api-design.md

Phase 3: API Security Verification

1. Schema Validation — Lint OpenAPI spec for security issues (Spectral) 2. Static Analysis — Run SAST on API code (Semgrep, bandit) 3. Contract Testing — Verify API behavior matches spec (Schemathesis, Dredd) 4. Dynamic Testing — Run DAST against running API (OWASP ZAP, Burp Suite) 5. Authorization Testing — Test every endpoint with wrong user/role/anonymous 6. Rate Limit Testing — Verify all endpoints enforce limits 7. Code Review — Apply API security checklists

Reference: See references/api-security-checklist.md

Phase 4: Deployment and Monitoring

  • API gateway: auth offloading, rate limiting, request logging
  • TLS 1.2+ enforcement, HSTS, security headers
  • Structured logging (no tokens/PII in logs)
  • Anomaly detection and alerting on security events
  • API inventory management and version deprecation
  • Incident response plan for API breaches

OWASP API Security Top 10 (2023) Quick Reference

#RiskKey ConcernPrimary Prevention
API1Broken Object Level AuthorizationAccessing other users' resources by manipulating IDsObject ownership check at data layer, use GUIDs
API2Broken AuthenticationWeak auth, credential stuffing, JWT flawsOAuth2/OIDC, short-lived tokens, rate limit auth
API3Broken Object Property Level AuthorizationExcessive data exposure + mass assignmentExplicit response/request schemas, field allowlists
API4Unrestricted Resource ConsumptionNo rate/size/cost limits, GraphQL batchingRate limiting, pagination caps, spending alerts
API5Broken Function Level AuthorizationRegular users accessing admin functionsRBAC middleware, deny by default, test all roles
API6Unrestricted Access to Sensitive Business FlowsAutomating business-critical operations (scalping, spam)CAPTCHA, device fingerprinting, behavior analysis
API7Server Side Request ForgeryAPI fetches user-supplied URLsURL allowlisting, block private IPs, disable redirects
API8Security MisconfigurationMissing headers, CORS *, verbose errors, debug endpointsHardened defaults, security headers, minimal errors
API9Improper Inventory ManagementShadow APIs, deprecated versions, no documentationAPI inventory, OpenAPI in CI/CD, retirement plans
API10Unsafe Consumption of APIsTrusting third-party API data without validationValidate all external data, enforce TLS, set timeouts

For detailed attack scenarios and code examples: See references/owasp-api-top-10.md

API Security Review Workflow

Step-by-step procedure for reviewing API security:

1. Map the API surface — List all endpoints, methods, auth requirements, and data flows. Check for undocumented/shadow endpoints. 2. Check authentication — Verify every non-public endpoint requires valid authentication. Test with missing/expired/malformed tokens. 3. Check object-level authorization (BOLA) — For every endpoint accepting resource IDs, verify users can only access their own resources. 4. Check function-level authorization (BFLA) — Verify admin endpoints reject non-admin users. Test horizontal and vertical privilege escalation. 5. Check property-level authorization — Verify responses only include authorized fields. Test mass assignment by sending extra fields in updates. 6. Validate input handling — Check schema validation on all inputs. Test with oversized payloads, unexpected types, injection payloads. 7. Check rate limiting — Verify limits on all endpoints, especially auth, business-critical, and resource-intensive operations. 8. Check error handling — Verify no sensitive info in error responses. Test with invalid inputs, missing resources, server errors. 9. Review third-party integrations — Verify external API responses are validated. Check for SSRF in URL-accepting endpoints. 10. Check API inventory — Verify no deprecated/shadow endpoints are live. Check documentation matches reality. 11. Report findings — Severity (Critical/High/Medium/Low), endpoint, vulnerable request, explanation, fix with code example.

API Security Testing Quick Commands

# === OpenAPI Spec Linting ===
npm install -g @stoplight/spectral-cli && spectral lint openapi.yaml

# === Property-based API Testing ===
pip install schemathesis && schemathesis run --checks all http://localhost:8000/openapi.json

# === Dynamic Security Scanning ===
docker run -t ghcr.io/zaproxy/zaproxy:stable zap-api-scan.py -t http://target:8000/openapi.json -f openapi

# === API Fuzzing ===
# nuclei -u http://target:8000 -t api/

# === Static Analysis (Python API) ===
pip install bandit && bandit -r src/ -f json
pip install semgrep && semgrep --config=p/python --config=p/owasp-top-ten src/

Reference Files

  • [references/owasp-api-top-10.md](references/owasp-api-top-10.md) — Detailed OWASP API Security Top 10 (2023) with attack scenarios, vulnerable → secure code examples for REST and GraphQL APIs
  • [references/secure-api-design.md](references/secure-api-design.md) — Secure API design patterns: authentication (OAuth2, JWT, API keys, mTLS), authorization (RBAC/ABAC), input validation, rate limiting, CORS, error handling, API gateway, monitoring
  • [references/api-security-checklist.md](references/api-security-checklist.md) — Actionable checklists for API design review, auth, input validation, transport security, rate limiting, inventory, deployment, logging, and testing

Related skills

Securityappsecaudit

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.