玩到15关的时候也获取了密码但是提示密码错误。
我也设置了cookie 但是设置与不设置都返回了密码
代码如下
// ==UserScript==
// @name New Userscript
// @namespace https://bbs.tampermonkey.net.cn/
// @version 0.1.0
// @description try to take over the world!
// @author You
// @match https://puzzle.ggnb.top/xhr-2.html
// @grant GM_xmlhttpRequest
// @connect puzzle.ggnb.top
// ==/UserScript==
(function () {
'use strict';
GM_xmlhttpRequest({
url: "https://puzzle.ggnb.top/xhr/xhr-2.html",
method: "POST",
data: "greeting=油中3周年快乐",
headers: {
"Content-type": "application/x-www-form-urlencoded"
},
cookie:"_LIB_SESSION_ID_V5pQ8cyxW8O=s%3AB8oqcq314O2rAs6PO1Uw0E31XxfAjobR.Bs%2F3LjuAjiS%2BTap97LS0V7O4RArlAuuZ3J6u0QpGVsA",
onload: function (xhr) {
console.log(xhr.responseText);
}
});
// Your code here...
})();
放回密码如下:
但还是提示密码错误。
返回的应该是一个随机数,14关直接过了,但是15关就不行了。
请gg们解答。