Skip to content

Commit 70da797

Browse files
Upgrade Netty to 4.1.132.Final to fix CVE-2026-33870 and CVE-2026-33871
Add Netty BOM to dependencyManagement to override the vulnerable transitive Netty version (~4.1.115.Final) pulled in by Vert.x 4.5.21. - CVE-2026-33870: HTTP request smuggling via chunked extension parsing (CVSS 7.5) - CVE-2026-33871: HTTP/2 DoS via CONTINUATION frame flood (CVSS 8.7) See: UID2-6837 Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 2d812a9 commit 70da797

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
<maven.compiler.target>21</maven.compiler.target>
1414
<vertx.version>4.5.21</vertx.version>
1515
<uid2-shared.version>11.4.0</uid2-shared.version>
16+
<netty.version>4.1.132.Final</netty.version>
1617
</properties>
1718

1819
<repositories>
@@ -36,6 +37,13 @@
3637

3738
<dependencyManagement>
3839
<dependencies>
40+
<dependency>
41+
<groupId>io.netty</groupId>
42+
<artifactId>netty-bom</artifactId>
43+
<version>${netty.version}</version>
44+
<type>pom</type>
45+
<scope>import</scope>
46+
</dependency>
3947
<dependency>
4048
<groupId>org.junit</groupId>
4149
<artifactId>junit-bom</artifactId>

0 commit comments

Comments
 (0)