File tree 2 files changed +9
-0
lines changed
src/main/java/com/fasterxml/jackson/databind/deser
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,10 @@ Project: jackson-databind
5
5
------------------------------------------------------------------------
6
6
7
7
2.6.7.2 (not yet released)
8
+
8
9
#1737: Block more JDK types from polymorphic deserialization
10
+ #2097: Block more classes from polymorphic deserialization (CVE-2018-14718
11
+ - CVE-2018-14721)
9
12
10
13
2.6.7.1 (11-Jul-2017)
11
14
Original file line number Diff line number Diff line change @@ -68,6 +68,12 @@ public class BeanDeserializerFactory
68
68
s .add ("com.mchange.v2.c3p0.JndiRefForwardingDataSource" );
69
69
s .add ("com.mchange.v2.c3p0.WrapperConnectionPoolDataSource" );
70
70
71
+ // [databind#2097]: some 3rd party, one JDK-bundled
72
+ s .add ("org.slf4j.ext.EventData" );
73
+ s .add ("flex.messaging.util.concurrent.AsynchBeansWorkManagerExecutor" );
74
+ s .add ("com.sun.deploy.security.ruleset.DRSHelper" );
75
+ s .add ("org.apache.axis2.jaxws.spi.handler.HandlerResolverImpl" );
76
+
71
77
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
72
78
}
73
79
You can’t perform that action at this time.
0 commit comments