{% extends "base.html" %} {% block title %}Dashboard - AUTARCH{% endblock %} {% block content %}
Modules
{{ modules.get('total', 0) }}
LLM Backend
{{ llm_backend }}
Hostname
{{ system.hostname }}
Uptime
{{ system.uptime }}

Defense

System hardening, audits, monitoring

{{ modules.get('defense', 0) }} modules

Offense

Penetration testing, Metasploit

{{ modules.get('offense', 0) }} modules

Counter

Threat hunting, anomaly detection

{{ modules.get('counter', 0) }} modules

Analyze

Forensics, file analysis

{{ modules.get('analyze', 0) }} modules

OSINT

Reconnaissance, username search

{{ modules.get('osint', 0) }} modules

Simulate

Attack simulation, red team

{{ modules.get('simulate', 0) }} modules

Hardware

ADB, Fastboot, ESP32 flashing

{{ modules.get('hardware', 0) }} modules

System Tools

{% for tool, available in tools.items() %} {% endfor %}
ToolStatus
{{ tool }} {{ 'Available' if available else 'Not found' }}

System Info

Platform{{ system.platform }}
Architecture{{ system.arch }}
Python{{ system.python }}
IP{{ system.ip }}
UPnP{{ 'Enabled' if upnp_enabled else 'Disabled' }}
{% endblock %}