mirror of
https://github.com/affaan-m/everything-claude-code.git
synced 2026-03-30 21:53:28 +08:00
* Add Turkish (tr) docs and update README Add a full set of Turkish documentation under docs/tr (agents, changelog, CLAUDE guide, contributing, code of conduct, and many agents/commands/skills/rules files). Update README to include a link to the Turkish docs and increment the supported language count from 5 to 6. This commit adds localized guidance and references to help Turkish-speaking contributors and users. * Update docs/tr/TROUBLESHOOTING.md Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> * Update docs/tr/README.md Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> * docs(tr): fix license link and update readmes Update Turkish docs: change license badge link to point to repository root (../../LICENSE), increment displayed language count from 5 to 6, and remove two outdated related links from docs/tr/examples/README.md to keep references accurate. * Update docs/tr/commands/instinct-import.md Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> * Update docs/tr/commands/checkpoint.md Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com> --------- Co-authored-by: cubic-dev-ai[bot] <191113872+cubic-dev-ai[bot]@users.noreply.github.com>
30 lines
967 B
Markdown
30 lines
967 B
Markdown
# Güvenlik Kuralları
|
||
|
||
## Zorunlu Güvenlik Kontrolleri
|
||
|
||
HERHANGİ bir commit'ten önce:
|
||
- [ ] Hardcoded secret yok (API anahtarları, şifreler, token'lar)
|
||
- [ ] Tüm kullanıcı girdileri validate edildi
|
||
- [ ] SQL injection önleme (parametreli sorgular)
|
||
- [ ] XSS önleme (sanitize edilmiş HTML)
|
||
- [ ] CSRF koruması etkin
|
||
- [ ] Authentication/authorization doğrulandı
|
||
- [ ] Tüm endpoint'lerde rate limiting
|
||
- [ ] Hata mesajları hassas veri sızdırmıyor
|
||
|
||
## Secret Yönetimi
|
||
|
||
- Kaynak kodda ASLA secret'ları hardcode etme
|
||
- DAIMA environment variable'lar veya secret manager kullan
|
||
- Başlangıçta gerekli secret'ların mevcut olduğunu validate et
|
||
- İfşa olmuş olabilecek secret'ları rotate et
|
||
|
||
## Güvenlik Yanıt Protokolü
|
||
|
||
Güvenlik sorunu bulunursa:
|
||
1. HEMEN DUR
|
||
2. **security-reviewer** agent kullan
|
||
3. Devam etmeden önce CRITICAL sorunları düzelt
|
||
4. İfşa olmuş secret'ları rotate et
|
||
5. Benzer sorunlar için tüm kod tabanını incele
|