{% extends "base.html" %} {% block title %}{{ scan.target }} — Results{% endblock %} {% block content %}
TYPE {{ scan.scan_type or '—' }}
PROFILE {{ scan.profile or '—' }}
RESULTS {{ scan.result_count }}
DURATION {% if scan.duration_seconds %}{{ "%.1f"|format(scan.duration_seconds) }}s{% else %}—{% endif %}
SHADOW SCORE
{{ "%.0f"|format(scan.shadow_score or 0) }}/100
THREAT LEVEL {{ (scan.threat_level or 'unknown').upper() }}
{% if is_live %}
LIVE SIGNAL FEED
{{ scan.progress }}%
[OWLSCAN] Ghost run active. Receiving signal...
{% endif %}
{% for module, items in grouped_results.items() %} {% endfor %}
{% for result in results %}
[{{ result.module }}] {{ result.result_type }} ⚡ {{ result.source or '—' }} {% if result.tags %} {% for tag in result.tags[:4] %} {{ tag }} {% endfor %} {% endif %}
CONF {{ "%.0f"|format((result.confidence or 0) * 100) }}% {% if result.is_anomaly %} ⚠ ANOMALY {% endif %} {{ result.timestamp[:16] if result.timestamp else '' }}
{% else %}
🦉

{% if is_live %}Mission in progress — signals incoming...{% else %}No results captured.{% endif %}

{% endfor %}
{% for module, items in grouped_results.items() %}
{% for result in items %}
{{ result.result_type }} ⚡ {{ result.source or '—' }} {% for tag in (result.tags or [])[:4] %} {{ tag }} {% endfor %}
CONF {{ "%.0f"|format((result.confidence or 0) * 100) }}% {% if result.is_anomaly %}{% endif %}
{% endfor %}
{% endfor %}
{% for result in results if result.is_anomaly %}
[{{ result.module }}] {{ result.result_type }} ⚠ ANOMALY
CONF {{ "%.0f"|format((result.confidence or 0) * 100) }}%
{% else %}

No anomalies detected in this ghost run.

{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}