{% extends "base.html" %} {% block title %}Data Dashboard{% endblock %} {% block content %}

Data Operations

Real-time data exfiltration monitoring

{% if group_by_agent %}
{% for agent_id, records in group_by_agent.items()|sort(attribute='1|length', reverse=true) %} {% set latest_record = records|first %}

{{ latest_record.hostname or agent_id }}

{{ records|length }} records {{ latest_record.created_at|format_timestamp }}
{% set data_types = records|map(attribute='data_type')|list|unique|list %} {% for type in data_types %} {% set type_count = records|selectattr('data_type', 'equalto', type)|list|length %}
{% if type == 'take_screenshot' %} {% elif type == 'history' %} {% elif type == 'domsnapshot' %} {% elif type == 'enumeration' %} {% else %} {% endif %}
{{ type|capitalize }} {{ type_count }} entries
View
{% endfor %}
{% endfor %}
{% else %}

No agents with data available.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}