├── .github └── workflows │ ├── auto-scan.yml │ ├── manual-scan.yml │ └── scheduled-scan.yml ├── .gitignore ├── LICENSE ├── README.md ├── config.py ├── github_scanner.py ├── report_generator.py ├── requirements.txt ├── scan_github.py ├── scan_history.py ├── scan_history └── scanned_repos.json ├── scan_reports ├── README.md ├── scan_report_20251010_035942.txt ├── scan_report_20251016_015525.txt ├── scan_report_20251016_044713.txt ├── scan_report_20251016_094244.txt ├── scan_report_20251017_032722.txt └── scan_report_20251017_032844.txt ├── scanner.py └── secret_detector.py /.github/workflows/auto-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/.github/workflows/auto-scan.yml -------------------------------------------------------------------------------- /.github/workflows/manual-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/.github/workflows/manual-scan.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled-scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/.github/workflows/scheduled-scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/README.md -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/config.py -------------------------------------------------------------------------------- /github_scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/github_scanner.py -------------------------------------------------------------------------------- /report_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/report_generator.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/requirements.txt -------------------------------------------------------------------------------- /scan_github.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/scan_github.py -------------------------------------------------------------------------------- /scan_history.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/scan_history.py -------------------------------------------------------------------------------- /scan_history/scanned_repos.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/scan_history/scanned_repos.json -------------------------------------------------------------------------------- /scan_reports/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/scan_reports/README.md -------------------------------------------------------------------------------- /scan_reports/scan_report_20251010_035942.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/scan_reports/scan_report_20251010_035942.txt -------------------------------------------------------------------------------- /scan_reports/scan_report_20251016_015525.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/scan_reports/scan_report_20251016_015525.txt -------------------------------------------------------------------------------- /scan_reports/scan_report_20251016_044713.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/scan_reports/scan_report_20251016_044713.txt -------------------------------------------------------------------------------- /scan_reports/scan_report_20251016_094244.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/scan_reports/scan_report_20251016_094244.txt -------------------------------------------------------------------------------- /scan_reports/scan_report_20251017_032722.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/scan_reports/scan_report_20251017_032722.txt -------------------------------------------------------------------------------- /scan_reports/scan_report_20251017_032844.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/scan_reports/scan_report_20251017_032844.txt -------------------------------------------------------------------------------- /scanner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/scanner.py -------------------------------------------------------------------------------- /secret_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gaocaipeng/InCloudGitHub/HEAD/secret_detector.py --------------------------------------------------------------------------------