{% if domain %}{% endif %}
{{ locations | length }} project(s) contain {{ summary.component_name }}. Projects with known CVE findings are listed first.
| Project | Detected Version(s) | CVE Findings | Critical | High | Top CVE |
|---|---|---|---|---|---|
| {{ loc.project_name }} | {% if loc.detected_versions %} {{ loc.detected_versions | join(', ') }} {% else %} — {% endif %} | {% if loc.cve_count > 0 %} {{ loc.cve_count }} {% else %} — {% endif %} | {% if loc.critical_count > 0 %} {{ loc.critical_count }} {% else %}—{% endif %} | {% if loc.high_count > 0 %} {{ loc.high_count }} {% else %}—{% endif %} |
{% if loc.top_cves %}
{% set tc = loc.top_cves[0] %}
{{ tc.cve_id | default('') }}
{% set sev = tc.severity | default('') | upper %}
{{ sev }}
{% if loc.top_cves | length > 1 %}
+{{ loc.top_cves | length - 1 }} more
{% endif %}
{% else %}
No CVE findings
{% endif %}
|