{{ _('ATTACKER PROFILES') }}

{{ total }} {{ _('total') }}
{{ _('BLOCK STATUS') }} {{ _('Auto: OFF') }} {{ _('Devices: -') }} {{ _('Queue: -') }} {{ _('Blocked: -') }}
{% for p in profiles %} {% set status_class = 'danger' if p.status == 'active' else 'warning' if p.status == 'dormant' else 'muted' %}
{{ p.profile_id }}{{ p.status.upper() }}
{{ _('UA:') }} {{ p.ua_fingerprint or _('unknown') }} | {{ _('IPs:') }} {{ p.ip_count }} | {{ _('Files:') }} {{ p.file_count }} | {{ _('Seen:') }} {{ p.last_seen }}
{{ _('Sample IPs:') }} {{ p.sample_ips|join(', ') }}
{{ p.risk_score|int }}{{ _('RISK') }}
{% else %}

{{ _('No active profiles yet') }}

{% endfor %}
{% if total_pages > 1 %}
{{ _('Page') }} {{ page }} / {{ total_pages }} ({{ total }} {{ _('total') }})
{% endif %}