Framework Mode - OWASP Top 10 awareness
Folder Structure for OWASP Top 10 Awareness Testing
owasp-top10-testing/ ├── tests/ │ ├── injection_tests/ │ │ └── test_sql_injection.py │ ├── broken_authentication_tests/ │ │ └── test_authentication.py │ ├── xss_tests/ │ │ └── test_xss.py │ ├── security_misconfiguration_tests/ │ │ └── test_security_headers.py │ ├── sensitive_data_tests/ │ │ └── test_data_encryption.py │ └── ... ├── pages/ │ └── login_page.py ├── utils/ │ ├── security_helpers.py │ └── test_data_generator.py ├── config/ │ ├── environments.yaml │ └── credentials.yaml ├── reports/ ├── conftest.py └── README.md