Search Results

2
votes

How to best prevent CSRF attacks in a GAE app?

When you generate the page that lets the user delete an object, generate a random token and include it in a hidden form field. Also set a HTTP-only cookie with that value. When you receive a delete …