Skip to content

Commit 4e0c38c

Browse files
committed
Merge branch '2.7' into 2.8
2 parents 0cee8b1 + 3240cab commit 4e0c38c

File tree

2 files changed

+24
-4
lines changed

2 files changed

+24
-4
lines changed

release-notes/VERSION

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,16 @@ Project: jackson-databind
33
=== Releases ===
44
------------------------------------------------------------------------
55

6+
2.8.11.5 (not yet releaased)
7+
8+
#2631: Block one more gadget type (shaded-hikari-config, CVE-2020-9546)
9+
(reported by threedr3am & LFY)
10+
#2634: Block two more gadget types (ibatis-sqlmap, anteros-core; CVE-2020-9547 / CVE-2020-9548)
11+
(reported by threedr3am & V1ZkRA)
12+
#2642: Block one more gadget type (javax.swing, CVE-to-be-allocated)
13+
(reported by threedr3am)
14+
#2648: Block one more gadget type (shiro-core, CVE-to-be-allocated)
15+
616
2.8.11.5 (10-Feb-2020)
717

818
#2410: Block one more gadget type (CVE-2019-14540)

src/main/java/com/fasterxml/jackson/databind/jsontype/impl/SubTypeValidator.java

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -66,9 +66,6 @@ public class SubTypeValidator
6666
// [databind#2058]: Oracle JDBC driver, with jndi/ldap lookup
6767
s.add("oracle.jdbc.connector.OracleManagedConnectionFactory");
6868
s.add("oracle.jdbc.rowset.OracleJDBCRowSet");
69-
// [databind#1899]: more 3rd party
70-
s.add("org.hibernate.jmx.StatisticsService");
71-
s.add("org.apache.ibatis.datasource.jndi.JndiDataSourceFactory");
7269

7370
// [databind#2097]: some 3rd party, one JDK-bundled
7471
s.add("org.slf4j.ext.EventData");
@@ -129,7 +126,20 @@ public class SubTypeValidator
129126

130127
// [databind#2620]: xbean-reflect
131128
s.add("org.apache.xbean.propertyeditor.JndiConverter");
132-
129+
130+
// [databind#2631]: shaded hikari-config
131+
s.add("org.apache.hadoop.shaded.com.zaxxer.hikari.HikariConfig");
132+
133+
// [databind#2634]: ibatis-sqlmap, anteros-core
134+
s.add("com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig");
135+
s.add("br.com.anteros.dbcp.AnterosDBCPConfig");
136+
137+
// [databind#2642]: javax.swing (jdk)
138+
s.add("javax.swing.JEditorPane");
139+
140+
// [databind#2648]: shire-core
141+
s.add("org.apache.shiro.realm.jndi.JndiRealmFactory");
142+
133143
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
134144
}
135145

0 commit comments

Comments
 (0)