提交 8b70c48a 编写于 作者: W Wadeck Follonier 提交者: Oleg Nenashev

[JENKINS-58736] Correction of /assets throwing 500 (#4136)

上级 9d16af6b
......@@ -3,10 +3,14 @@ package jenkins.model;
import hudson.Extension;
import hudson.model.UnprotectedRootAction;
import java.util.concurrent.TimeUnit;
import org.apache.commons.lang.StringUtils;
import org.jenkinsci.Symbol;
import org.kohsuke.stapler.StaplerRequest;
import org.kohsuke.stapler.StaplerResponse;
import javax.annotation.CheckForNull;
import javax.annotation.Nonnull;
import javax.servlet.ServletException;
import javax.servlet.http.HttpServletResponse;
import java.io.IOException;
......@@ -74,7 +78,11 @@ public class AssetManager implements UnprotectedRootAction {
* look for child classloader first. But to support plugins that get split, if the child classloader
* doesn't find it, fall back to the parent classloader.
*/
private URL findResource(String path) throws IOException {
private @CheckForNull URL findResource(@Nonnull String path) throws IOException {
if (StringUtils.isBlank(path)) {
return null;
}
try {
if (path.contains("..")) // crude avoidance of directory traversal attack
throw new IllegalArgumentException(path);
......
/*
* The MIT License
*
* Copyright (c) 2019 CloudBees, Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package jenkins.model;
import org.junit.Rule;
import org.junit.Test;
import org.jvnet.hudson.test.Issue;
import org.jvnet.hudson.test.JenkinsRule;
import java.net.HttpURLConnection;
import java.net.URL;
import static org.junit.Assert.assertEquals;
public class AssetManagerTest {
@Rule
public JenkinsRule j = new JenkinsRule();
@Test
@Issue("JENKINS-58736")
public void emptyAssetDoesNotThrowError() throws Exception {
URL url = new URL(j.getURL() + "assets");
HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
assertEquals(HttpURLConnection.HTTP_NOT_FOUND, httpCon.getResponseCode());
}
@Test
@Issue("JENKINS-9598")
public void jqueryLoad() throws Exception {
// webclient does not work because it tries to parse the jquery2.js and there is a missing comma
URL url = new URL(j.getURL() + "assets/jquery-detached/jsmodules/jquery2.js");
HttpURLConnection httpCon = (HttpURLConnection) url.openConnection();
assertEquals(HttpURLConnection.HTTP_OK, httpCon.getResponseCode());
}
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册