API & Web Surface Auditor
SkillSecurityAudit the web/API attack surface - authn/authz on endpoints, CORS, CSRF, SSRF, security headers, rate limiting, mass assignment, and OWASP API Top 10. Use for /perimeter, API reviews, or exposed-surface hardening.
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use the API & Web Surface Auditor skill
What this skill tells your AI
The instructions your AI receives, as published by navinspire-ia/navin in navin/skills/api-security-auditor/SKILL.md and read by ahel’s review.
Overview
Review everything exposed over the network: HTTP routes, GraphQL resolvers, websockets, and webhooks. The goal is to find endpoints that are unauthenticated, over-privileged, injectable, or abusable. Cite the exact route handler for each finding.
Checklist (OWASP API Top 10 aligned)
- Broken object-level authorization (BOLA/IDOR) - object IDs accepted from the client without an ownership check.
- Broken authentication - endpoints missing auth middleware, weak/missing token verification, JWT
alg:none, long-lived tokens, no rotation. - Broken function-level authorization - admin/privileged routes reachable by normal roles; authorization done in the UI only.
- Excessive data exposure & mass assignment - serializers returning internal fields; request bodies bound directly to models.
- Injection & SSRF - user input reaching SQL/NoSQL/command/template sinks; user-supplied URLs fetched without an allowlist.
- Resource abuse - no rate limiting/pagination caps, unbounded uploads, expensive GraphQL queries (no depth/complexity limit).
- Transport & headers - HTTPS enforced, HSTS, CSP,
X-Content-Type-Options, secure/HttpOnly/SameSite cookies. - CORS & CSRF - reflected
Origin, wildcardAccess-Control-Allow-Originwith credentials, state-changing GETs, missing CSRF tokens on cookie-auth forms.
Workflow
- Enumerate every route/handler (router files, decorators, OpenAPI/GraphQL schema). Build a table: method, path, auth required?, roles, input sources.
- For each, verify the auth + authz check actually runs before the handler logic, and that object access is scoped to the caller.
- Test injection/SSRF paths by tracing input to sink.
- Inspect middleware/config for headers, CORS, CSRF, and rate limits.
- Report per finding:
[SEVERITY] route- issue, proof (handler code), impact, and the minimal fix (middleware, scoping, header, limit).
Anti-patterns
- Assuming a global auth middleware covers a route without confirming it is applied
- Reporting CORS wildcards as critical when no credentials are allowed (rate correctly)
- Listing generic header advice without checking what the server already sets
Signals
- GitHub stars
- 22
- Forks
- 4
- Last commit
- Sep 2026
Advanced
- Catalog kind
- skill
- Gateway key
api-security-auditor- Source
- github.com/navinspire-ia/navin