[TICKET]: suppress CVE-2026-45447 in .trivyignore - #426
Open
swibi-ttd wants to merge 1 commit into
Open
Conversation
openssl (libcrypto3 / libssl3, Alpine base image) is present but not reachable from this service — see the linked PR. Reachability alone determines suppress-vs-fix.
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.
CVE-2026-45447 — suppress in
.trivyignoreJira: ticket pending — the title and the
# See:line in the entry are backfilled once it existsAdds a
.trivyignoreentry with expiry 2026-09-04 (1 month). No code fix: the vulnerable code path is not reachable from this service, and reachability alone determines suppress-vs-fix — a fixed version existing upstream does not change that.Change the expiry in review if you want a different window.
Triage report
CVE-2026-45447 — triage report
CVE-2026-45447 — Impact Assessment (uid2-core)
What the CVE is
CVE-2026-45447 is a use-after-free (CWE-416) in OpenSSL's PKCS#7 signature-verification path (
PKCS7_verify()incrypto/pkcs7/pk7_smime.c). When verifying aSignedDatastructure with an emptydigestAlgorithmsASN.1 SET, OpenSSL mismanages ownership of the caller-supplied BIO chain and frees a BIO the application still owns. A subsequentBIO_free()in the calling application then operates on freed memory — resulting in process crash, heap corruption, or potentially remote code execution.next-tracking variable to preserve BIO chain boundaries; shipped upstream in the 3.0.21 / 3.5.x line (2026-06-09) and backported by distros (RHSA-2026:25237/25239/26275, SUSE-SU-2026:2412-1, and Alpine).Whether/how it affects our services
The vulnerable package is present in uid2-core's runtime image —
Dockerfile:19runsapk add --no-cache --upgrade libpng libcrypto3 libssl3 musl musl-utils gnutlson the pinnedeclipse-temurin:21-jre-alpine-3.23base. However, it is not reachable from our code:pom.xml(and every pom in the tree) contains nonetty-tcnative,tomcat-native,conscrypt,bouncycastle, orwildfly-openssldependency. uid2-core is a pure-Java Vert.x service — TLS is handled by the JVM's JSSE stack, not nativelibssl/libcrypto.*.java,*.xml,*.json,*.propertiesforopenssl|pkcs7|s/mime|smime|libssl|libcrypto|OpenSsl|io.netty.handler.sslreturns only the Dockerfileapk addline — no source invokesPKCS7_verify()or any S/MIME verification.libcryptoroutine.Because the service never calls into native OpenSSL and never processes PKCS#7/S-MIME signed content, the use-after-free code path cannot be triggered.
libcrypto3/libssl3sit in the image as inert base-image OS libraries.Decision
Not affected → suppress in
.trivyignore(recommended expiry ≈ 1 month from today, e.g. 2026-09-04). This mirrors the treatment of CVE-2026-2100 (p11-kit) already suppressed on this very branch (swi-UID2-7376-p11-kit-cve-2026-2100): an Alpine base-image native C library that is present but unreachable from a pure-Java service. The availability of a fixed OpenSSL package does not change the verdict — an unexploitable, unreachable CVE is suppressed rather than fixed. No dependency upgrade or code change is warranted; if desired, the suppression naturally clears when the pinned eclipse-temurin base image is rebuilt with the patched Alpine OpenSSL.(This run is read-only and autonomous: no branch, PR,
.trivyignoreedit, Jira ticket, or Slack post was created — the deliverable is this reachability verdict and report only.)Sources: CVE Record · SentinelOne — OpenSSL UAF · SUSE advisory · Penligent technical writeup
Opened by uid2-vul-scan-agent. Verdict confidence: high. Please sanity-check the reachability argument before approving.