| name | security-checklist |
| description | Verify security vulnerabilities — hardcoded secrets, SQL injection, JWT validation, sensitive logging, and authorization checks. Run before merging any auth or API-related changes. |
Security Checklist
Verification Items
1. Hardcoded Secrets
grep -r "password.*=.*\"" --include="*.kt" src/
grep -r "secret.*=.*\"" --include="*.kt" src/
grep -r "password\|secret\|jwt" --include="*.yml" --include="*.yaml" src/
2. SQL Injection
3. JWT Verification
4. Logging
5. Authorization
Report Format
For each item:
- ✓ Pass
- ⚠ Warning (recommendation)
- ✗ Error (needs fix)
Final summary: {n} items — {p} passed, {w} warnings, {e} errors