Skip to content

Commit 19fab87

Browse files
cowtowncoderqxo
authored andcommitted
Fixing issues FasterXML#2631 and FasterXML#2634
1 parent f0cf1a0 commit 19fab87

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

release-notes/VERSION

+4
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ Project: jackson-databind
66

77
2.7.9.7 (not yet released)
88

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)
913
#2410: Block one more gadget type (HikariCP, CVE-2019-14540)
1014
#2420: Block one more gadget type (cxf-jax-rs, no CVE allocated yet)
1115
#2449: Block one more gadget type (HikariCP, CVE-2019-14439 / CVE-2019-16335)

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

+8-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,14 @@ public class SubTypeValidator
125125

126126
// [databind#2620]: xbean-reflect
127127
s.add("org.apache.xbean.propertyeditor.JndiConverter");
128-
128+
129+
// [databind#2631]: shaded hikari-config
130+
s.add("org.apache.hadoop.shaded.com.zaxxer.hikari.HikariConfig");
131+
132+
// [databind#2634]: ibatis-sqlmap, anteros-core
133+
s.add("com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig");
134+
s.add("br.com.anteros.dbcp.AnterosDBCPConfig");
135+
129136
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
130137
}
131138

0 commit comments

Comments
 (0)