在 Spring Webflux 中为给定路径禁用身份验证和 csrf?

Posted

技术标签:

【中文标题】在 Spring Webflux 中为给定路径禁用身份验证和 csrf?【英文标题】:Disable authentication and csrf for a given path in Spring Weblux? 【发布时间】:2019-06-21 20:48:29 【问题描述】:

我想为整个应用程序启用 oauth2,除了一个 url。

我的配置:

@EnableWebFluxSecurity
class SecurityConfig 

    @Bean
    fun securityWebFilterChain(http: ServerHttpSecurity) =
        http
            .authorizeExchange()
            .pathMatchers("/devices/**/register").permitAll()
            .and()
            .oauth2Login().and()
            .build()

application.yml:

spring.security.oauth2.client.registration.google.client-id: ...
spring.security.oauth2.client.registration.google.client-secret: ...

所有路径都受到 oauth2 的保护,但问题是当我调用允许 /devices/123/register 的端点时,我得到的响应是:

CSRF Token has been associated to this client

我需要以其他方式配置此路径吗?

【问题讨论】:

【参考方案1】:

permitAll 只是关于权限的声明——所有典型的 Web 应用程序漏洞仍然像 XSS 和 CSRF 一样得到缓解。

如果你试图表明 /devices/**/register 应该被 Spring Security 完全忽略,那么你可以这样做:

http
    .securityMatcher(new NegatedServerWebExchangeMatcher(
        pathMatchers("/devices/**/register")))
    ... omit the permitAll statement

但是,如果您仍然希望该端点获得安全响应标头,而不是 CSRF 保护,那么您可以这样做:

http
    .csrf()
        .requireCsrfProtectionMatcher(new NegatedServerWebExchangeMatcher(
            pathMatchers("/devices/**/register")))
    ... keep the permitAll statement

【讨论】:

以上是关于在 Spring Webflux 中为给定路径禁用身份验证和 csrf?的主要内容,如果未能解决你的问题,请参考以下文章

如何在 Spring Boot 2(w/WebFlux)中为 HTTP 和 HTTPS 配置两个端口?

禁用传输编码:在 Spring Webflux 响应中分块

将 spring-security 与 spring-webflux 一起使用时禁用 WebSession 创建

Spring WebFlux添加WebFIlter以匹配特定路径

在 Spring Boot WebFlux 上检索路径变量(功能方法)

Webflux禁用特定URL上的CSRF