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

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 desktop client that are POST'ed get a 403.

I understand why this is happening, but what is the proper way to fix this without compromising security? Is there someway I can signal in the HTTP header that it's an API request and that Django shouldn't be checking for CSRF or is that a bad strategy?

Edit--

The method I'm using at the moment is that the desktop client sets a header, X-Requested-With: XMLHttpRequest. This is kinda hacky, but I'm not sure how this would be handled better.

share|improve this question
since your temporal solution (from last edit) is basically turning off csrf, you can turn off the middleware completely, don't you? :) – Dmitry Shevchenko Mar 8 '10 at 23:26
It needs to be on for the rest of the site (the front-end portion) – T. Stone Mar 8 '10 at 23:44

4 Answers

up vote 7 down vote accepted

How about just splitting off a view(s) for your desktop client and decorating them with csrf_exempt? http://docs.djangoproject.com/en/1.1/ref/contrib/csrf/#ref-contrib-csrf

share|improve this answer
2  
That is exactly the setup but csrf_exempt doesn't seem to make a difference. It still gives a 403 with that decorator. +1 because according to the doc this should be working, even though it's not. – T. Stone Mar 9 '10 at 0:41
This is ONLY valid if the API can't be accessed through the browser. Otherwise this is potentially super dangerous as a request could then be forged from another site, against the API. – Jonatan Littke May 21 '12 at 12:03

Since Django 1.1, the CSRF code will automatically allow AJAX requests to pass through, since browsers seem to do proper security checks. Here is the original commit and the documentation.

share|improve this answer
Hm, that's not true, is it? In the link you provided, it does say you need to add an extra header for AJAX to work, not that it works automatically. – Jonatan Littke May 21 '12 at 11:51

If you are using a Class Based View then you will need to csrf_exempt the dispatch method rather than the post method like this:

@method_decorator(csrf_exempt)
def dispatch(self, request, *args, **kwargs):
    return super(MyView, self).dispatch(request, *args, **kwargs)

See this bug ticket: https://code.djangoproject.com/ticket/15794

share|improve this answer

According to the same origin policy of most browser side scripting languages; HTTP Header's are off limits. Flash has the most insecure rules and only a few headers are off limits (most notably the Referer as it directly relates to CSRF), but flash allows you to declare custom header names so I would avoid relying on headers for secuirty. Due to flash's insecure nature some CSRF exploits can only be written in flash, most notably "cross site file upload". There are applications that only check to make sure that the Referer and the domain/ip are the same. Motorola does this for some of their products and this is secure, but not a "hardened" approach.

For most APIs the referer doesn't apply. A web browser isn't accessing the API, so an attacker can't force the browser into making a request on his behalf. The rules can change if this is a JavaScript API. But in general you shouldn't have to worry about CSRF unless a browser has an authenticated connection to the API. Also, make sure that your API calls require authentication, sometimes CSRF can be a problem even if guests can access the resource, but this may not apply in this situation.

share|improve this answer
To answer a couple of your comments -- This is not an javascript/XHR API and yes it does implement it's own authentication. As you point out CSRF doesn't apply since the API isn't being used by a browser in the first place. I'm mainly interested in a way to disable CSRF checking for just the API and to leave it intact for the remainder of the site. – T. Stone Mar 8 '10 at 23:07
Ah, sorry I don't know django. I like the python web services, especially the soap client/server. – Rook Mar 8 '10 at 23:08
If you can't find an answer to the django problem it shouldn't be difficult to port your api to python web services. – Rook Mar 8 '10 at 23:46

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.