I can't seem to get login form CSRF protection working happily using Symfony 2.1.
In config.yml, csrf_protection is set to true. The login form is rendering a hidden input named 'form[_token]']. In security.yml:
csrf_parameter: form[_token]
intention: authenticate
With this configuration, I can login without issue. But the CSRF token is not being checked. I confirmed this by removing the hidden input field before submitting the form:
<input type="hidden" id="form__token" name="form[_token]" value="9b2f5d5efabb938ff8d83c2c8318db1377a3ef16">
If I add a csrf_provider configuration setting to security.yml, I can no longer login, getting the error "Invalid CSRF token"
csrf_provider: form.csrf_provider
I've read whatever I could find on the topic and nothing seems to work correctly - except for what I read in this article: http://henrik.bjrnskov.dk/symfony2-cross-site-request-forgery/. That stuff seems to have been pulled into Friends of Symfony: https://github.com/FriendsOfSymfony/FOSUserBundle/pull/469, which I am not using.
The post instructs you to:
generate a token manually in the loginAction:
$csrfToken = $this->container->get('form.csrf_provider')->generateCsrfToken('authentication');
send it to the view
and render it manually in the form
which is annoying.
The question basically comes down to - should CSRF protection work in Symfony 2.1 for login forms using only configuration settings, or will I need to modify my loginAction and template to get it working?