Skip to content

[OCPBUGS-80846] fix: CVE-2026-33814: Patch HTTP/2 DoS vulnerability via golang.org/x/net sustaining fork in 4.21 - #115

Open
atewari-rh wants to merge 1 commit into
openshift:release-4.21from
atewari-rh:CVE-2026-33814_release-4.21
Open

[OCPBUGS-80846] fix: CVE-2026-33814: Patch HTTP/2 DoS vulnerability via golang.org/x/net sustaining fork in 4.21#115
atewari-rh wants to merge 1 commit into
openshift:release-4.21from
atewari-rh:CVE-2026-33814_release-4.21

Conversation

@atewari-rh

@atewari-rh atewari-rh commented Aug 26, 2026

Copy link
Copy Markdown

CVE-2026-33814: Patch HTTP/2 DoS vulnerability via golang.org/x/net sustaining fork

Apply CVE-2026-33814 fix (HTTP/2 frame size validation) to all Go modules
by replacing golang.org/x/net with the openshift-sustaining/net backport.

Affected modules:

  • Root module (.)
  • openshift/tools
  • packaging
  • test

Replace directive: github.com/openshift-sustaining/net@v0.50.0-sec.4
(backport of CVE fix for v0.50.0 base, Go 1.24.0)

The fix introduces s.Valid() check in http2/transport.go and http2/server.go
to validate SETTINGS frame max frame size, preventing DoS attacks.

All vendor directories regenerated and replace directives recorded in modules.txt.

Related JIRA:

…net sustaining fork

Signed-off-by: atewari <atewari@redhat.com>
@openshift-merge-bot

Copy link
Copy Markdown

Pipeline controller notification
This repo is configured to use the pipeline controller. Second-stage tests will be triggered either automatically or after lgtm label is added, depending on the repository configuration. The pipeline controller will automatically detect which contexts are required and will utilize /test Prow commands to trigger the second stage.

For optional jobs, comment /test ? to see a list of all defined jobs. To trigger manually all jobs from second stage use /pipeline required command.

This repository is configured in: LGTM mode

@openshift-ci-robot

Copy link
Copy Markdown

@atewari-rh: No Jira issue with key CVE-2026 exists in the tracker at https://redhat.atlassian.net.
Once a valid jira issue is referenced in the title of this pull request, request a refresh with /jira refresh.

Details

In response to this:

CVE-2026-33814: Patch HTTP/2 DoS vulnerability via golang.org/x/net sustaining fork

Apply CVE-2026-33814 fix (HTTP/2 frame size validation) to all Go modules
by replacing golang.org/x/net with the openshift-sustaining/net backport.

Affected modules:

  • Root module (.)
  • openshift/tools
  • packaging
  • test

Replace directive: github.com/openshift-sustaining/net@v0.50.0-sec.4
(backport of CVE fix for v0.50.0 base, Go 1.24.0)

The fix introduces s.Valid() check in http2/transport.go and http2/server.go
to validate SETTINGS frame max frame size, preventing DoS attacks.

All vendor directories regenerated and replace directives recorded in modules.txt.

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.

@coderabbitai

coderabbitai Bot commented Aug 26, 2026

Copy link
Copy Markdown

Important

Review skipped

Auto reviews are disabled on base/target branches other than the default branch.

Please check the settings in the CodeRabbit UI or the .coderabbit.yaml file in this repository. To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: Repository: openshift/coderabbit/.coderabbit.yaml

Review profile: CHILL

Plan: Pro Plus

Run ID: b0b50895-c6b5-4ac6-aab6-ef2b138320a9

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Comment @coderabbitai help to get the list of available commands.

@openshift-ci openshift-ci Bot added the needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. label Aug 26, 2026
@openshift-ci

openshift-ci Bot commented Aug 26, 2026

Copy link
Copy Markdown

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 /ok-to-test on its own line. Until that is done, I will not automatically test new commits in this PR, but the usual testing commands by org members will still work.

Regular contributors should join the org to skip this step.

Once the patch is verified, the new status will be reflected by the ok-to-test label.

I understand the commands that are listed here.

Details

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 kubernetes-sigs/prow repository.

@openshift-ci
openshift-ci Bot requested review from RadekManak and racheljpg August 26, 2026 11:23
@openshift-ci

openshift-ci Bot commented Aug 26, 2026

Copy link
Copy Markdown

[APPROVALNOTIFIER] This PR is NOT APPROVED

This pull-request has been approved by: atewari-rh
Once this PR has been reviewed and has the lgtm label, please assign radekmanak for approval. For more information see the Code Review Process.

The full list of commands accepted by this bot can be found here.

Details Needs approval from an approver in each of these files:

Approvers can indicate their approval by writing /approve in a comment
Approvers can cancel approval by writing /approve cancel in a comment

@openshift-ci-robot

Copy link
Copy Markdown

@atewari-rh: No Jira issue with key CVE-2026 exists in the tracker at https://redhat.atlassian.net.
Once a valid jira issue is referenced in the title of this pull request, request a refresh with /jira refresh.

Details

In response to this:

CVE-2026-33814: Patch HTTP/2 DoS vulnerability via golang.org/x/net sustaining fork

Apply CVE-2026-33814 fix (HTTP/2 frame size validation) to all Go modules
by replacing golang.org/x/net with the openshift-sustaining/net backport.

Affected modules:

  • Root module (.)
  • openshift/tools
  • packaging
  • test

Replace directive: github.com/openshift-sustaining/net@v0.50.0-sec.4
(backport of CVE fix for v0.50.0 base, Go 1.24.0)

The fix introduces s.Valid() check in http2/transport.go and http2/server.go
to validate SETTINGS frame max frame size, preventing DoS attacks.

All vendor directories regenerated and replace directives recorded in modules.txt.

Related JIRA:

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.

@atewari-rh

Copy link
Copy Markdown
Author

/ok-to-test

@atewari-rh atewari-rh changed the title fix: CVE-2026-33814: Patch HTTP/2 DoS vulnerability via golang.org/x/net sustaining fork [OCPBUGS-80846] fix: CVE-2026-33814: Patch HTTP/2 DoS vulnerability via golang.org/x/net sustaining fork in 4.21 Aug 26, 2026
@openshift-ci

openshift-ci Bot commented Aug 26, 2026

Copy link
Copy Markdown

@atewari-rh: Cannot trigger testing until a trusted user reviews the PR and leaves an /ok-to-test message.

Details

In response to this:

/ok-to-test

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 kubernetes-sigs/prow repository.

@Pranavgarud06

Copy link
Copy Markdown

/ok-to-test

@openshift-ci openshift-ci Bot added ok-to-test Indicates a non-member PR verified by an org member that is safe to test. and removed needs-ok-to-test Indicates a PR that requires an org member to verify it is safe to test. labels Aug 26, 2026
@openshift-ci

openshift-ci Bot commented Aug 26, 2026

Copy link
Copy Markdown

@atewari-rh: The following test failed, say /retest to rerun all failed tests or /retest-required to rerun all mandatory failed tests:

Test name Commit Details Required Rerun command
ci/prow/verify-commits b87d558 link false /test verify-commits

Full PR test history. Your PR dashboard.

Details

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 kubernetes-sigs/prow repository. I understand the commands that are listed here.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

ok-to-test Indicates a non-member PR verified by an org member that is safe to test.

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants