Skip to content

Commit 113e89f

Browse files
committed
Fix #2680
1 parent 3beb406 commit 113e89f

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
@@ -28,6 +28,7 @@ Project: jackson-databind
2828
(reported by Yiting Fan)
2929
#2670: Block one more gadget type (openjpa, CVE-2020-11113)
3030
(reported by XuYuanzhen)
31+
#2680: Block one more gadget type (spring-aop)
3132

3233
2.9.10.3 (23-Feb-2020)
3334

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

+3
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,9 @@ public class SubTypeValidator
4949
// [databind#1737]; 3rd party
5050
//s.add("org.springframework.aop.support.AbstractBeanFactoryPointcutAdvisor"); // deprecated by [databind#1855]
5151
s.add("org.springframework.beans.factory.config.PropertyPathFactoryBean");
52+
// [databind#2680]
53+
s.add("org.springframework.aop.config.MethodLocatingFactoryBean");
54+
s.add("org.springframework.beans.factory.config.BeanReferenceFactoryBean");
5255

5356
// s.add("com.mchange.v2.c3p0.JndiRefForwardingDataSource"); // deprecated by [databind#1931]
5457
// s.add("com.mchange.v2.c3p0.WrapperConnectionPoolDataSource"); // - "" -

0 commit comments

Comments
 (0)