Collect authenticated Qinglong scripts batch
This commit is contained in:
41
脚本库/web版/抓包/pingu/2021-10-18_pingu_298375e2.js
Normal file
41
脚本库/web版/抓包/pingu/2021-10-18_pingu_298375e2.js
Normal file
@@ -0,0 +1,41 @@
|
||||
// # Source: https://github.com/Wenmoux/checkbox/blob/master/scripts/pingu.js
|
||||
// # Raw: https://raw.githubusercontent.com/Wenmoux/checkbox/master/scripts/pingu.js
|
||||
// # Repo: Wenmoux/checkbox
|
||||
// # Path: scripts/pingu.js
|
||||
// # UploadedAt: 2021-10-18T16:32:03Z
|
||||
// # SHA256: 298375e236180b0ddb22ad22902ddc939dd1742ed2d61fd488164f987eb16a16
|
||||
// # Category: web版/抓包
|
||||
// # Evidence: web/H5关键词 + cookie/token/header
|
||||
//
|
||||
|
||||
//经管之家 邀请链接 https://bbs.pinggu.org/?fromuid=11925701
|
||||
const axios = require("axios");
|
||||
function task() {
|
||||
return new Promise(async (resolve) => {
|
||||
try {
|
||||
let url = "https://bbs.pinggu.org/index_lth5.php?mod=my_qiandao&uid=";
|
||||
let res = await axios.get(url, {
|
||||
headers: {
|
||||
cookie: config.pinggu.cookie,
|
||||
"X-Requested-With": "XMLHttpRequest",
|
||||
"User-Agent":
|
||||
"Mozilla/5.0 (Linux; Android 10; Redmi K30) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/86.0.4240.110 Mobile Safari/537.36",
|
||||
},
|
||||
});
|
||||
if (res.data.data) {
|
||||
msg = res.data.data.msg
|
||||
} else {
|
||||
msg = "cookie已失效,请及时更新";
|
||||
}
|
||||
console.log(msg);
|
||||
} catch (err) {
|
||||
console.log(err);
|
||||
msg = "签到接口请求出错";
|
||||
}
|
||||
resolve("【经管之家】:\n" + msg);
|
||||
});
|
||||
}
|
||||
|
||||
//task()
|
||||
|
||||
module.exports = task;
|
||||
Reference in New Issue
Block a user