{# templates/emails/security/suspicious_activity.html.twig #} {% extends 'emails/admin/alert.html.twig' %} {% block title %}Activité Suspecte Détectée{% endblock %} {% block content %}

{{ type_label }}

Une activité suspecte a été détectée sur {{ system_name }}.

{% if data.threat_score %} {% endif %} {% if data.geo_data %} {% endif %}
Adresse IP {{ data.ip_address }}
Score de Menace {{ data.threat_score }}/100
Raison {{ data.reason }}
Date de détection {{ data.timestamp }}
Localisation {{ data.geo_data.city|default('Inconnu') }}, {{ data.geo_data.country|default('Inconnu') }} {% if data.geo_data.is_proxy or data.geo_data.is_vpn or data.geo_data.is_tor %}
{% if data.geo_data.is_tor %}TOR{% elseif data.geo_data.is_vpn %}VPN{% else %}Proxy{% endif %} {% endif %}
{% if data.additional_data %}

Détails Additionnels

{{ data.additional_data|json_encode(constant('JSON_PRETTY_PRINT')) }}
{% endif %}

Actions Recommandées:

{% endblock %}