├── .gitignore ├── LICENSE.md ├── README.md ├── bin └── csvparse ├── parsed └── .gitkeep └── resources ├── OWASP_Application_Security_Verification_Standard_4.0-en.csv ├── screenshot.png └── screenshot2.png /.gitignore: -------------------------------------------------------------------------------- 1 | /.idea/ 2 | .DS_Store 3 | /parsed/*.csv 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoSWD/asvs-checklist/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoSWD/asvs-checklist/HEAD/README.md -------------------------------------------------------------------------------- /bin/csvparse: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoSWD/asvs-checklist/HEAD/bin/csvparse -------------------------------------------------------------------------------- /parsed/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /resources/OWASP_Application_Security_Verification_Standard_4.0-en.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoSWD/asvs-checklist/HEAD/resources/OWASP_Application_Security_Verification_Standard_4.0-en.csv -------------------------------------------------------------------------------- /resources/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoSWD/asvs-checklist/HEAD/resources/screenshot.png -------------------------------------------------------------------------------- /resources/screenshot2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicoSWD/asvs-checklist/HEAD/resources/screenshot2.png --------------------------------------------------------------------------------