🔒 Penetration Test Report

{{ scan.name }}

Target: {{ scan.target }}
Scan Type: {{ scan.scan_type }}
Status: {{ scan.status }}
Generated: {{ generated_at.strftime('%Y-%m-%d %H:%M') }}

📊 Executive Summary

Total Findings: {{ findings|length }}

{{ counts.critical }}
Critical
{{ counts.high }}
High
{{ counts.medium }}
Medium
{{ counts.low }}
Low
{{ counts.info }}
Info

🎯 Detailed Findings

{% for finding in findings %}
{{ finding.title }} {{ finding.severity }}

Description

{{ finding.description }}

Impact

{{ finding.impact or 'No impact specified' }}

Remediation

{{ finding.remediation }}

{% if finding.cvss_score %}

CVSS Score

{{ finding.cvss_score }}
{% endif %}
{% endfor %}