Skip to content

Commit 77040d8

Browse files
committed
Fix #2682
1 parent 113e89f commit 77040d8

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

release-notes/VERSION-2.x

+1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ Project: jackson-databind
2929
#2670: Block one more gadget type (openjpa, CVE-2020-11113)
3030
(reported by XuYuanzhen)
3131
#2680: Block one more gadget type (spring-aop)
32+
#2680: Block one more gadget type (commons-jelly)
3233

3334
2.9.10.3 (23-Feb-2020)
3435

src/main/java/com/fasterxml/jackson/databind/jsontype/impl/SubTypeValidator.java

+3
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,9 @@ public class SubTypeValidator
177177
// [databind#2666]: apache/commons-jms
178178
s.add("org.apache.commons.proxy.provider.remoting.RmiProvider");
179179

180+
// [databind#2682]: commons-jelly
181+
s.add("org.apache.commons.jelly.impl.Embedded");
182+
180183
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
181184
}
182185

0 commit comments

Comments
 (0)