Fix security problem with Zookeeper 38/85338/1
authorliamfallon <liam.fallon@est.tech>
Mon, 15 Apr 2019 15:31:55 +0000 (15:31 +0000)
committerliamfallon <liam.fallon@est.tech>
Mon, 15 Apr 2019 15:31:55 +0000 (15:31 +0000)
Issue-ID: POLICY-1540
Change-Id: I5c549a1dffb21b54c81a44ba69ca49cb24732558
Signed-off-by: liamfallon <liam.fallon@est.tech>
plugins/plugins-context/plugins-context-locking/plugins-context-locking-curator/pom.xml
plugins/plugins-event/plugins-event-carrier/plugins-event-carrier-kafka/pom.xml
testsuites/integration/integration-uservice-test/pom.xml

index 8424969..bc839f2 100644 (file)
@@ -52,7 +52,7 @@
         <dependency>
             <groupId>org.apache.zookeeper</groupId>
             <artifactId>zookeeper</artifactId>
-            <version>3.4.13</version>
+            <version>3.4.14</version>
             <exclusions>
             <!-- Zookeeper uses an ancient version of log4j -->
                 <exclusion>
index 64e11a7..3eccdc1 100644 (file)
             <groupId>org.apache.kafka</groupId>
             <artifactId>kafka-clients</artifactId>
             <version>${version.kafka}</version>
+            <exclusions>
+                <!-- The default Zookeeper version in Kafka has vulnerabilities -->
+                <exclusion>
+                    <groupId>org.apache.zookeeper</groupId>
+                    <artifactId>zookeeper</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
     </dependencies>
 
index 3b27641..8772db0 100644 (file)
             <artifactId>kafka_2.12</artifactId>
             <version>${version.kafka}</version>
             <scope>test</scope>
+             <exclusions>
+                <!-- The default Zookeeper version in Kafka has vulnerabilities -->
+                <exclusion>
+                    <groupId>org.apache.zookeeper</groupId>
+                    <artifactId>zookeeper</artifactId>
+                </exclusion>
+            </exclusions>
         </dependency>
         <dependency>
             <groupId>com.salesforce.kafka.test</groupId>