mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-02-04 05:33:14 +08:00
37 lines
885 B
Markdown
37 lines
885 B
Markdown
|
|
# Security Guidelines
|
||
|
|
|
||
|
|
## Mandatory Security Checks
|
||
|
|
|
||
|
|
Before ANY commit:
|
||
|
|
- [ ] No hardcoded secrets (API keys, passwords, tokens)
|
||
|
|
- [ ] All user inputs validated
|
||
|
|
- [ ] SQL injection prevention (parameterized queries)
|
||
|
|
- [ ] XSS prevention (sanitized HTML)
|
||
|
|
- [ ] CSRF protection enabled
|
||
|
|
- [ ] Authentication/authorization verified
|
||
|
|
- [ ] Rate limiting on all endpoints
|
||
|
|
- [ ] Error messages don't leak sensitive data
|
||
|
|
|
||
|
|
## Secret Management
|
||
|
|
|
||
|
|
```typescript
|
||
|
|
// NEVER: Hardcoded secrets
|
||
|
|
const apiKey = "sk-proj-xxxxx"
|
||
|
|
|
||
|
|
// ALWAYS: Environment variables
|
||
|
|
const apiKey = process.env.OPENAI_API_KEY
|
||
|
|
|
||
|
|
if (!apiKey) {
|
||
|
|
throw new Error('OPENAI_API_KEY not configured')
|
||
|
|
}
|
||
|
|
```
|
||
|
|
|
||
|
|
## Security Response Protocol
|
||
|
|
|
||
|
|
If security issue found:
|
||
|
|
1. STOP immediately
|
||
|
|
2. Use **security-reviewer** agent
|
||
|
|
3. Fix CRITICAL issues before continuing
|
||
|
|
4. Rotate any exposed secrets
|
||
|
|
5. Review entire codebase for similar issues
|