File tree 2 files changed +12
-3
lines changed
src/main/java/com/fasterxml/jackson/databind/jsontype/impl
2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,15 @@ Project: jackson-databind
4
4
=== Releases ===
5
5
------------------------------------------------------------------------
6
6
7
+ 2.7.9.7 (not yet released)
8
+
9
+ #2410: Block one more gadget type (HikariCP, CVE-2019-14540)
10
+ #2420: Block one more gadget type (cxf-jax-rs, no CVE allocated yet)
11
+ #2449: Block one more gadget type (HikariCP, CVE-2019-14439 / CVE-2019-16335)
12
+ #2462: Block two more gadget types (commons-configuration/-2)
13
+ #2478: Block two more gadget types (commons-dbcp, p6spy, CVE-2019-16942 / CVE-2019-16943)
14
+ #2498: Block one more gadget type (apache-log4j-extras/1.2, CVE-2019-17531)
15
+
7
16
2.7.9.6 (26-Jul-2019)
8
17
9
18
#2326: Block one more gadget type (CVE-2019-12086)
Original file line number Diff line number Diff line change @@ -54,6 +54,9 @@ public class SubTypeValidator
54
54
// [databind#1855]: more 3rd party
55
55
s .add ("org.apache.tomcat.dbcp.dbcp2.BasicDataSource" );
56
56
s .add ("com.sun.org.apache.bcel.internal.util.ClassLoader" );
57
+ // [databind#1899]: more 3rd party
58
+ s .add ("org.hibernate.jmx.StatisticsService" );
59
+ s .add ("org.apache.ibatis.datasource.jndi.JndiDataSourceFactory" );
57
60
// [databind#2032]: more 3rd party; data exfiltration via xml parsed ext entities
58
61
s .add ("org.apache.ibatis.parsing.XPathParser" );
59
62
@@ -63,9 +66,6 @@ public class SubTypeValidator
63
66
// [databind#2058]: Oracle JDBC driver, with jndi/ldap lookup
64
67
s .add ("oracle.jdbc.connector.OracleManagedConnectionFactory" );
65
68
s .add ("oracle.jdbc.rowset.OracleJDBCRowSet" );
66
- // [databind#1899]: more 3rd party
67
- s .add ("org.hibernate.jmx.StatisticsService" );
68
- s .add ("org.apache.ibatis.datasource.jndi.JndiDataSourceFactory" );
69
69
70
70
// [databind#2097]: some 3rd party, one JDK-bundled
71
71
s .add ("org.slf4j.ext.EventData" );
You can’t perform that action at this time.
0 commit comments