{% extends "base.html" %} {% block title %}Deception Intercepts (LEEF){% endblock %} {% block content %}

⚡ Deception Intercepts & QRadar Normalized Event Stream

High-fidelity intrusion detection telemetry formatted in LEEF 2.0 with custom property extractions.

{% for t in threats %} {% endfor %}
Event Time Source IP / Host Destination Decoy Port/Proto Category MITRE ID Severity Signature & Raw Intercept Actions
{{ t.timestamp }} {{ t.src_ip }}
{{ t.src_host or 'N/A' }}
{{ t.dest_ip }}
{{ t.node_id }}
{{ t.dest_port }}/{{ t.protocol|upper }} {{ t.category }} {{ t.mitre_technique_id }}
{{ t.mitre_tactic }}
{% if t.severity_id >= 9 %} Critical ({{ t.severity_id }}) {% elif t.severity_id >= 7 %} High ({{ t.severity_id }}) {% else %} Medium ({{ t.severity_id }}) {% endif %} {{ t.signature }}
{{ t.raw_payload if t.raw_payload else 'Raw payload logged' }}
{% endblock %}