├── .env.example ├── .github └── workflows │ └── main.yml ├── .gitignore ├── README.md ├── generate_report.py ├── output └── .gitignore ├── requirements.txt ├── scripts ├── code_listings.py ├── convert.sh ├── fetch_issues.py ├── generate.sh ├── helpers.py ├── linter.py ├── pandoc-image.py ├── pandoc-minted.py └── update.sh ├── source ├── about_cyfrin.md ├── additional_comments.md ├── appendix.md ├── assisting_auditors.md ├── audit_scope.md ├── disclaimer.md ├── executive_summary.md ├── lead_auditors.md ├── protocol_summary.md ├── report.md ├── severity_counts.conf └── summary_information.conf ├── templates ├── img │ └── cyfrin-logo.png ├── main.tex ├── post_report.tex ├── pre_report.tex ├── risk_classification.tex ├── summary.tex └── title.tex └── working └── .gitignore /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/.env.example -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/README.md -------------------------------------------------------------------------------- /generate_report.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/generate_report.py -------------------------------------------------------------------------------- /output/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore 4 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/requirements.txt -------------------------------------------------------------------------------- /scripts/code_listings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/scripts/code_listings.py -------------------------------------------------------------------------------- /scripts/convert.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/scripts/convert.sh -------------------------------------------------------------------------------- /scripts/fetch_issues.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/scripts/fetch_issues.py -------------------------------------------------------------------------------- /scripts/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/scripts/generate.sh -------------------------------------------------------------------------------- /scripts/helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/scripts/helpers.py -------------------------------------------------------------------------------- /scripts/linter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/scripts/linter.py -------------------------------------------------------------------------------- /scripts/pandoc-image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/scripts/pandoc-image.py -------------------------------------------------------------------------------- /scripts/pandoc-minted.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/scripts/pandoc-minted.py -------------------------------------------------------------------------------- /scripts/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/scripts/update.sh -------------------------------------------------------------------------------- /source/about_cyfrin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/source/about_cyfrin.md -------------------------------------------------------------------------------- /source/additional_comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/source/additional_comments.md -------------------------------------------------------------------------------- /source/appendix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/source/appendix.md -------------------------------------------------------------------------------- /source/assisting_auditors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/source/assisting_auditors.md -------------------------------------------------------------------------------- /source/audit_scope.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/source/audit_scope.md -------------------------------------------------------------------------------- /source/disclaimer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/source/disclaimer.md -------------------------------------------------------------------------------- /source/executive_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/source/executive_summary.md -------------------------------------------------------------------------------- /source/lead_auditors.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/source/lead_auditors.md -------------------------------------------------------------------------------- /source/protocol_summary.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/source/protocol_summary.md -------------------------------------------------------------------------------- /source/report.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /source/severity_counts.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/source/severity_counts.conf -------------------------------------------------------------------------------- /source/summary_information.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/source/summary_information.conf -------------------------------------------------------------------------------- /templates/img/cyfrin-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/templates/img/cyfrin-logo.png -------------------------------------------------------------------------------- /templates/main.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/templates/main.tex -------------------------------------------------------------------------------- /templates/post_report.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/templates/post_report.tex -------------------------------------------------------------------------------- /templates/pre_report.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/templates/pre_report.tex -------------------------------------------------------------------------------- /templates/risk_classification.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/templates/risk_classification.tex -------------------------------------------------------------------------------- /templates/summary.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/templates/summary.tex -------------------------------------------------------------------------------- /templates/title.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Cyfrin/report-generator-template/HEAD/templates/title.tex -------------------------------------------------------------------------------- /working/.gitignore: -------------------------------------------------------------------------------- 1 | * 2 | */ 3 | !.gitignore 4 | --------------------------------------------------------------------------------