Skip to content

Commit 3d97153

Browse files
committed
Add a block for #2814
1 parent 6cc9f1a commit 3d97153

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

release-notes/VERSION-2.x

+3-1
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,10 @@ Project: jackson-databind
66

77
2.9.10.6 (not yet released)
88

9-
#2798: Block one more gadget type (xxx, xxx)
9+
#2798: Block one more gadget type (xxx, CVE-xxxx-xxx)
1010
(reported by Al1ex@knownsec)
11+
#2814: Block one more gadget type (xxx, CVE-xxxx-xxx)
12+
(reported by ChenZhaojun)
1113

1214
2.9.10.5 (21-Jun-2020)
1315

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

+3-1
Original file line numberDiff line numberDiff line change
@@ -137,9 +137,11 @@ public class SubTypeValidator
137137
// [databind#2631]: shaded hikari-config
138138
s.add("org.apache.hadoop.shaded.com.zaxxer.hikari.HikariConfig");
139139

140-
// [databind#2634]: ibatis-sqlmap, anteros-core
140+
// [databind#2634]: ibatis-sqlmap, anteros-core/-dbcp
141141
s.add("com.ibatis.sqlmap.engine.transaction.jta.JtaTransactionConfig");
142142
s.add("br.com.anteros.dbcp.AnterosDBCPConfig");
143+
// [databind#2814]: anteros-dbcp
144+
s.add("br.com.anteros.dbcp.AnterosDBCPDataSource");
143145

144146
// [databind#2642]: javax.swing (jdk)
145147
s.add("javax.swing.JEditorPane");

0 commit comments

Comments
 (0)