File tree 2 files changed +4
-0
lines changed
src/main/java/com/fasterxml/jackson/databind/jsontype/impl
2 files changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ Project: jackson-databind
20
20
(reported by Cyril M)
21
21
#2324 : `StringCollectionDeserializer` fails with custom collection
22
22
(reported byb Daniil B)
23
+ #2326 : Block one more gadget type (CVE-2019 -12086 )
23
24
- Prevent String coercion of `null` in `WritableObjectId` when calling `JsonGenerator.writeObjectId()`,
24
25
mostly relevant for formats like YAML that have native Object Ids
25
26
Original file line number Diff line number Diff line change @@ -80,6 +80,9 @@ public class SubTypeValidator
80
80
s .add ("org.apache.openjpa.ee.JNDIManagedRuntime" );
81
81
s .add ("org.apache.axis2.transport.jms.JMSOutTransportInfo" );
82
82
83
+ // [databind#2326] (2.9.9): one more 3rd party gadget
84
+ s .add ("com.mysql.cj.jdbc.admin.MiniAdmin" );
85
+
83
86
DEFAULT_NO_DESER_CLASS_NAMES = Collections .unmodifiableSet (s );
84
87
}
85
88
You can’t perform that action at this time.
0 commit comments