Report configuration options.
| 14 | class ReportConfig: |
| 15 | """Report configuration options.""" |
| 16 | title: str = "Security Assessment Report" |
| 17 | company_name: str = "" |
| 18 | assessor_name: str = "" |
| 19 | include_executive_summary: bool = True |
| 20 | include_technical_details: bool = True |
| 21 | include_remediation: bool = True |
| 22 | include_raw_data: bool = False |
| 23 | |
| 24 | |
| 25 | class ReportGenerator: |
| 26 | """Generate professional security reports.""" |
| 27 |
no outgoing calls
no test coverage detected