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" %}
{% if affected_versions != 0 %} {% endif %} {% for cve in cve_data['cves'] %} {% if affected_versions != 0 %} {% endif %} {% endfor %}
CVE Number Description Severity Remarks CommentsAffected Versions
{{ cve.cve_number }} {{ cve.description }} {{ cve.severity }} {{ cve.remarks }} {{ cve.comments }}{{ format_version_range(all_cve_version_info[cve.cve_number] if cve.cve_number in all_cve_version_info else VersionInfo("", "", "", "")) }}
{% 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 %}