Jackson Faster-xml vulnerability. 22/95822/1
authorThomas Nelson (arthurdent3) <nelson24@att.com>
Tue, 17 Sep 2019 13:49:58 +0000 (09:49 -0400)
committerThomas Nelson (arthurdent3) <nelson24@att.com>
Tue, 17 Sep 2019 13:52:53 +0000 (09:52 -0400)
CVE-2019-14439 Information Disclosure Vulnerability

FasterXML Jackson-databind is prone to an information-disclosure
vulnerability that occurs due to a polymorphic typing issue.
Specifically, this issue occurs when an externally exposed JSON endpoint
has default typing enabled and has logback jar in the classpath.

An attacker can exploit this issue to obtain sensitive information that
may aid in further attacks.

Issue-ID: MUSIC-504
Signed-off-by: Thomas Nelson (arthurdent3) <nelson24@att.com>
Signed-off-by: Thomas Nelson (arthurdent3) <nelson24@att.com>
Change-Id: I2c31986ff2d792d482f84406e96c47dbf652f32f

pom.xml
version.properties

diff --git a/pom.xml b/pom.xml
index f8ab95a..11b999a 100755 (executable)
--- a/pom.xml
+++ b/pom.xml
@@ -27,7 +27,7 @@
     <groupId>org.onap.music</groupId>
     <artifactId>MUSIC</artifactId>
     <packaging>jar</packaging>
-    <version>3.2.35-SNAPSHOT</version>
+    <version>3.2.36-SNAPSHOT</version>
     <description>
             This is the MUSIC REST interface, packaged as a Springboot jar file.
     </description>
@@ -37,7 +37,7 @@
         <artifactId>oparent</artifactId>
         <version>2.0.0</version>
         <relativePath/>
-    </parent> 
+    </parent>
 
     <dependencyManagement>
         <dependencies>
             <groupId>com.datastax.cassandra</groupId>
             <artifactId>cassandra-driver-core</artifactId>
             <version>${cassandra.version}</version>
-        </dependency> 
+        </dependency>
         <!-- /Cassandra -->
         <!-- Jersey -->
         <dependency>
         <dependency>
             <groupId>com.fasterxml.jackson.datatype</groupId>
             <artifactId>jackson-datatype-jsr310</artifactId>
-            <version>2.9.8</version>
+            <version>2.9.9</version>
         </dependency>
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-databind</artifactId>
-            <version>2.9.8</version>
+            <version>2.9.9.2</version>
         </dependency>
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-core</artifactId>
-            <version>2.9.8</version>
+            <version>2.9.9</version>
         </dependency>
         <dependency>
             <groupId>com.fasterxml.jackson.core</groupId>
             <artifactId>jackson-annotations</artifactId>
-            <version>2.9.8</version>
+            <version>2.9.9</version>
         </dependency>
         <dependency>
             <groupId>org.apache.httpcomponents</groupId>
                 </plugins>
             </build>
         </profile>
-        <profile> 
-            <id>default</id> 
+        <profile>
+            <id>default</id>
         </profile>
     </profiles>
     <distributionManagement>
index c9da85e..a7893b2 100755 (executable)
@@ -4,7 +4,7 @@
 
 major=3
 minor=2
-patch=35
+patch=36
 
 base_version=${major}.${minor}.${patch}