Skip to content

Prevents navigation through the loader's directory structure #17526

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
import java.util.List;
import java.util.Locale;
import java.util.Set;
import java.util.stream.Collectors;

import javax.servlet.ServletContainerInitializer;

Expand Down Expand Up @@ -91,6 +92,7 @@
* @author Andy Wilkinson
* @author Eddú Meléndez
* @author Christoffer Sawicki
* @author Dawid Antecki
* @since 2.0.0
* @see #setPort(int)
* @see #setContextLifecycleListeners(Collection)
Expand Down Expand Up @@ -813,7 +815,8 @@ public String[] list(String path) {

@Override
public Set<String> listWebAppPaths(String path) {
return this.delegate.listWebAppPaths(path);
return this.delegate.listWebAppPaths(path).stream()
.filter(p -> !p.startsWith("org/springframework/boot/loader")).collect(Collectors.toSet());
}

@Override
Expand Down