-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix(hbase): CVE-34455 * update changelog
- Loading branch information
Showing
3 changed files
with
100 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
97 changes: 97 additions & 0 deletions
97
hbase/stackable/patches/phoenix/5.2.0/02-CVE-2023-34455-update-snappy-version.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,97 @@ | ||
Fix CVE-2023-34455 | ||
|
||
See https://github.com/stackabletech/vulnerabilities/issues/558 | ||
|
||
diff --git a/phoenix-core-client/pom.xml b/phoenix-core-client/pom.xml | ||
index f711b0f6f..3cfbffef9 100644 | ||
--- a/phoenix-core-client/pom.xml | ||
+++ b/phoenix-core-client/pom.xml | ||
@@ -230,6 +230,12 @@ | ||
<groupId>org.apache.hadoop</groupId> | ||
<artifactId>hadoop-auth</artifactId> | ||
</dependency> | ||
+ <!-- Fix CVE-2023-34455 --> | ||
+ <dependency> | ||
+ <groupId>org.xerial.snappy</groupId> | ||
+ <artifactId>snappy-java</artifactId> | ||
+ <version>1.1.10.4</version> | ||
+ </dependency> | ||
|
||
<!-- HBase dependencies --> | ||
<dependency> | ||
diff --git a/phoenix-core-server/pom.xml b/phoenix-core-server/pom.xml | ||
index d5032ece2..e47fb0837 100644 | ||
--- a/phoenix-core-server/pom.xml | ||
+++ b/phoenix-core-server/pom.xml | ||
@@ -59,6 +59,12 @@ | ||
<groupId>org.apache.hadoop</groupId> | ||
<artifactId>hadoop-mapreduce-client-core</artifactId> | ||
</dependency> | ||
+ <!-- Fix CVE-2023-34455 --> | ||
+ <dependency> | ||
+ <groupId>org.xerial.snappy</groupId> | ||
+ <artifactId>snappy-java</artifactId> | ||
+ <version>1.1.10.4</version> | ||
+ </dependency> | ||
|
||
<!-- HBase dependencies --> | ||
<dependency> | ||
@@ -192,4 +198,4 @@ | ||
</plugin> | ||
</plugins> | ||
</build> | ||
-</project> | ||
\ No newline at end of file | ||
+</project> | ||
diff --git a/phoenix-pherf/pom.xml b/phoenix-pherf/pom.xml | ||
index c03fff9a1..cdcce2f98 100644 | ||
--- a/phoenix-pherf/pom.xml | ||
+++ b/phoenix-pherf/pom.xml | ||
@@ -159,6 +159,12 @@ | ||
<groupId>org.apache.hbase</groupId> | ||
<artifactId>hbase-server</artifactId> | ||
</dependency> | ||
+ <!-- Fix CVE-2023-34455 --> | ||
+ <dependency> | ||
+ <groupId>org.xerial.snappy</groupId> | ||
+ <artifactId>snappy-java</artifactId> | ||
+ <version>1.1.10.4</version> | ||
+ </dependency> | ||
|
||
<!-- Test Dependencies --> | ||
<dependency> | ||
diff --git a/phoenix-tracing-webapp/pom.xml b/phoenix-tracing-webapp/pom.xml | ||
index d2d1549ef..c8054159e 100755 | ||
--- a/phoenix-tracing-webapp/pom.xml | ||
+++ b/phoenix-tracing-webapp/pom.xml | ||
@@ -89,6 +89,12 @@ | ||
<groupId>org.apache.hbase</groupId> | ||
<artifactId>hbase-common</artifactId> | ||
</dependency> | ||
+ <!-- Fix CVE-2023-34455 --> | ||
+ <dependency> | ||
+ <groupId>org.xerial.snappy</groupId> | ||
+ <artifactId>snappy-java</artifactId> | ||
+ <version>1.1.10.4</version> | ||
+ </dependency> | ||
</dependencies> | ||
|
||
<build> | ||
diff --git a/pom.xml b/pom.xml | ||
index 4abcb5a28..21dcf71ad 100644 | ||
--- a/pom.xml | ||
+++ b/pom.xml | ||
@@ -850,6 +850,13 @@ | ||
</exclusion> | ||
</exclusions> | ||
</dependency> | ||
+ <!-- Fix CVE-2023-34455 --> | ||
+ <dependency> | ||
+ <groupId>org.xerial.snappy</groupId> | ||
+ <artifactId>snappy-java</artifactId> | ||
+ <version>1.1.10.4</version> | ||
+ </dependency> | ||
+ | ||
<dependency> | ||
<groupId>org.apache.hadoop</groupId> | ||
<artifactId>hadoop-common</artifactId> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
01-cyclonedx-plugin.patch | ||
02-CVE-2023-34455-update-snappy-version.patch |