File tree 2 files changed +12
-1
lines changed
src/main/java/com/fasterxml/jackson/databind/jsontype/impl
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,10 @@ Project: jackson-databind
6
6
7
7
2.7.9.7 (not yet released)
8
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)
9
13
#2410: Block one more gadget type (HikariCP, CVE-2019-14540)
10
14
#2420: Block one more gadget type (cxf-jax-rs, no CVE allocated yet)
11
15
#2449: Block one more gadget type (HikariCP, CVE-2019-14439 / CVE-2019-16335)
Original file line number Diff line number Diff line change @@ -125,7 +125,14 @@ public class SubTypeValidator
125
125
126
126
// [databind#2620]: xbean-reflect
127
127
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
+
129
136
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
130
137
}
131
138
You can’t perform that action at this time.
0 commit comments