Skip to content

Commit 9f4e970

Browse files
committed
Fixing issues #2631 and #2634
1 parent 05235ac commit 9f4e970

File tree

2 files changed

+14
-0
lines changed

2 files changed

+14
-0
lines changed

release-notes/VERSION-2.x

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Project: jackson-databind
44
=== Releases ===
55
------------------------------------------------------------------------
66

7+
2.9.10.4 (not yet released)
8+
9+
#2631: Block one more gadget type (shaded-hikari-config, CVE-to-be-allocated)
10+
(reported by threedr3am & LFY)
11+
#2634: Block two more gadget types (ibatis-sqlmap, anteros-core; CVE-to-be-allocated)
12+
(reported by threedr3am & V1ZkRA)
13+
714
2.9.10.3 (23-Feb-2020)
815

916
#2620: Block one more gadget type (xbean-reflect/JNDI - CVE-2020-8840)

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

+7
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,13 @@ public class SubTypeValidator
128128
// [databind#2620]: xbean-reflect
129129
s.add("org.apache.xbean.propertyeditor.JndiConverter");
130130

131+
// [databind#2631]: shaded hikari-config
132+
s.add("org.apache.hadoop.shaded.com.zaxxer.hikari.HikariConfig");
133+
134+
// [databind#2634]: ibatis-sqlmap, anteros-core
135+
s.add("com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig");
136+
s.add("br.com.anteros.dbcp.AnterosDBCPConfig");
137+
131138
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
132139
}
133140

0 commit comments

Comments
 (0)