File tree 2 files changed +6
-1
lines changed
src/main/java/com/fasterxml/jackson/databind/jsontype/impl
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -14,7 +14,8 @@ Unreleased but backported
14
14
#2460: Block one more gadget type (ehcache, CVE-2019-17267)
15
15
#2462: Block two more gadget types (commons-configuration)
16
16
#2469: Block one more gadget type (xalan2)
17
- #2478: Block two more gadget types (commons-dbcp, p6spy)
17
+ #2478: Block two more gadget types (commons-dbcp, p6spy, CVE-2019-16942 / CVE-2019-16943)
18
+ #2498: Block one more gadget type (log4j-extras/1.2)
18
19
19
20
2.8.11.4 (25-Jul-2019)
20
21
Original file line number Diff line number Diff line change @@ -119,6 +119,10 @@ public class SubTypeValidator
119
119
s .add ("org.apache.commons.dbcp.datasources.SharedPoolDataSource" );
120
120
s .add ("com.p6spy.engine.spy.P6DataSource" );
121
121
122
+ // [databind#2498]: log4j-extras (1.2)
123
+ s .add ("org.apache.log4j.receivers.db.DriverManagerConnectionSource" );
124
+ s .add ("org.apache.log4j.receivers.db.JNDIConnectionSource" );
125
+
122
126
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
123
127
}
124
128
You can’t perform that action at this time.
0 commit comments