CHK-13427: fix: upgrade io.netty to 4.2.13.Final (GHSA-38f8-5428-x5cv)#362
Merged
catarina-correia merged 4 commits intoMay 22, 2026
Merged
Conversation
Agent-Logs-Url: https://github.com/getyourguide/openapi-validation-java/sessions/9f2405ce-d78a-4d99-a122-3e3e307f9f05 Co-authored-by: gygrobot <19344429+gygrobot@users.noreply.github.com>
…HTTP Request Smuggling Agent-Logs-Url: https://github.com/getyourguide/openapi-validation-java/sessions/9f2405ce-d78a-4d99-a122-3e3e307f9f05 Co-authored-by: gygrobot <19344429+gygrobot@users.noreply.github.com>
Copilot
AI
changed the title
CHK-13427: [WIP] Fix HTTP request smuggling vulnerability in Netty
fix: upgrade io.netty to 4.2.13.Final (GHSA-38f8-5428-x5cv)
May 22, 2026
The gradlew.bat was inadvertently modified to use LF line endings during the security fix commit. This restores the original CRLF line endings to match main and avoid unnecessary diff noise.
catarina-correia
approved these changes
May 22, 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.
io.netty:netty-codec-http≤ 4.2.12.Final is vulnerable to HTTP Request Smuggling via malformed Transfer-Encoding headers (GHSA-38f8-5428-x5cv, MEDIUM). The affected version (4.2.12.Final) arrives transitively viaspring-boot-starter-reactor-netty→reactor-netty-http:1.3.4.Changes
build.gradle— adds aresolutionStrategy.eachDependencyconstraint forcing allio.nettygroup modules to ≥ 4.2.13.Final, consistent with the existing CVE mitigations for jackson-core and tomcat-embed-core:All
io.nettymodules are version-locked together upstream, so the constraint targets the full group to maintain version consistency. Confirmed via dependency tree:netty-codec-http:4.2.10.Final -> 4.2.13.Final.Resolves GitHub Dependabot alert #61 / CHK-13427.
Original prompt