Tagged Questions
Cross Site Request Forgery is a malicious attack to exploit a website's trust in a user's browser.
17
votes
6answers
7k views
Django CSRF framework cannot be disabled and is breaking my site
The django csrf middleware can't be disabled. I've commented it out from my Middleware of my project but my logins are failing due to missing CSRF issues. I'm working from the Django trunk. How can ...
15
votes
5answers
5k views
How do I solve an AntiForgeryToken exception that occurs after an iisreset in my ASP.Net MVC app?
I’m having problems with the AntiForgeryToken in ASP.Net MVC. If I do an iisreset on my web server and a user continues with their session they get bounced to a login page. Not terrible but then the ...
14
votes
3answers
417 views
How does this Man-In-The-Middle attack work?
The Django documentation on its CSRF protection states that:
In addition, for HTTPS requests,
strict referer checking is done by
CsrfViewMiddleware. This is necessary
to address a ...
13
votes
5answers
3k views
WARNING: Can't verify CSRF token authenticity rails
I am sending data from view to controller with ajax and I got this error :
WARNING: Can't verify CSRF token authenticity
So I think I have send this token with data.
Does anyone kno how can I do this ...
13
votes
8answers
7k views
Django CSRF check failing with an Ajax POST request
I could use some help complying with Django's csrf protection mechanism via my AJAX post. I've followed the directions here:
http://docs.djangoproject.com/en/dev/ref/contrib/csrf/
I've copied the ...
13
votes
4answers
2k views
jQuery Ajax calls and the Html.AntiForgeryToken()
I have implemented in my app the mitigation to CSRF attacks following the informations that I have read on some blog post around the internet. In particular these post have been the driver of my ...
12
votes
5answers
685 views
Is this sufficient to protect against a CSRF for an ajax-driven application?
I'm working on a completely ajax-driven application where all requests pass through what basically amounts to a main controller which, at its bare bones, looks something like this:
...
11
votes
3answers
1k views
Having a POST'able API and Django's CSRF Middleware
I have a Django webapp that has both a front-end, web-accessible component and an API that is accessed by a desktop client. However, now with the new CSRF middleware component, API requests from the ...
11
votes
2answers
3k views
How do I turn off CSRF protection in a rails app?
The CSRF prevention built in to Rails is causing some problems for some automated load testing we are doing, and I want to turn it off for the duration of the process. How do I do this?
9
votes
5answers
3k views
How to use Zend Framework Form Hash (token) with AJAX
I have included Zend_Form_Element_Hash into a form multiplecheckbox form. I have jQuery set to fire off an AJAX request when a checkbox is clicked, I pass the token with this AJAX request. The first ...
9
votes
3answers
1k views
Does AntiForgeryToken in ASP.NET MVC prevent against all CSRF attacks?
Using AntiForgeryToken requires each request to pass a valid token, so malicious web pages with simple script posting data to my web application won't succeed.
But what if a malicious script will ...
9
votes
3answers
4k views
Is exposing a session's CSRF-protection token safe?
Django comes with CSRF protection middleware, which generates a unique per-session token for use in forms. It scans all incoming POST requests for the correct token, and rejects the request if the ...
8
votes
2answers
461 views
Form without CSRF token: what are the risks
What exactly are the risks I'm exposing myself to if I don't use csrf tokens in my forms? I'm not looking for simple labels or names of the risks, because these can be confusing. I need to understand ...
8
votes
1answer
749 views
CSRF Protection in AJAX Requests using MVC2
The page I'm building depends heavily on AJAX. Basically, there is just one "page" and every data transfer is handled via AJAX. Since overoptimistic caching on the browser side leads to strange ...
8
votes
3answers
2k views
Functional testing form with CSRF enabled in Symfony
What is the best way of creating functional tests to test forms with CSRF protection enabled in Symfony?
Currently I have to add the following code before each form submittion:
$form = new ...
8
votes
7answers
663 views
Isn't CSRF a browser security issue?
Regarding cross-site request forgery (CSRF) attacks, if cookies are most used authentication method, why do web browsers allow sending cookies of some domain (and to that domain) from a page generated ...
8
votes
3answers
2k views
How to best prevent CSRF attacks in a GAE app?
So, what is the best way to prevent an XSRF attack for a GAE application? Imagine the following:
Anyone can see a user's public object, and the db.Model id is used in the request to figure out ...
7
votes
5answers
2k views
Rails 3.1 - CSRF ignored?
here my problem,
I've got a rails 3.1 app and I'm trying to make an ajax request but I get the warning message "WARNING: Can't verify CSRF token authenticity"…
Inside my layout I've got the helper ...
7
votes
1answer
127 views
CSRF protection question
I'm currently in the process of implementing CSRF protection into my framework (PHP).
However I am wondering:
Wouldn't it be possible for an attacker to load my page in a (hidden) iframe (obtaining ...
7
votes
1answer
432 views
Django 1.2.4 CSRF verification failed
Django 1.2 is consistently giving me this CSRF verification error when I perform a POST form. I "think" I've done all the things asked in the Django 1.2 docs, namely,
Ensure MIDDLEWARE_CLASSES is ...
7
votes
1answer
895 views
When the use of a AntiForgeryToken is not required /needed?
UPD: Same question asked on security.stackexchange.com and the answer I got is different. Please follow there, to get the correct answer!
I'm running a rather large site with thousands of visits ...
7
votes
7answers
436 views
Can I render a form from another website
I have a user on website A and I need to log him to website B (not under my control) but without jeopardizing his password on website B. Website B doesn't have an API which is what's making this more ...
7
votes
1answer
1k views
anti-CSRF token and Javascript
I'm trying to protect an application (php and lots of JS) from CSRF.
I want to use tokens.
A lot of operations are done with AJAX, so I have to pass the token in Javascript.
If I want to generate 1 ...
7
votes
4answers
3k views
GWT RPC - Does it do enough to protect against CSRF?
UPDATE : GWT 2.3 introduces a better mechanism to fight XSRF attacks. See http://code.google.com/webtoolkit/doc/latest/DevGuideSecurityRpcXsrf.html
GWT's RPC mechanism does the following things on ...
7
votes
1answer
752 views
What are some viable techniques for combining CSRF protection with RESTful APIs?
I'm interested in hearing what approaches people have taken when building a RESTful (or quasi-RESTful) API for their web applications.
A practical example:
Say you have a traditional browser-based ...
6
votes
3answers
471 views
Why does Django not generate CSRF or Session Cookies behind a Varnish Proxy?
Running Django 1.2.5 on a Linux server with Apache2 and for some reason Django seems like it cannot store CSRF or Session cookies. Therefore when I try to login to the Django admin it gives me a CSRF ...
6
votes
2answers
2k views
Turn off CSRF token in rails 3
i have a rails app that serves some apis to an iphone application.
I want to be able to simply post on a resource without minding on get the correct csrf token.
I tried some method that I see here in ...
6
votes
2answers
309 views
How do you protect against XSRF in Grails?
How does one protect against XSRF attacks in Grails. I see that forms support the notion of useToken which (I think should suffice). However, remoteForm or other AJAX related request don't support ...
6
votes
2answers
2k views
Disabling Django CSRF for views that do not always have a response
I have a Django view that receives POSTs which do not need to have the CSRF token. Therefore I used the @csrf_exempt decorator on the view. The problem is that sometimes I do not issue a response from ...
6
votes
2answers
1k views
PHP - CSRF - How to make it works in all tabs?
I have readed about how to prevent CSRF-attacks in the last days. I am going to update the token in every pageload, save the token in the session and make a check when submitting a form.
But what if ...
6
votes
3answers
1k views
Is the Rails default CSRF protection insecure?
By default the form post CSRF protection in Rails creates an authenticity token for a user that only changes when the user's session changes. One of our customers did a security audit of our site and ...
6
votes
3answers
2k views
CSRF Validation Token: session id safe?
In asp.net I am implementing an IHttpModule to mitigate CSRF attacks. It injects into the response html a hidden form parameter with the asp.net SessionID on GETs. On POSTs it then checks to make ...
5
votes
3answers
115 views
Javascript hashing in AJAX login calls, more security?
From a lot of posts I've seen on the site, logins performed by AJAX or traditional forms are just as secure as one another. (re: Login/session cookies, Ajax and security Ajax login and javascript ...
5
votes
1answer
170 views
Rails API design without disabling CSRF protection
Back in February 2011, Rails was changed to require the CSRF token for all non-GET requests, even those for an API endpoint. I understand the explanation for why this is an important change for ...
5
votes
1answer
391 views
ASP.Net MVC CSRF Prevention for JSON POST
I'd like to close the CSRF vulnerability for posting raw JSON via AJAX.
I'm familiar with MVC's mechanism for automating CSRF prevention using the ValidateAntiForgeryTokenAttribute and ...
5
votes
2answers
438 views
Devise Logging User out on AJAX request. Rails 3.1
I have a controller which uses AJAX for CRUD, however whenever I click on one of my remote links (Delete for example) I see the rails server has decided to log me out and redirect me. Inspection of ...
5
votes
2answers
286 views
Why not use session ID as XSRF token?
Why does Play Framework use [a signed version of the session id] as Cross Site Request Forgery (XSRF/CSRF) prevention token, rather than the session ID itself?
(With XSRF prevention token, I mean a ...
5
votes
1answer
198 views
GWT & XSRF Protection
I'm looking at possible solutions to protect my GWT app against XSRF.
If I understand GWT's solution correctly - it makes available a Servlet which you use to both generate the token on the ...
5
votes
2answers
215 views
Is disabling CSRF protection sometimes justified?
I'm thinking of login forms in particular:
By their nature, login forms block action on arbitrary input — without a valid username and password, you just get bounced. Is there a reason why these even ...
5
votes
4answers
358 views
PHP security using POST instead of GET to protect against XSRF?
I have some URLs like http://mysite.com/module/45/set_name/new-name in my application which are designed to be accessed using ajax.
In order to prevent XSRF I force such request to be POST requests. ...
5
votes
3answers
389 views
What is a csrf token ? what is it's importance and how does it work?
Okay guys i am writing a django application and i just want an idea of what actually a csrf token is and how does it protect the data ? if we don't use csrf tokens, isn't the the post data safe ??
...
5
votes
5answers
187 views
Prevent Logout Action from Happening from Untrusted Sources in PHP
I have an action in my site:
http://mysite.com/User/Logout
This will log the current user out of his/her session. Since this is a simple GET request, a malicious user could either create links to ...
5
votes
1answer
2k views
Using MVC3's AntiForgeryToken in HTTP GET to avoid Javascript CSRF vulnerability
In regards to this Haacked blog, I'm hesitant to implement the proposed anti-JSON GET hijacking solutions since
The recommended solutions to mitigating JSON hijacking involve non-REST-full JSON ...
5
votes
1answer
749 views
Rails, OAuth, and CSRF protection
I am using REST and OAuth to talk to a Rails app (from an iPhone app, but that should not be relevant). However, I am running into some issues with Rails' CSRF protection (via protects_from_forgery).
...
5
votes
4answers
4k views
CSRF token generation
This is a question about generating CSRF tokens.
Usually I'd like to generate a token based off of a unique piece of data associated with the user's session, and hashed and salted with a secret key.
...
5
votes
3answers
761 views
XSRF protection in an AJAX style app
We're currently developing an entirely AJAX based app that will interact with the server via a RESTful API. I've considered potential schemes to protect against XSRF attacks against the API.
User ...
5
votes
3answers
971 views
How do I secure my JsonResult GET calls?
I know how to use MVC's AntiForgeryToken attribute and it's associated HTML helper to help XSRF-secure my application's form POSTs.
Can something similar can be done for JsonResults that implement ...
4
votes
3answers
71 views
Howto prevent spoofed posting to a PHP like/unlike system
I am trying to make a like/unlike system, when a user clicks like on a post, his/her user id (which is stored in a session) and the post id will be stored in a database through an ajax call.
Then I ...
4
votes
2answers
80 views
CSRF protection: do we have to generate a token for every form?
Do we have to generate a token, for every form in a website? I mean, every-time to generate different token for every requested form? If not, why?
4
votes
2answers
269 views
RequestVerificationToken does not match
I have a problem with the anti CRSF MVC mechanism. The cookie and the form input returned does not match. I'm getting an error every single time, only in one specific page. In the rest of the ...