[release-4.17] OCPBUGS-82713, OCPBUGS-82692: Address CVE-2026-35469#2690
[release-4.17] OCPBUGS-82713, OCPBUGS-82692: Address CVE-2026-35469#2690atewari-rh wants to merge 1 commit into
Conversation
Signed-off-by: atewari <atewari@redhat.com>
|
Important Review skippedAuto reviews are disabled on base/target branches other than the default branch. Please check the settings in the CodeRabbit UI or the ⚙️ Run configurationConfiguration used: Repository: openshift/coderabbit/.coderabbit.yaml Review profile: CHILL Plan: Enterprise Run ID: You can disable this status message by setting the Use the checkbox below for a quick retry:
✨ Finishing Touches🧪 Generate unit tests (beta)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
@atewari-rh: the contents of this pull request could not be automatically validated. The following commits could not be validated and must be approved by a top-level approver:
Comment |
|
@atewari-rh: This pull request references Jira Issue OCPBUGS-82713, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. This pull request references Jira Issue OCPBUGS-82692, which is invalid:
Comment The bug has been updated to refer to the pull request using the external bug tracker. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: atewari-rh The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
Hi @atewari-rh. Thanks for your PR. I'm waiting for a openshift member to verify that this patch is reasonable to test. If it is, they should reply with Regular contributors should join the org to skip this step. Once the patch is verified, the new status will be reflected by the I understand the commands that are listed here. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. |
Summary
Bump
github.com/moby/spdystreamfrom v0.2.0 to v0.5.1 on release-4.17 to address CVE-2026-35469 (SPDY frame parsing DoS).Problem
github.com/moby/spdystream≤ v0.5.0 does not validate attacker-controlled counts/lengths in SPDY/3 control frames before allocation. A remote peer that can send SPDY frames can trigger memory exhaustion (OOM) via crafted SETTINGS/header frames.Kubernetes uses spdystream via
k8s.io/apimachinery/pkg/util/httpstream/spdyfor kubelet streaming (exec/attach/portforward) and kube-apiserver→kubelet SPDY proxy paths.On release-4.17, the dependency was pinned at v0.2.0.
Solution
Vendor bump to v0.5.1, which adds bounds checks on SETTINGS entry count, header count, and header field sizes.