Skip to content

Commit

Permalink
other(cve): Fix 2 Critical CVEs (#3399)
Browse files Browse the repository at this point in the history
* other(cve): Fix 2 Critical CVEs

* other(cve): Fix CVE-2024-31573
  • Loading branch information
johnBgood authored Oct 1, 2024
1 parent fddd375 commit 2467e02
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 0 deletions.
7 changes: 7 additions & 0 deletions bundle/camunda-saas-bundle/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,13 @@
<artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
</dependency>

<!-- Fix CVE-2024-7254 -->
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java-util</artifactId>
<version>3.25.5</version>
</dependency>

<dependency>
<groupId>io.camunda.connector</groupId>
<artifactId>connector-gcp-secret-provider</artifactId>
Expand Down
6 changes: 6 additions & 0 deletions connectors-e2e-test/connectors-e2e-test-base/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,12 @@
<packaging>jar</packaging>

<dependencies>
<!-- Fix CVE-2024-31573 -->
<dependency>
<groupId>org.xmlunit</groupId>
<artifactId>xmlunit-core</artifactId>
<version>2.10.0</version>
</dependency>
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
Expand Down
7 changes: 7 additions & 0 deletions connectors/kafka/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,13 @@ except in compliance with the proprietary license.</license.inlineheader>

<dependencies>

<!-- Fix CVE-2022-36944 -->
<dependency>
<groupId>org.scala-lang</groupId>
<artifactId>scala-library</artifactId>
<version>2.13.15</version>
</dependency>

<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka-clients</artifactId>
Expand Down

0 comments on commit 2467e02

Please sign in to comment.