Files
qinglong/脚本库/web版/账密/Anime字幕论坛_,/2023-01-21_Anime_ae31e135.js
2026-05-24 03:53:42 +00:00

35 lines
1.3 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
// # Source: https://github.com/Wenmoux/checkbox/blob/master/scripts/Anime.js
// # Raw: https://raw.githubusercontent.com/Wenmoux/checkbox/master/scripts/Anime.js
// # Repo: Wenmoux/checkbox
// # Path: scripts/Anime.js
// # UploadedAt: 2023-01-21T03:29:57Z
// # SHA256: ae31e135b3cf61bf21536d587c788f23b7fd2b7a338b497319f729e82deab24d
// # Category: web版/账密
// # Evidence: web/H5关键词 + username/password/login
//
const rules = {
name: "【Anime字幕论坛】",
url: "https://bbs.acgrip.com/member.php?mod=logging&action=login&mobile=2", //用于获取formhash的链接
cookie: config.Anime.cookie,
formhash: 'formhash\":\"(.+?)\"', //formhash正则
verify: "答案", //验证cookie状态
op: [{
name: "签到",
method: "post", //签到请求方式
url: "https://bbs.acgrip.com/plugin.php?id=dsu_paulsign:sign&operation=qiandao&infloat=0&inajax=0&mobile=yes", //签到链接
data: "formhash=@formhash&qdxq=kx&qdmode=3&todaysay=&fastreply="
},
{
name: "申请红包任务",
ua: "pc",
method: "get",
url: "https://bbs.acgrip.com/home.php?mod=task&do=apply&id=1"
} ]
};
async function Anime() {
const template = require("../Template");
return rules.name + await template(rules)
}
module.exports = Anime