{% extends "base.html" %} {% block title %}Export — {{ scan.target }}{% endblock %} {% block content %}
SELECT FORMAT
{% for fmt, icon, desc in [ ('json', '📄', 'Raw JSON — machine readable'), ('csv', '📊', 'Spreadsheet compatible'), ('html', '🌐', 'Self-contained report'), ('pdf', '📕', 'Styled PDF dossier'), ('xml', '💾', 'XML structured data'), ('xlsx', '📈', 'Excel workbook'), ('stix', '🛡', 'STIX 2.1 threat bundle'), ('markdown', '📝', 'Markdown document'), ] %} {% endfor %}
🔐 SECURITY OPTIONS
SCAN SUMMARY
Target{{ scan.target }}
Results{{ scan.result_count }}
Shadow Score{{ "%.0f"|format(scan.shadow_score or 0) }}/100
Threat Level{{ (scan.threat_level or 'unknown').upper() }}
Duration{{ "%.1f"|format(scan.duration_seconds or 0) }}s
{% endblock %} {% block scripts %} {% endblock %}