{% extends 'dcim/device/base.html' %} {% load i18n %} {% block content %}
{% trans "CVE Exposure (Forward)" %}

{% trans "CVE findings from Forward's OS-version-aware analysis, synced into the Device Lifecycle plugin. Rows refresh with each Forward sync run that has the Vulnerability map enabled." %}

{% if severity_totals.critical %}{{ severity_totals.critical }} {% trans "critical" %}{% endif %} {% if severity_totals.high %}{{ severity_totals.high }} {% trans "high" %}{% endif %} {% if severity_totals.medium %}{{ severity_totals.medium }} {% trans "medium" %}{% endif %} {% if severity_totals.low %}{{ severity_totals.low }} {% trans "low" %}{% endif %}

{% for vulnerability in vulnerabilities %} {% empty %} {% endfor %}
{% trans "CVE" %} {% trans "Severity" %} {% trans "Software Version" %} {% trans "Description" %}
{{ vulnerability.cve.cve_id }} {% with severity=vulnerability.cve.severity|lower %} {% if severity == "critical" %}{{ vulnerability.cve.severity }} {% elif severity == "high" %}{{ vulnerability.cve.severity }} {% elif severity == "medium" %}{{ vulnerability.cve.severity }} {% elif severity %}{{ vulnerability.cve.severity }} {% else %}—{% endif %} {% endwith %} {{ vulnerability.software_version|default:"—" }} {{ vulnerability.cve.description|truncatechars:240|default:"—" }}
{% trans "No CVE findings for this device." %}
{% endblock %}