[release-4.18] OCPBUGS-80219: Fix CVE-2026-33186 using openshift-sustaining grpc-go fork#1041
Conversation
|
@katekeiroz-dev: This pull request references Jira Issue OCPBUGS-80219, 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. |
|
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 |
|
/ok-to-test |
|
/retest-required |
2 similar comments
|
/retest-required |
|
/retest-required |
|
/jira refresh |
|
@dlom: This pull request references Jira Issue OCPBUGS-80219, which is valid. The bug has been moved to the POST state. 7 validation(s) were run on this bug
No GitHub users were found matching the public email listed for the QA contact in Jira (ocp-sustaining-admins@redhat.com), skipping review request. 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. |
|
/retest |
…fork Uses openshift-sustaining/grpc-go v1.71.3-sec.1 fork which patches CVE-2026-33186 (gRPC-Go authorization bypass due to improper HTTP/2 path validation) while remaining compatible with Go 1.22. Signed-off-by: Kate Barreiros <kbarreir@redhat.com>
1d6888b to
3dc4cfe
Compare
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## release-4.18 #1041 +/- ##
=============================================
Coverage 46.70% 46.70%
=============================================
Files 97 97
Lines 11970 11970
=============================================
Hits 5590 5590
Misses 5763 5763
Partials 617 617 🚀 New features to boost your workflow:
|
|
|
/override ci/prow/security |
|
@2uasimojo: Overrode contexts on behalf of 2uasimojo: ci/prow/security 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 kubernetes-sigs/prow repository. |
|
@katekeiroz-dev: all tests passed! Full PR test history. Your PR dashboard. 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. I understand the commands that are listed here. |
|
/label backport-risk-assessed |
|
@germanparente: This PR has been marked as verified by 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. |
|
/jira refresh |
|
@katekeiroz-dev: This pull request references Jira Issue OCPBUGS-80219, which is valid. 7 validation(s) were run on this bug
No GitHub users were found matching the public email listed for the QA contact in Jira (ocp-sustaining-admins@redhat.com), skipping review request. 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. |
|
sustaining team can approve PR's only in case of golang module bumps. /label approved |
|
/approve |
|
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: 2uasimojo, germanparente, katekeiroz-dev The full list of commands accepted by this bot can be found here. The pull request process is described here DetailsNeeds approval from an approver in each of these files:
Approvers can indicate their approval by writing |
f0e7fae
into
openshift:release-4.18
|
@katekeiroz-dev: Jira Issue Verification Checks: Jira Issue OCPBUGS-80219 Jira Issue OCPBUGS-80219 has been moved to the MODIFIED state and will move to the VERIFIED state when the change is available in an accepted nightly payload. 🕓 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. |
|
Fix included in release 4.18.0-0.nightly-2026-07-23-212204 |
Summary
Fix CVE-2026-33186 (gRPC-Go authorization bypass due to improper HTTP/2 path validation) on release-4.18.
Uses the openshift-sustaining/grpc-go v1.71.3-sec.1 fork via a
replacedirective in go.mod. This fork patches the CVE while remaining compatible with Go 1.22 (the release-4.18 CI toolchain).Changes
replace google.golang.org/grpc => github.com/openshift-sustaining/grpc-go v1.71.3-sec.1to go.modWhy the fork?
Upstream grpc-go v1.79.3 (which fixes the CVE directly) transitively requires Go 1.24+ dependencies (
go-jose/go-jose/v4@v4.1.3,cloud.google.com/go/compute/metadata), which are incompatible with the release-4.18 CI builder image (Go 1.22.9/1.22.12).Related: OCPBUGS-80219