{% extends "base.html" %} {% block title %}Command & Control Dashboard{% endblock %} {% block content %}

Active Agents

{{ active_agents }}

+8% from last week View all →

Active Listeners

4

+2% from last week Details →

Active Operations

3

+1% from last week View all →

Data Collected

2.3GB

+12% from last week Details →

Recent Activity

{% for data_item in recent_data %}
{% if data_item.data_type == 'clipboardcapture' %} {% elif data_item.data_type == 'screenshot' %} {% else %} {% endif %}

{{ data_item.data_type|title }}

Agent: {{ data_item.agent_id if data_item.agent_id else 'Unknown' }} {% if data_item.agent and data_item.agent.hostname %} @ {{ data_item.agent.hostname }} {% endif %}

{{ data_item.timestamp|format_timestamp }}

{% endfor %}
{% endblock %}