├── .env.example ├── .gitignore ├── APG.py ├── C4Audits.py ├── C4FindingsScraper.py ├── README.md ├── SherlockAudits.py ├── SherlockFindingsScraper.py └── requirements.txt /.env.example: -------------------------------------------------------------------------------- 1 | GITHUB_ACCESS_TOKEN=123 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdeadbeef0x/APG/HEAD/.gitignore -------------------------------------------------------------------------------- /APG.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdeadbeef0x/APG/HEAD/APG.py -------------------------------------------------------------------------------- /C4Audits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdeadbeef0x/APG/HEAD/C4Audits.py -------------------------------------------------------------------------------- /C4FindingsScraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdeadbeef0x/APG/HEAD/C4FindingsScraper.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdeadbeef0x/APG/HEAD/README.md -------------------------------------------------------------------------------- /SherlockAudits.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdeadbeef0x/APG/HEAD/SherlockAudits.py -------------------------------------------------------------------------------- /SherlockFindingsScraper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/0xdeadbeef0x/APG/HEAD/SherlockFindingsScraper.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | python-dotenv==1.0.0 2 | requests==2.31.0 3 | --------------------------------------------------------------------------------