{% extends "base.html" %} {% block title %}IOCs - {{ filename }}{% endblock %} {% block content %} {% if iocs.error %}
Error extracting IOCs: {{ iocs.error }}
{% else %}

🌐 URLs ({{ iocs.urls|length if iocs.urls else 0 }})

🖥️ IP Addresses ({{ iocs.ips|length if iocs.ips else 0 }})

📧 Emails ({{ iocs.emails|length if iocs.emails else 0 }})

📝 Interesting Strings

{% for s in iocs.strings or [] %} {{ s }} {% else %}

No interesting strings found

{% endfor %}
{% endif %}
← Back View Analysis
{% endblock %}