spring boot csrf和jade

时间:2015-07-14 21:52:28

标签: java spring spring-mvc spring-security

我有一个带有java配置的Spring Boot应用程序。我只在我的build.gradle文件中引用spring-boot-starter-jade4j和spring-boot-starter-security。我试图找出为什么我不能让csrf令牌出现。 这是我的SecurityConfig

@Configuration
@EnableWebMvcSecurity
public class SecurityConfig extends WebSecurityConfigurerAdapter {
  @Autowired
  DataSource ds;

  @Override
  protected void configure(HttpSecurity http) throws Exception {
    http
        .authorizeRequests()
            .antMatchers("/", "/signup", "/js/**", "/css/**", "/terms", "/privacy", "/favicon.ico").permitAll()
            .anyRequest().authenticated()
            .and()
        .formLogin()
            .loginPage("/login")
            .permitAll()
            .and()
        .logout()
            .logoutUrl("/logout")
            .permitAll()
            .and()
        .csrf();
  }
…
}

这是我的登录表单。 CSRF隐藏字段显示在源代码中,但csrf标记似乎没有评估,值为空。

extends _base
block head

block body
  #bodContent.container-fluid
  .row
    .col-md-4
    .col-md-4
      br
      .panel.panel-default
        .panel-body
          h1 Please log in
          form(method="POST", action="/login")
            input(type="hidden", name='_csrf', value='#{_csrf}')
            .form-group
              label(for="email")
                | Email address
              input#username.form-control(name="username", type="email", value="")
            .form-group
              label(for="password")
                | Password
              input#password.form-control(name="password", type="password", value="")
            .checkbox
              label
                input(type="checkbox")
                | Remember me
            input.btn.btn-default(type="submit")
              | Submit
    .col-md-4

1 个答案:

答案 0 :(得分:3)

我怀疑Spring Boot没有将CSRF令牌暴露为模型属性,这可能是预期的,因为令牌通常是作为请求属性(不是模型属性)公开的。在典型的Spring MVC应用程序中,通过在exposeRequestAttributes上将true设置为ViewResolver,可以将请求属性公开为模型属性。但是,我不确定如何使用Jade4j视图解析器。

但是有一种解决方法,即通过应用程序配置手动公开令牌。

@Configuration
@EnableAutoConfiguration
public class ApplicationConfig extends WebMvcConfigurerAdapter {
  public static void main(String... args) {
    SpringApplication.run(ApplicationConfig.class, args);
  }

  @Override
  public void addInterceptors(InterceptorRegistry registry) {
    registry.addInterceptor(csrfTokenAddingInterceptor());
  }

  @Bean
  public HandlerInterceptor csrfTokenAddingInterceptor() {
    return new HandlerInterceptorAdapter() {
      @Override
      public void postHandle(HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView view) {
        CsrfToken token = (CsrfToken) request.getAttribute(CsrfToken.class.getName())
        if (token != null) {
          view.addObject(token.getParameterName(), token)
        }
      }
    }
  }
}

现在,您的代码#{_csrf.parameterName}#{_csrf.token}将有效。

注意:特别归功于this answer