{% extends "base.html" %} {% block title %}Command Overview — AUTARCH{% endblock %} {% block content %}
Modules
{{ modules.get('total', 0) }}
LLM Backend
{{ llm_backend|upper }}
UPnP
{{ 'ON' if upnp_enabled else 'OFF' }}
Uptime
{{ system.uptime }}
Categories · Quick Launch

Defense

Hardening, audits, monitoring

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

Offense

Pentesting, Metasploit

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

Counter

Threat hunting, anomaly detection

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

Analyze

Forensics, hex, hashes

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

OSINT

25,475 indexed sites

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

Simulate

Attack simulation, red team

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

Hardware

ADB, Fastboot, ESP32

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

Android Forensics

Acquisition · IOC scanning

new
Traffic 24hIdle
AI Synthesis
HAL standing by. {{ modules.get('total', 0) }} modules loaded across {{ modules.keys()|length - 1 }} categories. Ask HAL for a sweep, threat triage, or to walk a specific scan.
System Info
{% if llm_model %}{% endif %}
Platform{{ system.platform }}
Architecture{{ system.arch }}
Python{{ system.python }}
IP{{ system.ip }}
UPnP{{ 'Enabled' if upnp_enabled else 'Disabled' }}
LLM Model{{ llm_model.split('/')[-1] if '/' in llm_model else llm_model }}
System Tools
{% for tool, available in tools.items() %} {% endfor %}
ToolStatus
{{ tool }} {{ 'Available' if available else 'Not found' }}
{% endblock %}