{% extends 'generic/object.html' %} {% load helpers %} {% block content %}
{% if not sw_version %} {% elif not cves %} {% if has_mapping %} {% else %} {% endif %} {% else %} {% if not has_mapping %} {% endif %}
CVEs for {{ object.name }} — {{ sw_version }} {{ cves|length }} found
{% for cve in cves %} {% endfor %}
CVE ID KEV EPSS CVSS Score Attack Vector Description
{{ cve.id }} {% if cve.in_kev %} KEV {% else %} {% endif %} {% if cve.epss_score is not None %} {% with score=cve.epss_score|floatformat:4 %} {% if cve.epss_score >= 0.5 %} {{ score }} {% elif cve.epss_score >= 0.1 %} {{ score }} {% elif cve.epss_score >= 0.01 %} {{ score }} {% else %} {{ score }} {% endif %} {% endwith %} {% else %} {% endif %} {% if cve.cvssVersion %} v{{ cve.cvssVersion }} {% else %}—{% endif %} {% if cve.baseScore %} {% with score=cve.baseScore|floatformat:1 %} {% if cve.baseScore >= 9 %} {{ cve.baseScore }} {% elif cve.baseScore >= 7 %} {{ cve.baseScore }} {% elif cve.baseScore >= 4 %} {{ cve.baseScore }} {% else %} {{ cve.baseScore }} {% endif %} {% endwith %} {% else %}—{% endif %} {{ cve.accessVector|default:"—" }} {{ cve.description }} Import
CPE Queries Used

NVD was queried using these CPE strings derived from the device's manufacturer, platform, and software version. If results look incomplete, verify the vendor/product names at NVD CPE Search.

{% for cpe, label, count in cpes_used %} {% endfor %}
CPE StringSourceCVEs Found
{{ cpe }} {{ label }} {{ count }}
{% endif %}
{% endblock %}