Skip to content

Commit

Permalink
Resolve CVE-2024-12798
Browse files Browse the repository at this point in the history
  • Loading branch information
rocketstack-matt committed Jan 2, 2025
1 parent 9d03518 commit 1bba881
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions translator/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-actuator</artifactId>
<exclusions>
<!-- Below exclusions are to eliminate CVE-2024-12798 -->
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</exclusion>
</exclusions>
</dependency>

<dependency>
Expand Down Expand Up @@ -58,6 +69,26 @@
<artifactId>kubernetes-client</artifactId>
<version>7.0.1</version>
</dependency>
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-core -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
<version>1.5.15</version>
</dependency>
<!-- https://mvnrepository.com/artifact/ch.qos.logback/logback-classic -->
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.15</version>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</exclusion>
</exclusions>
</dependency>

</dependencies>

<build>
Expand Down

0 comments on commit 1bba881

Please sign in to comment.