Framework Mode - Security testing basics
Folder Structure
security-testing-project/ ├── tests/ │ ├── authentication_tests/ │ │ └── test_login_security.py │ ├── authorization_tests/ │ │ └── test_access_control.py │ ├── input_validation_tests/ │ │ └── test_sql_injection.py │ └── vulnerability_scans/ │ └── test_xss.py ├── utils/ │ ├── security_helpers.py │ └── encryption_utils.py ├── config/ │ ├── environments.yaml │ └── credentials.yaml ├── reports/ │ └── latest_report.html ├── conftest.py └── README.md