{# Extended SCA Reachability dashboard: coverage, a severity/reachability breakdown, an ecosystem breakdown, and a short "Top vulnerabilities" preview linking out to the full, project-filterable register at /activities/sca-reachability/vulnerabilities (sca_vulnerabilities_list.html) -- each row backed by a real OSV.dev match when one exists, or the report's own "unverified" finding when it doesn't (never a fabricated CVE ID -- see web/sca_dashboard.py for what's real vs. approximated). #} Program dashboard {% if sca_dash.osv_unreachable %}
From each finding's own Risk Register severity -- never translated from a CVSS score.
{% set severity_total = sca_dash.severity_counts.high + sca_dash.severity_counts.medium + sca_dash.severity_counts.low %}A breakdown of the findings above, not of every dependency in every manifest.
{% if sca_dash.ecosystem_counts %} {% for ecosystem, count in sca_dash.ecosystem_counts %} {% endfor %} {% else %}No vulnerabilities yet.
{% endif %}The highest-severity vulnerabilities across all projects.
| Severity | CVE / Issue | Package | Version | Reachability | Fixed in | Applications |
|---|---|---|---|---|---|---|
| {{ v.severity }} | {% if v.cve_id %}{{ v.cve_id }}{% else %}unverified {{ v.issue }}{% endif %} | {{ v.package }} |
{{ v.version }} | {{ v.reachability }} | {{ v.fixed_in }} | {{ v.affected_projects | length }} |