euvd-watch
EUVD-native software supply-chain vulnerability watch + EU Cyber Resilience Act (CRA) reporting toolkit.
⚠️ Status: work in progress. APIs and structure may change until
1.0.0. The Commands table below marks what is ✅ available today versus 🧪 beta versus 🚧 planned — milestones M0–M5 (scan, match, VEX, the CRA workflow,watchmode, Docker image, GitHub Action, GitLab template, PyPI releases) are implemented and tested. The dashboard (M6) is fully implemented — app, accessibility gate, and a tested deployment guide (docs/deploy.md) — and marked beta only because its surface may still change before the1.1GA.
euvd-watch connects software supply-chain transparency to Europe's own vulnerability infrastructure and to the concrete reporting duties of the EU Cyber Resilience Act.
It ingests your SBOM, continuously matches every component against the European Union Vulnerability Database (EUVD) operated by ENISA — including its actively exploited flag and EPSS scores — automatically drafts machine-readable VEX statements to cut false-positive noise, and, when a component is hit by an actively exploited vulnerability, drafts the CRA Article 14 notification and starts the 24-hour clock with a tamper-evident audit trail.
Why this exists
SBOM generation (Syft, cdxgen) and scanning against US sources (NVD, OSV) are mature. But:
- Nothing open is built around the EUVD — Europe's own vulnerability database, operated by ENISA.
- Nothing connects "exploited" status to the CRA's actual reporting workflow (the 24-hour early warning to ENISA/CSIRTs).
- VEX generation is still mostly manual, so teams drown in non-applicable findings.
euvd-watch fills that gap as a self-hostable building block that runs in CI/CD and on a schedule. It does not reinvent SBOM generators or scanners — it reuses them.
Pipeline
flowchart LR
A[SBOM<br/>CycloneDX / SPDX] -->|ingest| B[Normalized<br/>components]
B -->|match| C[EUVD<br/>exploited + EPSS + KEV]
C --> D[OpenVEX<br/>statements]
C -->|trigger| E[CRA Article 14<br/>draft + 24h clock + audit log]
B -.->|CI/CD · CLI · watch| F[Dashboard]
Quickstart (everything below works today)
pip install euvd-watch
euvd-watch version
# 1. Generate an SBOM for your project (using Syft, or bring your own)
syft dir:. -o cyclonedx-json > sbom.cdx.json
# 2. See what's inside it
euvd-watch scan sbom.cdx.json
# 3. Match it against the EUVD — show only actively exploited vulnerabilities
euvd-watch match sbom.cdx.json --exploited-only
# 4. Generate OpenVEX statements (conservative by design)
euvd-watch vex generate sbom.cdx.json -o openvex.json
# 5. Check whether anything crossed your CRA reporting threshold
euvd-watch cra check sbom.cdx.json
euvd-watch cra status
# 6. Watch it on a schedule - notify only new/resolved/changed findings
euvd-watch watch sbom.cdx.json --interval 6h
Commands
| Command | Status | What it does |
|---|---|---|
scan <sbom> |
✅ | Parse and normalize a CycloneDX (1.4–1.6) / SPDX (2.3) JSON SBOM into a component inventory. |
match <sbom> |
✅ | Match components against the EUVD, with confidence scoring and EPSS/KEV enrichment. Flags: --exploited-only, --min-confidence, --fail-on, --no-enrich, --save-findings, --timestamp. |
vex generate <sbom> |
✅ | Draft OpenVEX statements. Only provably safe findings become not_affected; everything uncertain stays under_investigation. Merges your vex-decisions.yaml (--fail-on-conflict for CI). |
vex init-decisions <sbom> |
✅ | Scaffold a vex-decisions.yaml from current findings for humans to fill in. |
cra check <sbom> |
✅ | Evaluate the configurable reporting trigger (EUVD exploited / CISA KEV / EPSS threshold) and open events. Exit 1 when a new event opens; exit 3 indeterminate when a required signal's source (KEV/EPSS) was unavailable so a clean result can't be trusted (see docs/cra.md). |
cra status / cra draft <id> / cra mark <id> |
✅ | Track the staged deadline clocks (24 h / 72 h / final report), render a prefilled notification draft with TODO-HUMAN markers, record human completion. |
cra verify-log |
✅ | Verify the tamper-evident (hash-chained) audit log; names the first broken entry. |
watch <sbom> |
✅ | Re-match on a schedule (--interval 6h) or once (--once, the default) and notify only new/resolved/changed findings (stdout, and --webhook URL). See docs/watch.md. |
db migrate |
✅ | Apply pending schema migrations to the consolidated state DB (state_dir/euvd-watch.sqlite) and import pre-0.4 state files. Runs transparently on every state-touching command; this makes it explicit. See docs/storage.md. |
web serve |
🧪 beta (1.1 target) |
Self-hostable dashboard: findings, VEX statuses, CRA countdowns, audit log, one password-gated write action. web hash-password sets the credential. WCAG 2.1 AA gated in CI; Docker Compose + Caddy deployment in docs/deploy.md. See docs/web.md. |
All implemented commands support --output json|table and CI-friendly exit codes
(0 clean, 1 findings, 2 error; cra check adds 3 indeterminate). Unimplemented
commands exit 2 with a clear message.
--output is a global option, so it goes before the command, not after it:
euvd-watch --output json match sbom.cdx.json --exploited-only # correct
euvd-watch match sbom.cdx.json --exploited-only --output json # exits 2: "No such option"
In JSON mode stdout carries only the JSON document — summaries and warnings go to
stderr — so euvd-watch --output json match sbom.cdx.json > findings.json is safe to
pipe straight into jq.
Using it in CI
The GitHub Action (action.yml at the repo root), the GitLab include-template
(templates/euvd-watch.gitlab-ci.yml) and the Docker image (docker/Dockerfile) are
implemented, schema-linted, and dogfooded by this repository's own CI — see
docs/integrations.md for the full reference.
GitHub Actions:
- uses: anchore/sbom-action@v0 # generate SBOM with Syft
with: { format: cyclonedx-json, output-file: sbom.cdx.json }
- uses: caisarus/euvd@v0.3.1
with:
sbom-path: sbom.cdx.json
fail-on: exploited
GitLab CI:
include:
- remote: 'https://raw.githubusercontent.com/caisarus/euvd/main/templates/euvd-watch.gitlab-ci.yml'
euvd-watch:
variables: { EUVDWATCH_SBOM: "sbom.cdx.json", EUVDWATCH_FAIL_ON: "exploited" }
Docker (ghcr.io/caisarus/euvd-watch, or build locally):
docker run --rm -v "$PWD:/work:ro" ghcr.io/caisarus/euvd-watch:latest match /work/sbom.cdx.json
# or build from a clone:
docker build -f docker/Dockerfile -t euvd-watch .
Configuration
euvd-watch.yaml (or --config, or EUVD_WATCH_* env vars):
cache_dir: ~/.cache/euvd-watch
epss_threshold: 0.5
min_confidence: medium
organization:
name: "Example S.R.L."
contact_email: security@example.com
product_name: "Example Product"
cra_trigger:
euvd_exploited: true
cisa_kev: true
epss_over_threshold: true
Design principles
- Reuse, don't reinvent — wrap Syft/cdxgen output, OpenVEX, EPSS, KEV; build only the missing glue.
- EUVD-first, with OSV/KEV/EPSS as supplements.
- Conservative VEX — never auto-suppress something that might be real risk.
- Human-in-the-loop reporting —
euvd-watchdrafts; a human confirms before anything is filed. The tool never submits anything automatically. - Auditable — every decision carries a human-readable explanation and lands in a hash-chained audit log.
- Deterministic — same inputs produce byte-identical outputs.
What euvd-watch is NOT
- Not an SBOM generator (use Syft/cdxgen).
- Not a general-purpose scanner replacement (Grype/Trivy remain great for NVD/OSV coverage).
- Not legal advice, and not an automatic filing tool — CRA notifications are always reviewed and submitted by a human through official channels.
Architecture & docs
- docs/matching.md — matching strategies & confidence scoring
- docs/cra.md — the CRA Article 14 workflow, deadline stages, and the audit log's honest threat model
- docs/euvd-api.md — the verified EUVD API surface this tool uses
- README.simple.md — the same story, explained so a child can follow it
- GLOSSARY.md — every technical term (SBOM, VEX, CRA, EPSS…) explained in plain language
- 🚧 coming with their milestones:
ARCHITECTURE.md,docs/deploy.md(self-hosting),CONTRIBUTING.md
Contributing
Early contributors very welcome — CONTRIBUTING.md is coming; until then, open an issue.
License
EUPL-1.2. Documentation provided in English and Romanian — see README.ro.md / vezi README.ro.md.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file euvd_watch-0.4.1.tar.gz.
File metadata
- Download URL: euvd_watch-0.4.1.tar.gz
- Upload date:
- Size: 704.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f14366bc9fb8d59175dd63611ee70541c7fdedc2a8d491544522fb133d2cb536
|
|
| MD5 |
7cb2f812d86d9d674aecb66576bfd060
|
|
| BLAKE2b-256 |
3180913567af2636020da4cfb1ba8a37e7b9aaaa019571207cd9bbdcb4120634
|
Provenance
The following attestation bundles were made for euvd_watch-0.4.1.tar.gz:
Publisher:
workflow.yaml on caisarus/euvd
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
euvd_watch-0.4.1.tar.gz -
Subject digest:
f14366bc9fb8d59175dd63611ee70541c7fdedc2a8d491544522fb133d2cb536 - Sigstore transparency entry: 2439948076
- Sigstore integration time:
-
Permalink:
caisarus/euvd@c645a7d3276a26f71ecf613fc185f53cb101cf21 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/caisarus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yaml@c645a7d3276a26f71ecf613fc185f53cb101cf21 -
Trigger Event:
push
-
Statement type:
File details
Details for the file euvd_watch-0.4.1-py3-none-any.whl.
File metadata
- Download URL: euvd_watch-0.4.1-py3-none-any.whl
- Upload date:
- Size: 126.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
09f86e5c9ac1b190f3abac143d4960a6415ff8b1274bbcf31b81ba955d3c41ec
|
|
| MD5 |
6b3741380dc4ac81d895c470975dcd38
|
|
| BLAKE2b-256 |
e9ccd9619edaa3b36d9555ab06a5da69ffc6d3b88110558dc1f1d9a9adabf821
|
Provenance
The following attestation bundles were made for euvd_watch-0.4.1-py3-none-any.whl:
Publisher:
workflow.yaml on caisarus/euvd
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
euvd_watch-0.4.1-py3-none-any.whl -
Subject digest:
09f86e5c9ac1b190f3abac143d4960a6415ff8b1274bbcf31b81ba955d3c41ec - Sigstore transparency entry: 2439948439
- Sigstore integration time:
-
Permalink:
caisarus/euvd@c645a7d3276a26f71ecf613fc185f53cb101cf21 -
Branch / Tag:
refs/tags/v0.4.1 - Owner: https://github.com/caisarus
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
workflow.yaml@c645a7d3276a26f71ecf613fc185f53cb101cf21 -
Trigger Event:
push
-
Statement type: