码迷,mamicode.com
首页 > 其他好文 > 详细

Tornado(二)

时间:2016-10-17 14:04:43      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

跨站请求伪造CSRF

开启xsrf(就是叫法不一样和csrf一样),‘xsrf_cookies‘:True 

settings = {
    template_path:template,
    static_path:static,
    static_path_prefix:/static/,
    xsrf_cookies:True,
}

在post表单中增加csrf认证

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link href="{{static_url("commons.css")}}" rel="stylesheet" />
</head>
<body>
<h1>index.html</h1>
<h1>{{ name }}</h1>
<form action="/index" method="post">
{% module xsrf_form_html() %} <p>user:<input type="text"/></p> <p>password:<input type="password" /> </p> <input type="submit" value="submit" /> </form> </body> </html>

网站请求效果(表单中没有增加认证token):

 技术分享

 

加上token

技术分享

 

技术分享

 

AJAX方法

官方提供:

获取cookie的token信息  args._xsrf = getCookie("_xsrf");
function getCookie(name) {
    var r = document.cookie.match("\\b" + name + "=([^;]*)\\b");
    return r ? r[1] : undefined;
}

jQuery.postJSON = function(url, args, callback) {
    args._xsrf = getCookie("_xsrf");
    $.ajax({url: url, data: $.param(args), dataType: "text", type: "POST",
        success: function(response) {
        callback(eval("(" + response + ")"));
    }});
};

 

Tornado(二)

标签:

原文地址:http://www.cnblogs.com/menkeyi/p/5969153.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!