chore(fix): CVE fixes - #720
Merged
nsingla merged 3 commits intoJul 6, 2026
Merged
Conversation
Prevent denial-of-service via oversized webhook payloads by limiting the request body read to 2MB using io.LimitReader. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
When MustUseReference() is true, users could override security-sensitive WorkflowSpec fields (ServiceAccountName, SecurityContext, Volumes, etc.) via workflowTemplateRef submissions. Replace the single podSpecPatch deny-check with allow-list validation that rejects non-allowed fields, plus defense-in-depth sanitization before the strategic merge patch. Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
nsingla
force-pushed
the
cve_fixes_062026
branch
4 times, most recently
from
June 26, 2026 18:17
1c0cf7a to
7802e7b
Compare
Author
|
/build-konflux argoexec |
Author
|
/build-konflux workflowcontroller |
Update vulnerable dependencies: - golang.org/x/crypto: v0.36.0 → v0.52.0 - golang.org/x/net: v0.38.0 → v0.55.0 - github.com/go-jose/go-jose/v3: v3.0.4 → v3.0.5 - google.golang.org/grpc: v1.71.1 → v1.79.3 CVEs resolved (combined with cherry-picked Argo fixes): - CVE-2026-42508 (x/crypto ssh/knownhosts revocation bypass, CVSS 9.1) - CVE-2026-33186 (gRPC-Go auth bypass, CVSS 9.1) - CVE-2026-42294 (Argo Workflows webhook DoS, CVSS 8.2) - CVE-2026-42296 (Argo Workflows templateReferencing bypass, CVSS 8.1) - CVE-2026-39828 (x/crypto ssh unauthorized command execution) - CVE-2026-39829 (x/crypto ssh DoS via crafted public key) - CVE-2026-39830 (x/crypto ssh DoS via resource leak) - CVE-2026-39831 (x/crypto ssh missing user presence check) - CVE-2026-39832 (x/crypto ssh/agent key restriction bypass) - CVE-2026-25681 (x/net/html XSS) - CVE-2026-34986 (go-jose DoS via crafted JWE) - CVE-2026-32286 (pgproto3/v2 DoS — transitive, no v2 fix available) - CVE-2026-4427 (pgproto3/v2 DoS — duplicate of CVE-2026-32286) Jira tickets: RHOAIENG-71707, RHOAIENG-71708, RHOAIENG-71685, RHOAIENG-71686, RHOAIENG-70952, RHOAIENG-70953, RHOAIENG-70909, RHOAIENG-70911, RHOAIENG-70740, RHOAIENG-70744, RHOAIENG-70520, RHOAIENG-70523, RHOAIENG-70057, RHOAIENG-70061, RHOAIENG-69763, RHOAIENG-69765, RHOAIENG-69708, RHOAIENG-69718, RHOAIENG-69539, RHOAIENG-56825, RHOAIENG-56826, RHOAIENG-55771, RHOAIENG-55772, RHOAIENG-55302, RHOAIENG-55303, RHOAIENG-54317, RHOAIENG-54318 Signed-off-by: Nelesh Singla <117123879+nsingla@users.noreply.github.com>
nsingla
force-pushed
the
cve_fixes_062026
branch
from
June 26, 2026 18:42
7802e7b to
fdfe439
Compare
Author
|
/build-konflux argoexec |
Author
|
/build-konflux workflowcontroller |
hbelmiro
approved these changes
Jul 6, 2026
nsingla
merged commit Jul 6, 2026
a8bb09e
into
red-hat-data-services:rhoai-3.3
85 of 93 checks passed
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.
Update vulnerable dependencies:
CVEs resolved (combined with cherry-picked Argo fixes):
Jira tickets:
RHOAIENG-71707, RHOAIENG-71708, RHOAIENG-71685, RHOAIENG-71686,
RHOAIENG-70952, RHOAIENG-70953, RHOAIENG-70909, RHOAIENG-70911,
RHOAIENG-70740, RHOAIENG-70744, RHOAIENG-70520, RHOAIENG-70523,
RHOAIENG-70057, RHOAIENG-70061, RHOAIENG-69763, RHOAIENG-69765,
RHOAIENG-69708, RHOAIENG-69718, RHOAIENG-69539,
RHOAIENG-56825, RHOAIENG-56826, RHOAIENG-55771, RHOAIENG-55772,
RHOAIENG-55302, RHOAIENG-55303, RHOAIENG-54317, RHOAIENG-54318
Motivation
Modifications
Verification