Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

If the user opens two forms of the same kind, one will have a csrf error,

I myself being a multi-talented, multi-tasking with a robot mentality, absolute beast am used to opening multiple tabs and doing things in crazy ways, csrf checks reduce me into a normal person.

What can be done about this?

Sorry, forgot to mention this is about zend framework's csrf element

share|improve this question

1 Answer

up vote 5 down vote accepted

No one ever said that only 1 CSRF token can be live at a one time. I typically keep an array of valid tokens and will accept any of them. If only one form instance is opened, only one token, but still works the same way.

share|improve this answer
This is probably the ideal way to solve it. Just want to mention (because of the ZF tags) that you may need to modify the built in CSRF element in ZF to accomodate for this - I don't recall the built in one will work very well. – Jani Hartikainen Sep 5 '11 at 19:37
Indeed, the built in one won't allow 'multiple tabs' but a modified version allowing single-use tokens would be a very welcome addition. – David Caunt Sep 5 '11 at 22:35
+1 for rolling out your own – Adrian Schneider Sep 6 '11 at 5:22

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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