Framework Mode - Security testing tools overview
Folder Structure of a Security Testing Project
security-testing-project/ ├── tools/ │ ├── static-analysis/ │ │ └── sourcecode-scanner-config.yaml │ ├── dynamic-analysis/ │ │ └── zap-config.xml │ ├── dependency-check/ │ │ └── dependency-check-report.json │ └── fuzzing/ │ └── fuzzing-scripts/ ├── test-scripts/ │ ├── api-security-tests/ │ │ └── auth-tests.py │ ├── web-security-tests/ │ │ └── xss-tests.js │ └── mobile-security-tests/ │ └── android-tests.robot ├── reports/ │ ├── static-analysis-report.html │ ├── dynamic-analysis-report.html │ └── fuzzing-report.txt ├── config/ │ ├── environments.yaml │ └── credentials.yaml └── README.md