{% extends "django_security_monitor/base.html" %} {% block title %}Threat IPs{% endblock %} {% block topbar_title %}🎯 Threat Intelligence{% endblock %} {% block content %}
All IPs 🔒 Blocked ⚠ Active Threats
IP Threat Scores ({{ page_obj.paginator.count }})
{% for t in page_obj %} {% with prob=t.hack_probability %} {% endwith %} {% empty %} {% endfor %}
IP AddressHack ProbabilityScoreRisk EventsLast SeenCountryActions
{{ t.ip_address }}
{{ prob }}%
{{ t.score|floatformat:0 }} {% if t.is_blocked %} 🔒 Blocked {% else %} {{ t.risk_level }} {% endif %} {{ t.event_count }} {{ t.last_event|date:"M d H:i" }} {{ t.location.country_code|default:"—" }}
{% if t.is_blocked %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %}
{% csrf_token %}
No threats found
{% if page_obj.has_other_pages %}
{% if page_obj.has_previous %} ← Prev {% endif %} {{ page_obj.number }} / {{ page_obj.paginator.num_pages }} {% if page_obj.has_next %} Next → {% endif %}
{% endif %}
{% endblock %}