Retry attacks with cookie session: Rails 2.0
2 answers
The cookie session store is no longer susceptible to replay attacks than other rails session stores. While the cookie store stores encrypted session data in a cookie, other stores store the session ID - equally valuable to an attacker. This is true for most web frameworks as well. Aside from using SSL, I don't believe there is any way to prevent these attacks.
+2
a source to share