Audit web applications for security vulnerabilities
Installation
Install with Codex or Claude Copy this prompt, paste it into Codex, Claude, or another assistant, and let it review the skill page and install it for you.
Audit web applications for security vulnerabilities
Web Application Security Audit
Systematic checklist for auditing web application security. Organized around the OWASP Top 10 with concrete checks and fix patterns. Framework-agnostic.
Invalidate sessions on password change — revoke all existing tokens
Set session tokens to expire — short-lived access tokens + refresh tokens
Never expose session tokens in URLs — use HttpOnly cookies or Authorization headers
3. Sensitive Data Exposure
Scan for hardcoded secrets — API keys, passwords, tokens, connection strings
# Common patterns to grep for
grep -rn "password\s*=\s*['\"]" --include="*.{js,ts,py,go,java,rb}"
grep -rn "API_KEY\|SECRET\|TOKEN\|PRIVATE_KEY" --include="*.{js,ts,py,go,java,rb}"