Skip to content

Commit

Permalink
Normalize resource URL in ResourceServlet
Browse files Browse the repository at this point in the history
Issue: SPR-14946
  • Loading branch information
bclozel committed Dec 21, 2016
1 parent bd7fee5 commit e2d6e70
Show file tree
Hide file tree
Showing 2 changed files with 66 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -273,18 +273,18 @@ private void doInclude(HttpServletRequest request, HttpServletResponse response,
if (this.contentType != null) {
response.setContentType(this.contentType);
}

String[] resourceUrls = StringUtils.tokenizeToStringArray(resourceUrl, RESOURCE_URL_DELIMITERS);
for (String url : resourceUrls) {
String path = StringUtils.cleanPath(url);
// Check whether URL matches allowed resources
if (this.allowedResources != null && !this.pathMatcher.match(this.allowedResources, url)) {
throw new ServletException("Resource [" + url +
if (this.allowedResources != null && !this.pathMatcher.match(this.allowedResources, path)) {
throw new ServletException("Resource [" + path +
"] does not match allowed pattern [" + this.allowedResources + "]");
}
if (logger.isDebugEnabled()) {
logger.debug("Including resource [" + url + "]");
logger.debug("Including resource [" + path + "]");
}
RequestDispatcher rd = request.getRequestDispatcher(url);
RequestDispatcher rd = request.getRequestDispatcher(path);
rd.include(request, response);
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,61 @@
/*
* Copyright 2002-2016 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.springframework.web.servlet;

import java.io.IOException;
import javax.servlet.ServletException;

import org.junit.Test;

import org.springframework.mock.web.test.MockHttpServletRequest;
import org.springframework.mock.web.test.MockHttpServletResponse;
import org.springframework.mock.web.test.MockServletConfig;

/**
* @author Rossen Stoyanchev
*/
public class ResourceServletTests {

@Test(expected = ServletException.class)
public void example1() throws Exception {
testInvalidResourceUrl("/resources/**", "/resources/../WEB-INF/web.xml");
}

@Test(expected = ServletException.class)
public void example2() throws Exception {
testInvalidResourceUrl("/resources/*", "/resources/..\\WEB-INF\\web.xml");
}

@Test(expected = ServletException.class)
public void example3() throws Exception {
testInvalidResourceUrl("/resources/*", "/resources/..\\Servlet2?param=111");
}

private void testInvalidResourceUrl(String allowedResources, String resourceParam)
throws ServletException, IOException {

ResourceServlet servlet = new ResourceServlet();
servlet.setAllowedResources(allowedResources);
servlet.init(new MockServletConfig());

MockHttpServletRequest request = new MockHttpServletRequest("GET", "/");
request.addParameter("resource", resourceParam);
MockHttpServletResponse response = new MockHttpServletResponse();

servlet.service(request, response);
}

}

0 comments on commit e2d6e70

Please sign in to comment.