File tree 2 files changed +4
-0
lines changed
src/mapper/java/org/codehaus/jackson/map/jsontype/impl
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ One more patch release for 1.9.
22
22
* [databind#1855]: Blacklist for more serialization gadgets (dbcp/tomcat, spring)
23
23
* [databind#1931]: Two more `c3p0` gadgets to exploit default typing issue
24
24
* [databind#2032]: Blacklist another serialization gadget (ibatis)
25
+ * [databind#2052]: Block one more gadget type (jodd-db, CVE-2018-12022)
25
26
26
27
1.9.13 (14-Jul-2013)
27
28
Original file line number Diff line number Diff line change @@ -57,6 +57,9 @@ public class SubTypeValidator
57
57
s .add ("com.mchange.v2.c3p0.debug.AfterCloseLoggingComboPooledDataSource" );
58
58
// [databind#2032]: more 3rd party; data exfiltration via xml parsed ext entities
59
59
s .add ("org.apache.ibatis.parsing.XPathParser" );
60
+ // [databind#2052]: ldap approaches; in all cases LDAP connection String is passed
61
+ // and access attempt is made:
62
+ s .add ("jodd.db.connection.DataSourceConnectionProvider" );
60
63
61
64
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
62
65
}
You can’t perform that action at this time.
0 commit comments