vote up 0 vote down star

Because form_authenticity_token is used to validate requests, is it redundant to use it when you're already checking whether a user is logged in?

I.e., is form_authenticity_token really intended only for forms which are available to anyone, as opposed to forms exclusively for logged-in users?

flag

75% accept rate

2 Answers

vote up 2 vote down check

Being logged in would make an XSRF attack worse, because then it could actually damage real data. Check these out as a starting point.

XSRF in a RESTful Application

Cross-Site Request Forgeries and You

link|flag
vote up 0 vote down

No because in CSRF attacks requests are sent by the client's browser which is authenticated and may delete his data.

Read the Ruby on Rails Security Guide section about CSRF.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.