{% extends "base.html" %} {% block title %}Analyzer Test · Email Security{% endblock %} {% block content %} {% include "_email_nav.html" %}

Email Analyzer — Test

Paste a raw email (headers + body) to see exactly how the engine scores it. Runs the real analyzer — no mailbox needed.

‹ Email Security
{% if result %} {% set v = result.verdict %} {% if v %}
{{ v.severity|upper }} {{ v.threat_type|capitalize }} risk score {{ v.score }}
{% else %}
CLEAN  No threat indicators detected. — the message scored below the threat threshold.
{% endif %}

What the parser extracted

From{{ result.msg.from_display }} <{{ result.msg.from_addr or '—' }}> Reply-To{{ result.msg.reply_to or '—' }} Subject{{ result.msg.subject or '—' }} Auth results{{ result.msg.auth_results or '—' }} Links{{ result.msg.urls|join(', ') if result.msg.urls else '—' }} Attachments{{ result.msg.attachments|map(attribute='name')|join(', ') if result.msg.attachments else '—' }}
{% endif %}

Raw email

Load a sample:
{% endblock %}