Skip to content

Commit 4d038c9

Browse files
committed
Fix #2642
1 parent 9f4e970 commit 4d038c9

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

release-notes/VERSION-2.x

+4-2
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ Project: jackson-databind
66

77
2.9.10.4 (not yet released)
88

9-
#2631: Block one more gadget type (shaded-hikari-config, CVE-to-be-allocated)
9+
#2631: Block one more gadget type (shaded-hikari-config, CVE-2020-9546)
1010
(reported by threedr3am & LFY)
11-
#2634: Block two more gadget types (ibatis-sqlmap, anteros-core; CVE-to-be-allocated)
11+
#2634: Block two more gadget types (ibatis-sqlmap, anteros-core; CVE-2020-9547 / CVE-2020-9548)
1212
(reported by threedr3am & V1ZkRA)
13+
#2642: Block one more gadget type (javax.swing, CVE-to-be-allocated) #2642
14+
(reported by threedr3am)
1315

1416
2.9.10.3 (23-Feb-2020)
1517

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

+3
Original file line numberDiff line numberDiff line change
@@ -135,6 +135,9 @@ public class SubTypeValidator
135135
s.add("com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig");
136136
s.add("br.com.anteros.dbcp.AnterosDBCPConfig");
137137

138+
// [databind#2642]: javax.swing (jdk)
139+
s.add("javax.swing.JEditorPane");
140+
138141
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
139142
}
140143

0 commit comments

Comments
 (0)