| name | security-review |
| description | Security checklist for auth, input, secrets, and dangerous sinks. |
Security Review
When
Auth, user input, file/network sinks, crypto, payments, admin tools.
Checklist
- Secrets only from env/secret manager; never committed.
- Parameterized queries; no shell interpolation of user data.
- Authz on every sensitive operation (not just UI hide).
- SSRF: block link-local, metadata IPs, file:// unless required.
- Upload/path: basename + allowlist; store outside web root.
- CSRF on cookie-session state changes.
- Rate limit auth and expensive endpoints.
- Safe defaults on new flags.
Output
Finding list with path, impact, fix. If secret leaked: rotation steps first.