File tree 2 files changed +5
-1
lines changed
src/mapper/java/org/codehaus/jackson/map/jsontype/impl
2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -22,7 +22,8 @@ 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
+ * [databind#2052]: CVE-2018-12022: Block polymorphic deserialization of types from Jodd-db library
26
+ * [databind#2058]: CVE-2018-12023: Block polymorphic deserialization of types from Oracle JDBC driver
26
27
27
28
1.9.13 (14-Jul-2013)
28
29
Original file line number Diff line number Diff line change @@ -60,6 +60,9 @@ public class SubTypeValidator
60
60
// [databind#2052]: ldap approaches; in all cases LDAP connection String is passed
61
61
// and access attempt is made:
62
62
s .add ("jodd.db.connection.DataSourceConnectionProvider" );
63
+ // [databind#2058]: Oracle JDBC driver, with jndi/ldap lookup
64
+ s .add ("oracle.jdbc.connector.OracleManagedConnectionFactory" );
65
+ s .add ("oracle.jdbc.rowset.OracleJDBCRowSet" );
63
66
64
67
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
65
68
}
You can’t perform that action at this time.
0 commit comments