Details (Vendor - Product - Version)
{{ star_warn }} {% for product_info, cve_data in all_cve_data.items() %}
{% if product_info.vendor != "UNKNOWN" %} {{ product_info.vendor }} {{ product_info.product }} {{ product_info.version }} {% else %} {{ product_info.product }} {{ product_info.version }} {% endif %} CVE Count: {{ 0 if cve_data["cves"][0][1] == "UNKNOWN" else cve_data['cves'] | length }}
{% if cve_data["cves"][0][1] != "UNKNOWN" %}
{% for cve in cve_data['cves'] %} {% endfor %}
CVE Number Description Severity Remarks
{{ cve.cve_number }} {{ cve.description }} {{ cve.severity }} {{ cve.remarks }}
{% endif %} {% if directory | length != 0 and cve_data['paths'] | length != 0 %}
{% for path in cve_data['paths']%} {% endfor%}
Paths Associated with {{ product_info.product }}-{{ product_info.version }}
{{ path }}
{% endif %} {% endfor %}