We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 051bd5e commit 7487cf7Copy full SHA for 7487cf7
src/main/java/com/fasterxml/jackson/databind/jsontype/impl/SubTypeValidator.java
@@ -60,6 +60,12 @@ public class SubTypeValidator
60
// [databind#2032]: more 3rd party; data exfiltration via xml parsed ext entities
61
s.add("org.apache.ibatis.parsing.XPathParser");
62
63
+ // [databind#2052]: ldap approaches; in all cases LDAP connection String is passed
64
+ // and access attempt is made:
65
+ s.add("oracle.jdbc.connector.OracleManagedConnectionFactory");
66
+ s.add("jodd.db.connection.DataSourceConnectionProvider");
67
+ s.add("oracle.jdbc.rowset.OracleJDBCRowSet");
68
+
69
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
70
}
71
0 commit comments