# 🔐 Secret Scanner
### Detect Leaked Credentials Before They Exploit You
---
✨ Autonomously developed by GLM 5 Advanced Coding Model
⚠️ Disclaimer: Test in a test environment prior to using on any live system
## Overview
Scans codebases for leaked API keys, passwords, tokens, private keys, and connection strings.
## Detected Secrets
- AWS Access Keys, GitHub Tokens, Google API Keys
- Stripe Keys, Slack Tokens
- Private SSH Keys, PGP Keys
- Database connection strings
- Hardcoded passwords
## Quick Start
```bash
# Install gitleaks
sudo apt install -y gitleaks
# Scan current directory
gitleaks detect --source . --verbose
# Scan git history
gitleaks detect --source . --log-opts="--all"
```
---