From 081bbbfbe2cc38eaa93fe6cfd58324401a6fc85c Mon Sep 17 00:00:00 2001 From: sean wibisono Date: Wed, 2 Sep 2026 12:06:15 +1000 Subject: [PATCH] UID2-7800, UID2-7801: suppress 2 CVEs in .trivyignore (exp 2026-12-02) - CVE-2026-66046 (UID2-7800) - CVE-2026-76641 (UID2-7801) Each is present but not reachable from this service; see the linked tickets for the per-CVE impact assessments. Reachability alone determines suppress-vs-fix. --- .trivyignore | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.trivyignore b/.trivyignore index 80537e9..6df4830 100644 --- a/.trivyignore +++ b/.trivyignore @@ -30,3 +30,16 @@ GHSA-r7wm-3cxj-wff9 exp:2026-09-27 # See: UID2-7662 CVE-2026-40984 exp:2026-11-11 +# CVE-2026-66046 — libexpat (Alpine base-image OS library) (HIGH). +# Not exploitable here: Dockerfile FROM eclipse-temurin:21-jre-alpine-3.23; pure-Java service. +# No JNI/native/expat references in src; libexpat present only as a transitive OS package of +# the base image, not invoked by Java XML parsing. +# See: UID2-7800 +CVE-2026-66046 exp:2026-12-02 + +# CVE-2026-76641 — libexpat (Alpine base-image native C library) (HIGH). +# Not exploitable here: Dockerfile FROM eclipse-temurin 21-jre-alpine-3.23; runs `java -jar +# uid2-core...jar`; pom.xml XML is Maven build metadata (Jackson deps), not runtime libexpat +# usage; no loadLibrary/JNI in source +# See: UID2-7801 +CVE-2026-76641 exp:2026-12-02