{% extends "base.html" %} {% set active = "strategos" %} {% block title %}Dark Web Monitor — Strategos Intelligence{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
CUI // SP-CTI ◆ Dark Web Monitor DW-INTEL {% if tor_available %} ● TOR AVAILABLE {% else %} ○ TOR OFFLINE {% endif %}
← Back {{ signals|length }} signal{{ 's' if signals|length != 1 else '' }}
◆ Dark Web Signal Feed Relevance score heatmap · signal type · source intelligence
{% if signals %} {% for s in signals %} {%- set sc = s.score %} {%- if sc >= 0.8 %} {%- set bar_color = '#ef4444' %} {%- elif sc >= 0.6 %} {%- set bar_color = '#f97316' %} {%- elif sc >= 0.35 %} {%- set bar_color = '#f59e0b' %} {%- else %} {%- set bar_color = '#22c55e' %} {%- endif %} {%- set bar_pct = (sc * 100)|round(0)|int %} {%- set stype = s.signal_type %} {%- if stype == 'leaked_creds' %} {%- set type_css = 'color:#d946ef;border-color:#86198f;background:#2e1065' %} {%- elif stype == 'ransomware' %} {%- set type_css = 'color:#ef4444;border-color:#7f1d1d;background:#450a0a' %} {%- elif stype == 'exploit_sale' %} {%- set type_css = 'color:#fb923c;border-color:#9a3412;background:#431407' %} {%- elif stype == 'threat_actor' %} {%- set type_css = 'color:#38bdf8;border-color:#075985;background:#0c2340' %} {%- elif stype == 'api_exposure' %} {%- set type_css = 'color:#86efac;border-color:#166534;background:#052e16' %} {%- elif stype == 'data_dump' %} {%- set type_css = 'color:#fcd34d;border-color:#92400e;background:#2d1f00' %} {%- elif stype == 'marketplace' %} {%- set type_css = 'color:#a5b4fc;border-color:#3730a3;background:#1e1b4b' %} {%- else %} {%- set type_css = 'color:#9ca3af;border-color:#374151;background:#1f2937' %} {%- endif %} {% endfor %}
Score Type Title Source Age Status
{{ '%.2f'|format(sc) }}
{{ s.signal_type | replace('_', ' ') }} {{ s.title }} {{ s.source }} {{ s.age_label }} {{ s.status }}
{% else %}
○ No dark web signals collected yet.
Click Run Monitor to trigger a collection pass, or confirm a dark web runner is scheduled.
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}