What problem does it solve? Web applications and APIs are frequently exposed to common attack vectors like SQL injection, XSS, CSRF, and broken object-level authorization. This Skill provides concrete, enforceable security standards so reviewers and developers can harden endpoints, protect credentials, and avoid leaking sensitive data. ## Core Features & Use Cases - OWASP Top 10 Mitigations: Enforces parameterized queries, DOMPurify sanitization, CSRF tokens, tenant-scoped queries, and secure HTTP headers via helmet. - Endpoint Rate Limiting: Applies strict rate limits to sensitive routes such as login, registration, password resets, and payment webhooks using Fastify or Express. - Token & Session Hygiene: Mandates HttpOnly Secure cookies, short-lived access tokens, refresh token rotation, and Redis-backed session revocation. - Use Case: When reviewing an authentication endpoint, use this Skill to verify rate limiting is configured, cookies are marked Secure and SameSite, and no JWTs are stored in localStorage. ## Quick Start Review my login and registration API endpoints for security vulnerabilities and apply rate limiting plus secure cookie settings.