Run a comprehensive security scan on the codebase.
Iron Law
No "probably safe." Verify or flag. If you cannot confirm a pattern is secure, flag it. False positives are cheap. Missed vulnerabilities are not.
Scan Checklist
1. Hardcoded Secrets (CRITICAL)
grep -rn "password\s*=\|api_key\s*=\|secret\s*=\|token\s*=" src/
grep -rn "BEGIN.*PRIVATE KEY" .
grep -rn "sk-\|pk_\|ghp_\|gho_\|AKIA" src/
Also check for:
- Base64-encoded secrets (long random strings in config)
- S
[Description truncada. Veja o README completo no GitHub.]