如何在Spring Boot应用程序中禁用DefaultSecurityFilterChain?

时间:2016-01-29 18:45:59

标签: spring security filter spring-boot chain

在我的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-bootSpring 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行

任何一种解决方案仍然会在日志中留下以下内容:

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

1 个答案:

答案 0 :(得分:0)

在你最后一个被拒绝的 antmatcher 中,有特定的 url,没有单斜杠会阻止所有端点