{% extends "base.html" %} {% block title %}Dashboard{% endblock %} {% block content %}
{{ stats.total_scans }}
TOTAL SCANS
{{ stats.active_scans }}
RUNNING SCANS
▁▃▅
{{ stats.total_results }}
FINDINGS
{{ stats.critical_threats }}
CRITICAL FINDINGS
{{ configured_apis }}
CONNECTED SOURCES
◫ RECENT SCANS VIEW ALL →
{% if recent_scans %} {% for scan in recent_scans %} {% endfor %}
TARGETTYPESTATUSRISK SCORETHREAT
{{ scan.target[:40] }} {{ scan.scan_type }} {% if scan.status == 'running' %} {% endif %} {{ scan.status.upper() }} {% if scan.shadow_score is not none %}
{{ "%.0f"|format(scan.shadow_score) }} {% else %} {% endif %}
{{ (scan.threat_level or 'unknown').upper() }} VIEW →
{% else %}

No scans yet.

Start Your First Scan
{% endif %}
◉ ACTIVITY
[PHANTOMSIGNAL] Connected. Ready to scan.
[SYSTEM] Waiting for activity...
⚙ DATA SOURCES CONFIGURE →
{% for api in api_status[:16] %}
{{ api.name }}
{% endfor %}
{% if api_status|length > 16 %}

+{{ api_status|length - 16 }} more sources available

{% endif %}
◈ QUICK SCAN
{% endblock %} {% block scripts %} {% endblock %}