{{ title }}

Security Vulnerability Assessment
Target {{ results.target }}
Scan Type {{ results.scan_type|upper }}
Timestamp {{ results.timestamp }}
Duration {{ results.duration }}s

Summary

{{ summary.by_severity.CRITICAL }} Critical
{{ summary.by_severity.HIGH }} High
{{ summary.by_severity.MEDIUM }} Medium
{{ summary.by_severity.LOW }} Low
{{ summary.by_severity.INFO }} Info

Detailed Findings

{% for module in results.modules %}
{{ module.module }}
{% if module.error %}
Error: {{ module.error }}
{% elif module.findings %} {% for finding in module.findings %}
{{ finding.finding | e }} {{ finding.severity }}

Details: {{ finding.details | default('N/A') | e }}

Parameter: {{ finding.parameter | default('') | e }}

Evidence: {{ finding.evidence | default('N/A') | e }}

{% endfor %} {% else %}
No findings detected by this module
{% endif %}
{% endfor %}