{% extends "base.html" %} {% block title %}Dashboard - Hermetic Suite{% endblock %} {% block content %}
Security overview at a glance
| CVE | Title | Server | Detected |
|---|---|---|---|
| {{ vuln.cve_id or 'N/A' }} | {{ vuln.title[:50] }}{% if vuln.title|length > 50 %}...{% endif %} | {% if vuln.server %} {{ vuln.server.ip_address }} {% endif %} | {{ vuln.first_detected.strftime('%Y-%m-%d') if vuln.first_detected else 'N/A' }} |
No recent vulnerabilities found 🎉
{% endif %}| Type | Status | Services | Vulns | Time |
|---|---|---|---|---|
| {{ type_labels.get(scan.scan_type.value, scan.scan_type.value) }} | {{ scan.status.value }} | {# Services column: services_found for server/domain scans, hosts_scanned for discovery #} {% if scan.server or scan.dns_record %} {{ scan.services_found if scan.services_found is not none else '-' }} {% else %} {{ scan.hosts_scanned if scan.hosts_scanned else '-' }} {% endif %} | {{ scan.vulnerabilities_found if scan.vulnerabilities_found is not none else '-' }} | {{ scan.created_at.strftime('%m/%d %H:%M') if scan.created_at else 'N/A' }} |
No scans yet. Start discovery
{% endif %}