我有一个sailsJS服务器。我尝试从另一个域的客户端发送帖子请求。
我从/ csrfToken发送_csrf,但我一次又一次地得到403 csrf不匹配
客户端代码如下所示:
$.ajax({
url: 'http://myserverdomain.ru/csrfToken'
success: (response) ->
$.ajax({
url: 'http://myserverdomain.ru/session/create'
type: "POST"
crossDomain: true
xhrFields: {
withCredentials: true
}
data: {_csrf: response._csrf, email: 'mail@mail', password: 'password'}
error: () ->
console.log 'error'
success: ( resp ) ->
console.log resp
})
})
服务器的配置:
module.exports.csrf = {
grantTokenViaAjax: true,
origin: 'http://myclientdomain.ru'
};
module.exports.cors = {
allRoutes: true,
origin: 'http://myclientdomain.ru',
credentials: true,
methods: 'GET, POST, PUT, DELETE',
headers: 'content-type'
响应如下:
CSRF mismatch
一般:
Remote Address:ip.ip.ip.1:1010
Request URL:http://myserverdomain.ru/session/create
Request Method:POST
Status Code:403 Forbidden
请求的标题:
Accept:*/*
Accept-Encoding:gzip, deflate
Accept-Language:ru-RU,ru;q=0.8,en-US;q=0.6,en;q=0.4
Content-Length:95
Content-Type:application/x-www-form-urlencoded; charset=UTF-8
Cookie:sails.sid=s%3A_HBoGJvI9N_-kH3Bj2LBrIrayWAb_k4z.N9P%2F%2Bt%2FDWCFAuK1MvBNjyYO1ntmp5m8a5Te0IM%2Ftn7s; BCSI-CS-c82c2a7dcc10e8b5=2
Host:myserverdomain.ru
Origin:http://myserverdomain.ru
Proxy-Connection:keep-alive
Referer:http://myserverdomain.ru/
User-Agent:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/43.0.2357.130 Safari/537.36
表单数据:
_csrf:ljGDMpSr-_O1ktMJ-zHEJfWaKPygXwNSSjcU
email:mail@mail
password:password
请帮帮我!
答案 0 :(得分:1)
我对SailsJs并不熟悉,但是在他们的文档上花了几分钟后,你所做的似乎是正确的,但我会尝试几件事
origin
中的module.exports.csrf
更改为*
module.exports.csrf = {
grantTokenViaAjax: true,
origin: '*'
}
答案 1 :(得分:1)
您必须在标题
中发送添加X-CSRF-Token:
$.ajax({
url: 'http://myserverdomain.ru/csrfToken'
success: (response) ->
$.ajax({
url: 'http://myserverdomain.ru/session/create'
type: "POST"
crossDomain: true
beforeSend: function(xhr, settings){
xhr.setRequestHeader('X-CSRF-Token', '_PUT_YOUR_CSRF_HERE_');
}
xhrFields: {
withCredentials: true
}
data: {_csrf: response._csrf, email: 'mail@mail', password: 'password'}
error: () ->
console.log 'error'
success: ( resp ) ->
console.log resp
})
})
答案 2 :(得分:0)
在config / crfs.js中,添加以下行和您的路线:
module.exports.csrf = {
grantTokenViaAjax: true
, routesDisabled: '*Route URLs*',
'origin': '*'
}