{% extends "base.html" %} {% block title %}CVE Database - Hermetic Suite{% endblock %} {% block content %}
{{ stats.total_cves or 0 }}
Detected CVEs
{{ stats.by_severity.get('critical', 0) }}
Critical
{{ stats.by_severity.get('high', 0) }}
High
{{ stats.by_severity.get('medium', 0) }}
Medium
{{ stats.by_severity.get('low', 0) }}
Low

Search CVEs

CVEs Detected on Your Servers and Domains

{% if detected_cves %} {% for cve in detected_cves %} {% endfor %}
CVE ID Severity CVSS Targets Affected Description
{{ cve.cve_id }} {{ cve.severity | upper }} {{ cve.cvss_score or '-' }} {{ cve.server_count }} {{ cve.description[:100] }}{% if cve.description|length > 100 %}...{% endif %}
{% else %}

No CVEs detected yet. Run vulnerability scans to detect CVEs on your servers and domains.

{% endif %}
{% endblock %}