Scan Report: {{ scan.id }}
{{ scan.status }}
Target
{{ scan.target }}Duration
{{ "%.1f"|format(scan.duration) }}s
Messages Sent
{{ scan.messages_sent }}
Messages Received
{{ scan.messages_received }}
Started
{{ scan.started_at or 'Pending' }}
Completed
{{ scan.completed_at or 'In progress' }}
Error: {{ scan.error }}
{% endif %}
📤 Export Results
🔴 Vulnerabilities ({{ scan.vulnerabilities|length }})
{% if scan.vulnerabilities %}
{% for vuln in scan.vulnerabilities %}
{% if vuln.get('response_snippet') %}
{% endif %}
{% endif %}
{% endfor %}
{% else %}
{% if scan.status == 'completed' %}
{% elif scan.status in ('running', 'queued') %}
{% endif %}
{% endif %}
{{ vuln.get('type', 'Unknown') }}
{{ vuln.get('confidence', vuln.get('severity', 'MEDIUM')) }}
{% if vuln.get('browser_verified') %}
✅ Browser Verified
{% endif %}
{{ vuln.get('description', 'No description') }}
{% if vuln.get('payload') %}Payload & Response
Payload:
{{ vuln.get('payload', 'N/A')[:300] }}
Response:
{{ vuln.get('response_snippet', 'N/A')[:300] }}
No vulnerabilities found
The scan completed without detecting any issues.
Scan in progress...
Results will appear here automatically.