UID2-6655: Suppress CVE-2026-1584 (gnutls) in .trivyignore#384
Merged
Conversation
Add explicit gnutls upgrade in Dockerfile to address HIGH severity vulnerability CVE-2026-1584 in gnutls 3.8.11-r0 (fixed in 3.8.12-r0) in the alpine base image. The vulnerability allows Remote Denial of Service via crafted ClientHello with invalid PSK. Jira: UID2-6655 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
gnutls is an OS-level library present in the alpine base image but is not used by our Java service. Upgrading it via apk introduces unnecessary risk of breaking system-level dependencies. The vulnerability (Remote DoS via crafted ClientHello) has no impact on our software. CVE-2026-1584 exp:2026-08-27 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
mcollins-ttd
approved these changes
Feb 27, 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
CVE-2026-1584 (HIGH severity) was discovered in
gnutls 3.8.11-r0in the eclipse-temurin alpine base image.Decision: Suppress in
.trivyignorerather than upgradinggnutlsviaapk.Rationale
gnutlsis an OS-level TLS library present in the alpine base image but is not used by our Java service. The vulnerability allows Remote Denial of Service via a crafted ClientHello with invalid PSK — a TLS-layer attack vector that has no impact on our application since we do not use gnutls for any TLS handling (the JVM handles all TLS operations).Upgrading OS libraries via
apk add --upgradein Dockerfiles introduces unnecessary risk of unintended system-level dependency changes and should be avoided when the library does not directly affect our software.Changes
gnutlsfromapk add --no-cache --upgradeinDockerfileCVE-2026-1584to.trivyignorewith expiry2026-08-27(6 months)CVE Details
Test plan
🤖 Generated with Claude Code