未验证 提交 376c6a0a 编写于 作者: J Jesse Glick

[JENKINS-49543] Old versions of Tomcat also failed to serialize classes from Jenkins modules.

上级 501b1172
......@@ -273,6 +273,10 @@ public class ClassFilterImpl extends ClassFilter {
r = r.substring(0, r.length() - suffix.length());
}
}
if (r.startsWith("jar:file:/") && r.endsWith(".jar!/")) {
// JENKINS-49543: also an old behavior of Tomcat. Legal enough, but unexpected by isLocationWhitelisted.
r = r.substring(4, r.length() - 2);
}
return r;
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册