├── .gitignore ├── examples ├── custom-alerts-framework-report.md ├── reentrancy.md ├── self-report.md └── sql_injection.md ├── main.py ├── prompts.md ├── readme.md ├── requirements.txt └── utils ├── __init__.py ├── auditor.py └── repository.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handrew/gpt3-auditor/HEAD/.gitignore -------------------------------------------------------------------------------- /examples/custom-alerts-framework-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handrew/gpt3-auditor/HEAD/examples/custom-alerts-framework-report.md -------------------------------------------------------------------------------- /examples/reentrancy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handrew/gpt3-auditor/HEAD/examples/reentrancy.md -------------------------------------------------------------------------------- /examples/self-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handrew/gpt3-auditor/HEAD/examples/self-report.md -------------------------------------------------------------------------------- /examples/sql_injection.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handrew/gpt3-auditor/HEAD/examples/sql_injection.md -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handrew/gpt3-auditor/HEAD/main.py -------------------------------------------------------------------------------- /prompts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handrew/gpt3-auditor/HEAD/prompts.md -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handrew/gpt3-auditor/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | click 2 | requests 3 | -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/auditor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handrew/gpt3-auditor/HEAD/utils/auditor.py -------------------------------------------------------------------------------- /utils/repository.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/handrew/gpt3-auditor/HEAD/utils/repository.py --------------------------------------------------------------------------------