Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Invalid CSRF Token 'null' was found on the request parameter '_csrf' or header 'X-CSRF-TOKEN'

After configuring Spring Security 3.2, _csrf.token is not bound to a request or a session object.

This is the spring security config:

<http pattern="/login.jsp" security="none"/>  <http>     <intercept-url pattern="/**" access="ROLE_USER"/>     <form-login login-page="/login.jsp"                 authentication-failure-url="/login.jsp?error=1"                 default-target-url="/index.jsp"/>     <logout/>     <csrf /> </http>  <authentication-manager>     <authentication-provider>         <user-service>             <user name="test" password="test" authorities="ROLE_USER/>         </user-service>     </authentication-provider> </authentication-manager> 

The login.jsp file

<form name="f" action="${contextPath}/j_spring_security_check" method="post" >     <input type="hidden" name="${_csrf.parameterName}" value="${_csrf.token}" />     <button id="ingresarButton"             name="submit"             type="submit"             class="right"             style="margin-right: 10px;">Ingresar</button>     <span>         <label for="usuario">Usuario :</label>         <input type="text" name="j_username" id="u" class="" value=''/>     </span>     <span>         <label for="clave">Contrase&ntilde;a :</label>          <input type="password"                name="j_password"                id="p"                class=""                onfocus="vc_psfocus = 1;"                value="">     </span> </form> 

And it renders the next html:

<input type="hidden" name="" value="" /> 

The result is 403 HTTP status:

Invalid CSRF Token 'null' was found on the request parameter '_csrf' or header 'X-CSRF-TOKEN'. 

UPDATE After some debug, the request object gets out fine form DelegatingFilterProxy, but in the line 469 of CoyoteAdapter it executes request.recycle(); that erases all the attributes...

I test in Tomcat 6.0.36, 7.0.50 with JDK 1.7.

I have not understood this behavior, rather than, it would be possible if someone point me in the direction of some application sample war with Spring Security 3.2 that works with CSRF.

like image 550
Hugo Robayo Avatar asked Jan 15 '14 02:01

Hugo Robayo


People also ask

What is X CSRF token?

A CSRF Token is a secret, unique and unpredictable value a server-side application generates in order to protect CSRF vulnerable resources. The tokens are generated and submitted by the server-side application in a subsequent HTTP request made by the client.


1 Answers

It looks like the CSRF (Cross Site Request Forgery) protection in your Spring application is enabled. Actually it is enabled by default.

According to spring.io:

When should you use CSRF protection? Our recommendation is to use CSRF protection for any request that could be processed by a browser by normal users. If you are only creating a service that is used by non-browser clients, you will likely want to disable CSRF protection.

So to disable it:

@Configuration public class RestSecurityConfig extends WebSecurityConfigurerAdapter {   @Override   protected void configure(HttpSecurity http) throws Exception {     http.csrf().disable();   } } 

If you want though to keep CSRF protection enabled then you have to include in your form the csrftoken. You can do it like this:

<form .... >   ....other fields here....   <input type="hidden"  name="${_csrf.parameterName}"   value="${_csrf.token}"/> </form> 

You can even include the CSRF token in the form's action:

<form action="./upload?${_csrf.parameterName}=${_csrf.token}" method="post" enctype="multipart/form-data"> 
like image 56
MaVRoSCy Avatar answered Oct 12 '22 19:10

MaVRoSCy