We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 113e89f commit 77040d8Copy full SHA for 77040d8
release-notes/VERSION-2.x
@@ -29,6 +29,7 @@ Project: jackson-databind
29
#2670: Block one more gadget type (openjpa, CVE-2020-11113)
30
(reported by XuYuanzhen)
31
#2680: Block one more gadget type (spring-aop)
32
+#2680: Block one more gadget type (commons-jelly)
33
34
2.9.10.3 (23-Feb-2020)
35
src/main/java/com/fasterxml/jackson/databind/jsontype/impl/SubTypeValidator.java
@@ -177,6 +177,9 @@ public class SubTypeValidator
177
// [databind#2666]: apache/commons-jms
178
s.add("org.apache.commons.proxy.provider.remoting.RmiProvider");
179
180
+ // [databind#2682]: commons-jelly
181
+ s.add("org.apache.commons.jelly.impl.Embedded");
182
+
183
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
184
}
185
0 commit comments