Skip to content

Commit 33998ab

Browse files
committed
fix(security): Override vulnerable lz4-java dependency to address CVE-2025-12183
1 parent a626728 commit 33998ab

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

presto-kafka/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,20 @@
7272
<dependency>
7373
<groupId>org.apache.kafka</groupId>
7474
<artifactId>kafka-clients</artifactId>
75+
<exclusions>
76+
<exclusion>
77+
<groupId>org.lz4</groupId>
78+
<artifactId>lz4-java</artifactId>
79+
</exclusion>
80+
</exclusions>
81+
</dependency>
82+
83+
<!-- CVE-2025-12183: Override vulnerable lz4-java from kafka-clients -->
84+
<dependency>
85+
<groupId>at.yawk.lz4</groupId>
86+
<artifactId>lz4-java</artifactId>
87+
<version>1.10.2</version>
88+
<scope>runtime</scope>
7589
</dependency>
7690

7791
<dependency>

0 commit comments

Comments
 (0)