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 @@ -5,9 +5,11 @@ Project: jackson-databind
5
5
6
6
2.8.11.1 (not yet released)
7
7
8
- #1872 `NullPointerException` in `SubTypeValidator.validateSubType` when
8
+ #1872: `NullPointerException` in `SubTypeValidator.validateSubType` when
9
9
validating Spring interface
10
10
(reported by Rob W)
11
+ #1899: Another two gadgets to exploit default typing issue in jackson-databind
12
+ (reported by OneSourceCat@github)
11
13
12
14
2.8.11 (24-Dec-2017)
13
15
Original file line number Diff line number Diff line change @@ -50,6 +50,10 @@ public class SubTypeValidator
50
50
// [databind#1855]: more 3rd party
51
51
s .add ("org.apache.tomcat.dbcp.dbcp2.BasicDataSource" );
52
52
s .add ("com.sun.org.apache.bcel.internal.util.ClassLoader" );
53
+ // [databind#1899]: more 3rd party
54
+ s .add ("org.hibernate.jmx.StatisticsService" );
55
+ s .add ("org.apache.ibatis.datasource.jndi.JndiDataSourceFactory" );
56
+
53
57
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
54
58
}
55
59
You can’t perform that action at this time.
0 commit comments