A web client for interfacing with Google Recorder.
This repository uses automated security scanning to detect exposed API keys and secrets.
- Automated scanning: GitHub Actions runs weekly security scans using Gitleaks
- Pre-commit hooks: Optional local scanning available (see
.github/hooks/README.md) - Latest scan report: See
SECURITY_SCAN_REPORT.mdfor the most recent security audit
# Install gitleaks
# macOS
brew install gitleaks
# Linux
wget https://github.com/gitleaks/gitleaks/releases/latest/download/gitleaks_linux_x64.tar.gz
tar -xzf gitleaks_linux_x64.tar.gz
sudo mv gitleaks /usr/local/bin/
# Run scan on current code
gitleaks detect --source . --verbose
# Run scan on git history
gitleaks detect --source . --log-opts="--all" --verboseIf you discover a security vulnerability, please report it by emailing the repository maintainers directly rather than opening a public issue.
Please ensure your contributions don't include any secrets or API keys. The pre-commit hook can help catch these before submission.
See LICENSE file for details.