기본 콘텐츠로 건너뛰기

[django] jquery ajax + django => csrf verification failure

source:http://stackoverflow.com/questions/6506897/csrf-token-missing-or-incorrect-while-post-parameter-via-ajax-in-django/6533544#6533544

question:
I try to post parameter like
 jQuery.ajax(
        {
            'type': 'POST',
            'url': url,
            'contentType': 'application/json',
            'data': "{content:'xxx'}",
            'dataType': 'json',
            'success': rateReviewResult 
        }
    );
However, Django return Forbidden 403. CSRF verification failed. Request aborted. I am using 'django.middleware.csrf.CsrfViewMiddleware' and couldn't find how I can prevent this problem without compromising security.

answer:
It took me a while to understand what to do with the code that Daniel posted. But actually all you have to do is paste it at the beginning of the javascript file.
For me, the best solution so far is:
  1. Create a csfr.js file
  2. Paste the code in csfr.js file
  3. Reference the code in the template you need it
    <script type="text/javascript" src="{{ STATIC_PREFIX }}js/csrf.js"></script>
Notice that STATIC_PREFIX/js/csfr.js points to my file. I am actually loading the STATIC_PREFIXvariable with {% get_static_prefix as STATIC_PREFIX %}.
AN EXTRA TIP: if you are using templates and have something like base.html where you extend from, then you can just reference the script from there and you don't have to worry any more in there rest of your programming. As far as I know, this shouldn't represent any security issue

----------------------------------------------------------------------------------------------------------------------------------------
my solution in detail:

Python 2.7.3 (default, Feb 27 2014, 19:58:35) 
[GCC 4.6.3] on linux2
Type "help", "copyright", "credits" or "license" for more information.
(InteractiveConsole)
>>> import django
>>> django.VERSION
(1, 6, 0, 'final', 0)

/app1/static/app1/js/csrf.js:

  1 $(document).ajaxSend(function(event, xhr, settings) {
  2     function getCookie(name) {
  3         var cookieValue = null;
  4         if (document.cookie && document.cookie != '') {
  5             var cookies = document.cookie.split(';');
  6             for (var i = 0; i < cookies.length; i++) {
  7                 var cookie = jQuery.trim(cookies[i]);
  8                 // Does this cookie string begin with the name we want?
  9                 if (cookie.substring(0, name.length + 1) == (name + '=')) {
 10                     cookieValue = decodeURIComponent(cookie.substring(name.length + 1));
 11                     break;
 12                 }
 13             }
 14         }
 15         return cookieValue;
 16     }
 17     function sameOrigin(url) {
 18         // url could be relative or scheme relative or absolute
 19         var host = document.location.host; // host + port
 20         var protocol = document.location.protocol;
 21         var sr_origin = '//' + host;
 22         var origin = protocol + sr_origin;
 23         // Allow absolute or scheme relative URLs to same origin
 24         return (url == origin || url.slice(0, origin.length + 1) == origin + '/') ||
 25             (url == sr_origin || url.slice(0, sr_origin.length + 1) == sr_origin + '/') ||
 26             // or any other URL that isn't scheme relative or absolute i.e relative.
 27             !(/^(\/\/|http:|https:).*/.test(url));
 28     }
 29     function safeMethod(method) {
 30         return (/^(GET|HEAD|OPTIONS|TRACE)$/.test(method));
 31     }
 32 
 33     if (!safeMethod(settings.type) && sameOrigin(settings.url)) {
 34         xhr.setRequestHeader("X-CSRFToken", getCookie('csrftoken'));
 35     }
 36 });

/app1/templates/app1/index.html (django template)

  1 <html>
  2 <head>
  3     <title>Ajax Testing Page</title>
  4 
  5     {% load staticfiles %}
  6     <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script> <!--this should be positioned earlier than including csrf.js -->
  7     <script src="{% static "mainpage/js/csrf.js" %}"></script>
  8     <script>
  9     $(document).ready(function(){
 10       $("#button1").click(function(){
 11         $.get("ajax_handler", function(data,status){
 12           alert("Data: " + data + "\nStatus: " + status);
 13         });
 14       });
 15     });
 16 
 17     $(document).ready(function(){
 18       $("#button2").click(function(){
 19         $.post("ajax_handler",
 20         {
 21           name:"Donald Duck",
 22           city:"Duckburg"
 23         },
 24         function(data,status){
 25           alert("Data: " + data + "\nStatus: " + status);
 26         });
 27       });
 28     });
 29     </script>
 30 </head>
 31 
 32 <body>
 33     <button id="button1">Send an HTTP GET request to a page and get the result back</button><br/>
 34     <button id="button2">Send an HTTP POST request to a page and get the result back</button>
 35     </div>
 36 </body>
 37 
 38 </html>

/app1/views.py:

  1 from django.shortcuts import render, render_to_response
  2 import json
  3 from django.http import HttpResponse
  4 
  5 def index_handler(request):
  6     return render(request, 'mainpage/index.html', locals())
  7 
  8 
  9 def ajax_handler(request):
 10     if request.is_ajax() and request.method == 'GET':
 11         response_dict = {}
 12         return HttpResponse(json.dumps(response_dict), content_type='application/javascript')
 13 
 14     elif request.is_ajax() and request.method == 'POST':
 15         response_dict = {}
 16         return HttpResponse(json.dumps(response_dict), content_type='application/javascript')
 17 
 18     else:
 19         assert(False) #should be changed.

/myproject/urls.py:

  1 from django.conf.urls import patterns, include, url
  2 
  3 from django.contrib import admin
  4 admin.autodiscover()
  5 
  6 from mainpage.views import index_handler, ajax_handler  
  7 
  8 urlpatterns = patterns('',
  9     # Examples:
 10     # url(r'^$', 'ajax_test.views.home', name='home'),
 11     # url(r'^blog/', include('blog.urls')),
 12 
 13     url(r'^admin/', include(admin.site.urls)),
 14     url(r'^$', index_handler),
 15     url(r'^ajax_handler$', ajax_handler),
 16 )

댓글

이 블로그의 인기 게시물

[linux] 뻔하지 않은 파일 퍼미션(file permissions) 끄적임. 정말 속속들이 아니?

1. [특수w]내 명의의 디렉토리라면 제아무리 루트가 만든 파일에 rwxrwxrwx 퍼미션이라 할지라도 맘대로 지울 수 있다. 즉 내 폴더안의 파일은 뭐든 지울 수 있다. 2. [일반rx]하지만 읽기와 쓰기는 other의 권한을 따른다. 3.[일반rwx]단 남의 계정 폴더는 그 폴더의 퍼미션을 따른다. 4.[일반]만약 굳이 sudo로 내 소유로 파일을 넣어놓더라도 달라지는건 없고, 단지 그 폴더의 other퍼미션에 write권한이 있으면 파일을 만들고 삭제할 수 있다. 5.디렉토리의 r권한은 내부의 파일이름 정도만 볼 수있다. 하지만 ls 명령의 경우 소유자, 그룹, 파일크기 등의 정보를 보는 명령어므로 정상적인 실행은 불가능하고, 부분적으로 실행됨. frank@localhost:/export/frankdir$ ls rootdir/ ls: cannot access rootdir/root: 허가 거부 ls: cannot access rootdir/fa: 허가 거부 fa  root #이처럼 속한 파일(폴더)만 딸랑 보여준다. frank@localhost:/export/frankdir$ ls -al rootdir/ # al옵션이 모두 물음표 처리된다.. ls: cannot access rootdir/root: 허가 거부 ls: cannot access rootdir/..: 허가 거부 ls: cannot access rootdir/.: 허가 거부 ls: cannot access rootdir/fa: 허가 거부 합계 0 d????????? ? ? ? ?             ? . d????????? ? ? ? ?             ? .. -????????? ? ? ? ?             ? fa -????????? ? ? ? ?     ...

[인코딩] MS949부터 유니코드까지

UHC = Unified Hangul Code = 통합형 한글 코드 = ks_c_5601-1987 이는 MS사가 기존 한글 2,350자밖에 지원하지 않던 KS X 1001이라는 한국 산업 표준 문자세트를 확장해 만든 것으로, 원래 문자세트의 기존 내용은 보존한 상태로 앞뒤에 부족한 부분을 채워넣었다. (따라서 KS X 1001에 대한 하위 호환성을 가짐) 그럼, cp949는 무엇일까? cp949는 본래 코드 페이지(code page)라는 뜻이라 문자세트라 생각하기 십상이지만, 실제로는 인코딩 방식이다. 즉, MS사가 만든 "확장 완성형 한글 ( 공식명칭 ks_c_5601-1987 ) "이라는 문자세트를 인코딩하는 MS사 만의 방식인 셈이다. cp949 인코딩은 표준 인코딩이 아니라, 인터넷 상의 문자 송수신에 사용되지는 않는다. 하지만, "확장 완성형 한글" 자체가 "완성형 한글"에 대한 하위 호환성을 고려해 고안됐듯, cp949는 euc-kr에 대해 (하위) 호환성을 가진다. 즉 cp949는 euc-kr을 포괄한다. 따라서, 윈도우즈에서 작성되어 cp949로 인코딩 되어있는 한글 문서들(txt, jsp 등등)은 사실, euc-kr 인코딩 방식으로 인터넷 전송이 가능하다. 아니, euc-kr로 전송해야만 한다.(UTF-8 인코딩도 있는데 이것은 엄밀히 말해서 한국어 인코딩은 아니고 전세계의 모든 문자들을 한꺼번에 인코딩하는 것이므로 euc-kr이 한국어 문자세트를 인코딩할 수 있는 유일한 방식임은 변하지 않는 사실이다.) 물론 이를 받아보는 사람도 euc-kr로 디코딩을 해야만 문자가 깨지지 않을 것이다. KS X 1001을 인코딩하는 표준 방식은 euc-kr이며 인터넷 상에서 사용 가능하며, 또한 인터넷상에서 문자를 송수신할때만 사용.(로컬하드에 저장하는데 사용하는 인코딩방식으로는 쓰이지 않는 듯하나, *nix계열의 운영체제에서는 LANG을 euc-kr로 설정 가능하기도 한걸...

[javascript, 자바스크립트] 버튼을 a태그처럼, a태그를 버튼처럼

사실 첫번째 submit은 버튼이지만 css style로 hyperlink처럼 바꾼 모습이고, 두번째 submit버튼모양은 사실 hyperlink지만 css style로 버튼마냥 바꾼 모습니다. 적용에 사용된 소스는 아래: <!DOCTYPE html> <html> <head> <style>     a.button {       -webkit-appearance: button;       -moz-appearance: button;       appearance: button;     }     input.submitLink {     background-color: transparent;     text-decoration: underline;     border: none;     cursor: pointer;     } </style> <script>     function formSubmit()     {     document.getElementById("frm1").submit();     } </script> </head> <body> <form action="test1.jsp" method="get"> name: <input type=text name="name"> phone: <input type=text name="phone"> <input type=submit value="subm...