Skip to content

Commit c8e76ec

Browse files
authored
Merge pull request #8040 from microsoft/users/v-shufeng/fix-CVE-202311
fix 202311 CVE issue
2 parents 923b315 + 118acc9 commit c8e76ec

File tree

2 files changed

+28
-0
lines changed
  • Utils/azure-toolkit-ide-hdinsight-libs

2 files changed

+28
-0
lines changed

Utils/azure-toolkit-ide-hdinsight-libs/hdinsight-node-common/pom.xml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,12 +226,22 @@
226226
<groupId>org.xerial.snappy</groupId>
227227
<artifactId>snappy-java</artifactId>
228228
</exclusion>
229+
<exclusion>
230+
<groupId>org.apache.zookeeper</groupId>
231+
<artifactId>zookeeper</artifactId>
232+
</exclusion>
229233
</exclusions>
230234
</dependency>
231235
<dependency><!-- hadoop-common 3.3.3 CVE-2023-34455 -->
232236
<groupId>org.xerial.snappy</groupId>
233237
<artifactId>snappy-java</artifactId>
234238
</dependency>
239+
<dependency><!-- hadoop-common 3.3.3 CVE-2023-44981 -->
240+
<groupId>org.apache.zookeeper</groupId>
241+
<artifactId>zookeeper</artifactId>
242+
<scope>provided</scope>
243+
<version>3.7.2</version>
244+
</dependency>
235245
<dependency>
236246
<groupId>com.microsoft.azure</groupId>
237247
<artifactId>azure-client-runtime</artifactId>

Utils/azure-toolkit-ide-hdinsight-libs/spark-localrun-mock/pom.xml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,12 +222,22 @@
222222
<groupId>org.xerial.snappy</groupId>
223223
<artifactId>snappy-java</artifactId>
224224
</exclusion>
225+
<exclusion>
226+
<groupId>org.apache.zookeeper</groupId>
227+
<artifactId>zookeeper</artifactId>
228+
</exclusion>
225229
</exclusions>
226230
</dependency>
227231
<dependency><!-- hadoop-common 3.3.3 CVE-2023-34455 -->
228232
<groupId>org.xerial.snappy</groupId>
229233
<artifactId>snappy-java</artifactId>
230234
</dependency>
235+
<dependency><!-- hadoop-common 3.3.3 CVE-2023-44981 -->
236+
<groupId>org.apache.zookeeper</groupId>
237+
<artifactId>zookeeper</artifactId>
238+
<scope>provided</scope>
239+
<version>3.7.2</version>
240+
</dependency>
231241
<dependency>
232242
<groupId>org.jmockit</groupId>
233243
<artifactId>jmockit</artifactId>
@@ -321,6 +331,14 @@
321331
<groupId>org.apache.ivy</groupId>
322332
<artifactId>ivy</artifactId>
323333
</exclusion>
334+
<exclusion><!-- CVE-2023-44487 -->
335+
<groupId>io.netty</groupId>
336+
<artifactId>netty-codec-http2</artifactId>
337+
</exclusion>
338+
<exclusion><!-- CVE-2023-34462 -->
339+
<groupId>io.netty</groupId>
340+
<artifactId>netty-handler</artifactId>
341+
</exclusion>
324342
</exclusions>
325343
</dependency>
326344
<dependency>

0 commit comments

Comments
 (0)