CHK-13432: fix: force netty-codec-http to 4.2.13.Final (GHSA-m4cv-j2px-7723)#368
Closed
Copilot wants to merge 4 commits into
Closed
CHK-13432: fix: force netty-codec-http to 4.2.13.Final (GHSA-m4cv-j2px-7723)#368Copilot wants to merge 4 commits into
Copilot wants to merge 4 commits into
Conversation
Agent-Logs-Url: https://github.com/getyourguide/openapi-validation-java/sessions/635ab203-2348-48ab-80fb-1cf775363b4c Co-authored-by: gygrobot <19344429+gygrobot@users.noreply.github.com>
…HTTP Request Smuggling Agent-Logs-Url: https://github.com/getyourguide/openapi-validation-java/sessions/635ab203-2348-48ab-80fb-1cf775363b4c Co-authored-by: gygrobot <19344429+gygrobot@users.noreply.github.com>
Copilot
AI
changed the title
CHK-13432: [WIP] Fix HTTP request smuggling vulnerability in netty codec
fix: force netty-codec-http to 4.2.13.Final (GHSA-m4cv-j2px-7723)
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.
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 incorrect chunk size parsing. The dependency is transitive viaspring-boot-starter-webflux→ Spring Boot BOM → Netty, so a direct version pin isn't possible.Changes
build.gradle— adds aresolutionStrategy.eachDependencyrule to forcenetty-codec-httpto4.2.13.Finalacross all subprojects, following the existing pattern used for Jackson (GHSA-2m67-wjpj-xhg9) and Tomcat (GHSA-rv64-5gf8-9qq8):Resolves Dependabot alert #56 / GHSA-m4cv-j2px-7723 / CHK-13432.
Original prompt