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

CRA events

Reporting clocks for findings that fired the CRA trigger policy.

euvd-watch assists preparation and record-keeping. Legal validation and submission to your CSIRT / authority remain your responsibility — this tool never files anything.
{% if rows %}
{% for row in rows %} {% endfor %}
CRA trigger events, open events first
Event id EUVD id Component First seen (UTC) Fired rules Worst stage state
{{ row.event_id }} {{ row.euvd_id }} {{ row.component_name }} {{ row.component_version or "" }} {{ row.first_seen_iso }} {% for rule in row.fired_rules %}{{ rule.replace("_", " ") }}{% endfor %} {{ m.pill(row.worst) }}
{% else %}

No CRA trigger events yet. Run euvd-watch cra check <sbom> to evaluate the trigger.

{% endif %} {% endblock %}