fix: bump netty to 4.1.135.Final to remediate CVE-2026-44249 and CVE-2026-45416#925
Open
nikagra wants to merge 1 commit into
Open
fix: bump netty to 4.1.135.Final to remediate CVE-2026-44249 and CVE-2026-45416#925nikagra wants to merge 1 commit into
nikagra wants to merge 1 commit into
Conversation
…2026-45416 netty-handler prior to 4.1.135.Final is affected by two HIGH severity vulnerabilities: - CVE-2026-44249 (CVSS 8.1): IpSubnetFilterRule.compareTo() performs an incorrect masking operation, allowing attackers to bypass IPv6 subnet ACL rules with valid public IP addresses. - CVE-2026-45416 (CVSS 7.5): SslClientHelloHandler.decode() eagerly allocates up to 16 MiB of unpooled memory when maxClientHelloLength=0 (the SniHandler default). A crafted TLS ClientHello can trigger memory exhaustion (DoS). One-line change in the root pom.xml. All consumers of java-driver-core will inherit the fix transitively once a new driver release is published. Tracked in: scylladb/kafka-connect-scylladb#184
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Organization UI Review profile: CHILL Plan: Pro Plus Run ID: 📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe Maven property 🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. 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 |
nikagra
added a commit
to scylladb/kafka-connect-scylladb
that referenced
this pull request
Jun 15, 2026
Consume java-driver 4.19.2.0 which inherits the following fixes: - CVE-2026-42583: netty-handler HTTP response splitting (fixed in 4.1.133.Final) - CVE-2026-44249: netty-handler IPv6 subnet rule bypass (fixed in 4.1.135.Final) - CVE-2026-45416: netty-handler SslClientHelloHandler DoS (fixed in 4.1.135.Final) The driver 4.19.2.0 ships with netty 4.1.135.Final via scylladb/java-driver#925, so the temporary netty-bom override added in #165 and #185 is no longer needed. Also bumps lz4-java from 1.10.1 to 1.11.0 to match the driver POM. Closes #164, closes #184 Supersedes: #165, #185 (Stage 1 overrides — safe to close) Supersedes: Renovate PR #156 (lz4-java 1.10.1 → 1.11.0)
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.
Summary
Root fix for CVE-2026-44249 and CVE-2026-45416, tracked in scylladb/kafka-connect-scylladb#184.
netty-handlerprior to4.1.135.Finalis affected by two HIGH severity vulnerabilities:CVE-2026-44249 (CVSS 8.1):
IpSubnetFilterRule.compareTo()performs an incorrect masking operation, allowing attackers to bypass IPv6 subnet ACL rules with valid public IP addresses.CVE-2026-45416 (CVSS 7.5):
SslClientHelloHandler.decode()eagerly allocates up to 16 MiB of unpooled memory whenmaxClientHelloLength=0(theSniHandlerdefault). A crafted TLS ClientHello can trigger memory exhaustion (DoS).Change
One-line change in the root
pom.xml. All consumers ofjava-driver-corewill inherit the fix transitively once a new driver release is published, eliminating the need for downstream<dependencyManagement>overrides.Follow-up
After this merges and a new release is cut, scylladb/kafka-connect-scylladb will bump
scylladb.versionand remove the temporary BOM override added in Stage 1.