UID2-7761: suppress CVE-2026-14456 in GCP/Azure private-operator images - #2710
Merged
Conversation
…ockerfiles PR #2708 bumped the eclipse-temurin base image digest and added an explicit apk upgrade for libcrypto3/libssl3 to ./Dockerfile, but missed adding the same upgrade to scripts/gcp-oidc/Dockerfile and scripts/azure-cc/Dockerfile — the base image digest bump alone does not ship the fixed openssl packages. Both images still failed the vulnerability scan in today's Publish All Operators run.
Per review feedback, uid2-operator is not exploitable to this CVE (ACCP never touches libssl's QUIC server; JSSE handles TLS over plain TCP). Reverts the apk upgrade added to scripts/gcp-oidc/Dockerfile and scripts/azure-cc/Dockerfile and restores a .trivyignore suppression instead, matching the reachability rationale used before #2708.
swibi-ttd
approved these changes
Aug 28, 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
Follow-up to #2708 (UID2-7760, UID2-7761). Per review feedback, uid2-operator is not
exploitable to CVE-2026-14456 (openssl libcrypto3/libssl3, HIGH — DoS via unbounded
memory growth in a QUIC server): uid2-operator terminates TLS via JSSE over plain TCP
and never runs an OpenSSL QUIC server, and the bundled Amazon Corretto Crypto Provider
(ACCP) only exposes JCA Cipher/Signature/MessageDigest/KeyAgreement via OpenSSL's EVP
API — it never touches libssl's QUIC server implementation. This is the same
reachability rationale
.trivyignoreused before #2708 replaced it with a real fix.scripts/gcp-oidc/Dockerfileandscripts/azure-cc/Dockerfilegot the base-imagedigest bump in #2708 but not the apk upgrade applied to
./Dockerfile, so both stillfail the vulnerability scan (confirmed via today's "Publish All Operators" run
33136276480).
Rather than patch those Dockerfiles too, this PR restores the
.trivyignoresuppression for CVE-2026-14456 (exp 2026-09-28), since the CVE isn't reachable in any
of the three images.
Test plan
🤖 Generated with Claude Code