File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed
src/main/java/com/fasterxml/jackson/databind/jsontype/impl Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -190,9 +190,11 @@ Project: jackson-databind
190
190
191
191
2.8.11.1 (not yet released)
192
192
193
- #1872 `NullPointerException` in `SubTypeValidator.validateSubType` when
193
+ #1872 : `NullPointerException` in `SubTypeValidator.validateSubType` when
194
194
validating Spring interface
195
195
(reported by Rob W)
196
+ #1899 : Another two gadgets to exploit default typing issue in jackson-databind
197
+ (reported by OneSourceCat@github)
196
198
197
199
2.8.11 (24 -Dec-2017 )
198
200
Original file line number Diff line number Diff line change @@ -51,6 +51,10 @@ public class SubTypeValidator
51
51
// [databind#1855]: more 3rd party
52
52
s .add ("org.apache.tomcat.dbcp.dbcp2.BasicDataSource" );
53
53
s .add ("com.sun.org.apache.bcel.internal.util.ClassLoader" );
54
+ // [databind#1899]: more 3rd party
55
+ s .add ("org.hibernate.jmx.StatisticsService" );
56
+ s .add ("org.apache.ibatis.datasource.jndi.JndiDataSourceFactory" );
57
+
54
58
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
55
59
}
56
60
You can’t perform that action at this time.
0 commit comments