UID2-7376: suppress CVE-2026-2100 (p11-kit) — not exploitable#413
Merged
Conversation
CVE-2026-2100 is a NULL pointer dereference in p11-kit (Alpine base image) triggered via C_DeriveKey. Our services are pure Java: the JVM uses JSSE for TLS and the Java cacerts keystore for trust, and never loads the native p11-kit PKCS#11 module loader or calls C_DeriveKey, so the vulnerable code path is not reachable. Following the established treatment for non-exploitable native base-image CVEs (cf. CVE-2026-45447 libcrypto3), this is suppressed in .trivyignore with a 'not reachable from the JVM' rationale and an expiry, rather than upgraded. A fix exists in Alpine v3.23 (>= 0.26.2-r0) but the pinned eclipse-temurin base image has not yet been rebuilt with it; the expiry resurfaces this for review once that lands. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
04dd12a to
76b5a21
Compare
cYKatherine
approved these changes
Jun 26, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Suppresses CVE-2026-2100 (HIGH) — a NULL pointer dereference in
p11-kit(Alpine base image) viaC_DeriveKey— in.trivyignore, with an expiry of 2026-09-01.Why suppress rather than upgrade
This service is pure Java. The JVM uses JSSE for TLS and the bundled Java
cacertskeystore for trust validation — it never loads the nativep11-kitPKCS#11 module loader and never callsC_DeriveKey, so the vulnerable code path is not reachable. The package is present only as a transitive dependency of the Alpine base image.This follows the team's established treatment for non-exploitable native base-image CVEs (cf.
CVE-2026-45447libcrypto3, already suppressed here with the same 'JVM uses JSSE, not the native lib' rationale). A fix exists in Alpine v3.23 (>= 0.26.2-r0) but the pinnedeclipse-temurinbase image has not yet been rebuilt with it; the expiry resurfaces this for review once that lands. Suppression is self-cleaning, whereas a manualapk --upgradeline would become silent dead weight once the base image catches up.Jira: UID2-7376