Skip to content

Commit 6ba4845

Browse files
committed
Fix #2642
1 parent 1e64db6 commit 6ba4845

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

release-notes/VERSION

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,12 @@ Project: jackson-databind
66

77
2.7.9.7 (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)
14+
(reported by threedr3am)
1315
#2410: Block one more gadget type (HikariCP, CVE-2019-14540)
1416
#2420: Block one more gadget type (cxf-jax-rs, no CVE allocated yet)
1517
#2449: Block one more gadget type (HikariCP, CVE-2019-14439 / CVE-2019-16335)

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

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,9 @@ public class SubTypeValidator
133133
s.add("com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig");
134134
s.add("br.com.anteros.dbcp.AnterosDBCPConfig");
135135

136+
// [databind#2642]: javax.swing (jdk)
137+
s.add("javax.swing.JEditorPane");
138+
136139
DEFAULT_NO_DESER_CLASS_NAMES = Collections.unmodifiableSet(s);
137140
}
138141

0 commit comments

Comments
 (0)