{% extends "base.html" %} {% import "_macros.html" as m %} {% block title %}Findings{% endblock %} {% block content %}

Findings

Components matched against the EUVD, most severe first. Order is deterministic.

Clear
{% if view.rows %}
{% for row in view.rows %} {% endfor %}
Findings, filtered and sorted by exploited status, confidence, then component name
Severity Component EUVD id Aliases Exploited Confidence VEX status EPSS KEV
{{ row.component_name }} {{ row.component_version or "" }} {{ row.euvd_id }} {{ row.aliases[0] if row.aliases else "—" }}{% if row.aliases | length > 1 %} +{{ row.aliases | length - 1 }}{% endif %} {% if row.exploited %}⚠ yes{% else %}—{% endif %} {{ m.pill(row.confidence) }} {{ m.pill(row.vex_status) }} {{ row.epss_text }} {{ row.in_kev_text }}
{{ ((view.page - 1) * 50) + 1 }}–{{ ((view.page - 1) * 50) + view.rows | length }} of {{ view.total }} {% if view.page > 1 %} ‹ Prev {% else %} {% endif %} {% if view.page < view.page_count %} Next › {% else %} {% endif %}
{% else %}

No findings match these filters. Clear filters

{% endif %} {% endblock %}