Skip to content

Commit 8a00366

Browse files
committed
fix: add lz4-java dependency to address CVE-2025-12183
1 parent aecd7ec commit 8a00366

File tree

2 files changed

+12
-0
lines changed

2 files changed

+12
-0
lines changed

service/application/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,12 @@
3939
<type>pom</type>
4040
<scope>import</scope>
4141
</dependency>
42+
<!-- Fix CVE-2025-12183: Out-of-bounds memory operations in lz4-java -->
43+
<dependency>
44+
<groupId>org.lz4</groupId>
45+
<artifactId>lz4-java</artifactId>
46+
<version>1.8.1</version>
47+
</dependency>
4248
<dependency>
4349
<groupId>com.fasterxml.jackson</groupId>
4450
<artifactId>jackson-bom</artifactId>

service/pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,12 @@
5454
<type>pom</type>
5555
<scope>import</scope>
5656
</dependency>
57+
<!-- Fix CVE-2025-12183: Out-of-bounds memory operations in lz4-java -->
58+
<dependency>
59+
<groupId>org.lz4</groupId>
60+
<artifactId>lz4-java</artifactId>
61+
<version>1.8.1</version>
62+
</dependency>
5763
<!-- logback/logstash integration -->
5864
<dependency>
5965
<groupId>net.logstash.logback</groupId>

0 commit comments

Comments
 (0)