在我的Spring Boot应用程序中,我有:
@Configuration
@EnableWebSecurity
public class WebSecurityConfig extends WebSecurityConfigurerAdapter {
...
@Override
protected void configure(HttpSecurity httpSecurity)
throws Exception
{
httpSecurity
.authorizeRequests()
// various GET/POST path enable rules, none of which would enable access to default ones (see log below)
...
// finally, deny everything else
.antMatchers("/**").denyAll()
...
}
}
启动时,日志显示:
2016-01-29 13:20:49.379 INFO 8044 --- [ost-startStop-1] o.s.s.web.DefaultSecurityFilterChain : Creating filter chain: OrRequestMatcher [requestMatchers=[Ant [pattern='/css/**'], Ant [pattern='/js/**'], Ant [pattern='/images/**'], Ant [pattern='/**/favicon.ico'], Ant [pattern='/error']]], []
我可以访问,例如localhost:8080/blah/favicon.ico
,即使我希望它被阻止。
我尝试遵循Security configuration with Spring-boot和Spring Security exclude url patterns in security annotation configurartion中的建议。
在http://docs.spring.io/spring-boot/docs/current-SNAPSHOT/reference/htmlsingle/#boot-features-security的每个文档中,我也尝试将security.ignored
设置为各种路径,并使用@Order(SecurityProperties.ACCESS_OVERRIDE_ORDER)
注释上述类,但都无济于事。
是否有一种简单的方法可以禁用DefaultSecurityFilterChain
,以便它不会为常见的静态资源位置添加这些被忽略(不安全)的路径?
如果没有,那么在Java或application.properties
中正确的配置是什么来禁用这些路径?
好的,有两种方法可以做到:
在application.properties
中,设置security.ignored=none
。
或者,创建以下类:
@Component
public class CustomSecurityProperties extends SecurityProperties {
public CustomSecurityProperties() {
// the default list is empty
List<String> ignoredPaths = getIgnored();
ignoredPaths.add("none");
}
}
魔法none
的提示来自SpringBootWebSecurityConfiguration
的{{1}}第121-130行3>
任何一种解决方案仍然会在日志中留下以下内容:
2016-01-29 17:53:12.830 INFO 3008 --- [ main] o.s.w.s.handler.SimpleUrlHandlerMapping : Mapped URL path [/**/favicon.ico] onto handler of type [class org.springframework.web.servlet.resource.ResourceHttpRequestHandler]
这表示创建了ResourceHttpRequestHandler
来提供favicon.ico
文件。但是,无法再访问/blah/favicon.ico
。
答案 0 :(得分:0)
在你最后一个被拒绝的 antmatcher 中,有特定的 url,没有单斜杠会阻止所有端点