{% extends "base.html" %} {% block title %}Vulnerabilities - Hermetic Suite{% endblock %} {% block content %}
All discovered security vulnerabilities
| Severity | CVE | Title | Server | Service | CVSS | Detected | Actions |
|---|---|---|---|---|---|---|---|
| {{ vuln.severity.value.upper() if vuln.severity else 'INFO' }} | {% if vuln.cve_id %} {{ vuln.cve_id }} {% else %} - {% endif %} |
{{ vuln.title }}
{% if vuln.recommendation %}
💡 {{ vuln.recommendation[:80] }}... {% endif %} |
{% if vuln.server %} {{ vuln.server.ip_address }} {% endif %} | {{ vuln.affected_service or '-' }} {% if vuln.affected_port %}:{{ vuln.affected_port }}{% endif %} | {{ vuln.cvss_score or '-' }} | {{ vuln.first_detected.strftime('%Y-%m-%d') if vuln.first_detected else '-' }} | {% if not vuln.is_resolved %} {% if not vuln.is_acknowledged %} {% endif %} {% else %} Resolved {% endif %} |
{% if status_filter == 'open' %} No open vulnerabilities found 🎉 {% else %} No vulnerabilities matching your filters. {% endif %}
{% endif %}