CSRF's AJAX request

Source: Internet
Author: User

A:ajax submit data is, carry CSRF in data:

  

<form method="POST"action="/csrf.html">    {% Csrf_token%}    <input id="User"Type="text"Name="User"/> <input type="Submit"Value="Submit"/> <a onclick="submitForm ();">ajax Submission </a></form> <script src="/static/jquery-1.12.4.js"></script><script>function SubmitForm () {var csrf= $('input[name= "Csrfmiddlewaretoken"]'). Val (); var user= $('#user'). Val (); $.ajax ({URL:'/csrf.html', type:'POST', data: {"User": User,'Csrfmiddlewaretoken': Csrf}, Success:function (ARG) {console.log (ARG); }        })    }</script>

B:ajax submission data is that the carrying CSRF is in the request header:

<form method="POST"action="/csrf.html">    {% Csrf_token%}    <input id="User"Type="text"Name="User"/> <input type="Submit"Value="Submit"/> <a onclick="submitForm ();">ajax Submit </a></form><script src="/static/jquery-1.12.4.js"></script><script src="/static/jquery.cookie.js"></script><script>function SubmitForm () {var token= $.cookie ('Csrftoken'); var user= $('#user'). Val () $.ajax ({URL:'/csrf.html', type:'POST', headers:{'X-csrftoken': Token}, data: {"User": User}, Success:function (ARG) {console.log (ARG); }    })}</script>

CSRF's AJAX request

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.