Collect seeded Qinglong script repositories

This commit is contained in:
Hermes Agent
2026-05-24 04:36:41 +00:00
parent 28d62fef03
commit ca1a4275e4
282 changed files with 143071 additions and 5 deletions

View File

@@ -0,0 +1,216 @@
// # Source: https://github.com/smallfawn/QLScriptPublic/blob/main/wxapp/stokke.js
// # Raw: https://raw.githubusercontent.com/smallfawn/QLScriptPublic/main/wxapp/stokke.js
// # Repo: smallfawn/QLScriptPublic
// # Path: wxapp/stokke.js
// # UploadedAt: 2026-05-14T17:47:57+08:00
// # SHA256: 1e4d7ea79b5853ad7ec5db7de29a5a427f36451ddc33e75cb713e2cefda272ad
// # Category: 微信小程序/抓包版
// # Evidence: appid/openid/session_key/encryptedData等小程序字段
//
/*
------------------------------------------
@Author: sm
@Date: 2024.06.07 19:15
@Description:
cron: 30 9 * * 1
------------------------------------------
#Notice:
stokke 微信小程序 每周签到得积分
WeChatCodeServer 填写wx_server_url wx_auth 用于获取code
变量名称stokke
⚠️【免责声明】
------------------------------------------
1、此脚本仅用于学习研究不保证其合法性、准确性、有效性请根据情况自行判断本人对此不承担任何保证责任。
2、由于此脚本仅用于学习研究您必须在下载后 24 小时内将所有内容从您的计算机或手机或任何存储设备中完全删除,若违反规定引起任何事件本人对此均不负责。
3、请勿将此脚本用于任何商业或非法目的若违反规定请自行对此负责。
4、此脚本涉及应用与本人无关本人对因此引起的任何隐私泄漏或其他后果不承担任何责任。
5、本人对任何脚本引发的问题概不负责包括但不限于由脚本错误引起的任何损失和损害。
6、如果任何单位或个人认为此脚本可能涉嫌侵犯其权利应及时通知并提供身份证明所有权证明我们将在收到认证文件确认后删除此脚本。
7、所有直接或间接使用、查看此脚本的人均应该仔细阅读此声明。本人保留随时更改或补充此声明的权利。一旦您使用或复制了此脚本即视为您已接受此免责声明。
*/
const {
Env
} = require("../tools/env")
const $ = new Env("stokke小程序");
const WeChatServer = require("./wcs.js");
let ckName = `stokke`;
const strSplitor = "#";
const axios = require("axios");
const defaultUserAgent = "Mozilla/5.0 (iPhone; CPU iPhone OS 16_5 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148 MicroMessenger/8.0.31(0x18001e31) NetType/WIFI Language/zh_CN miniProgram"
let wechat = new WeChatServer({
url: process.env.wx_server_url || 'http://192.168.31.196:12081',
appid: 'wxe232c36aaca3dc1a',
auth: process.env.wx_auth || "your-api-key",
}
);
class Task {
constructor(env) {
this.index = $.userIdx++
this.user = env.split(strSplitor);
this.token = null
this.wcsid = this.user[0]
this.isSign = false
}
async run() {
//随机延迟5-30s 模拟人工操作
await $.wait(Math.floor(Math.random() * 20 + 5) * 1000);
let { data: codeRes } = await wechat.getCode(this.wcsid)
if (codeRes.status) {
await this.getUserToken(codeRes.data.code)
}
if (!this.token) {
$.log(`账号[${this.index}] 获取用户Token失败❌`)
return
}
await this.getUserInfo()
await this.doSign()
}
async getUserToken(code) {
let data = ({
"code": code,
"spread_spid": 0,
"type": "routine",
"inviteCode": "",
"inviteTime": ""
});
let options = {
method: 'POST',
url: 'https://www.stokkeshop.cn/api/front/wechat/authorize/program/login?code=' + code,
headers: {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 MicroMessenger/7.0.20.1781 NetType/WIFI MiniProgramEnv/Windows WindowsWechat/WMPF XWEB/50249',
'Content-Type': 'application/json',
'xweb_xhr': '1',
'Authori-zation': '',
'Sec-Fetch-Site': 'cross-site',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Dest': 'empty',
'Referer': 'https://servicewechat.com/wxe232c36aaca3dc1a/54/page-frame.html',
'Accept-Language': 'zh-CN,zh;q=0.9'
},
data: data
};
let {
data: result
} = await axios.request(options);
if (result?.code == '200') {
this.token = result.data.token
$.log(`🌸账号[${this.index}] 获取用户Token成功:${this.token}`)
} else {
$.log(`🌸账号[${this.index}] 获取用户Token-失败:${result.message}`)
}
}
async getUserInfo() {
let options = {
method: 'GET',
url: `https://www.stokkeshop.cn/api/front/user`,
headers: {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 MicroMessenger/7.0.20.1781 NetType/WIFI MiniProgramEnv/Windows WindowsWechat/WMPF XWEB/50249',
'Content-Type': 'application/json',
'xweb_xhr': '1',
'Authori-zation': '' + this.token + '',
'Sec-Fetch-Site': 'cross-site',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Dest': 'empty',
'Referer': 'https://servicewechat.com/wxe232c36aaca3dc1a/54/page-frame.html',
'Accept-Language': 'zh-CN,zh;q=0.9'
}
}
let {
data: result
} = await axios.request(options);
if (result?.code == '200') {
//打印签到结果
$.log(`🌸账号[${this.index}]` + `[${result.data.nickname}] 积分[${result.data.integral}]🎉`);
} else {
$.log(`🌸账号[${this.index}] 获取用户信息-失败:${result.message}`)
}
}
async doSign() {
let options = {
method: 'POST',
url: `https://www.stokkeshop.cn/api/front/integral-task/finishWeekSign`,
headers: {
'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/116.0.0.0 Safari/537.36 MicroMessenger/7.0.20.1781 NetType/WIFI MiniProgramEnv/Windows WindowsWechat/WMPF XWEB/50249',
'Content-Type': 'application/json',
'xweb_xhr': '1',
'Authori-zation': '' + this.token + '',
'Sec-Fetch-Site': 'cross-site',
'Sec-Fetch-Mode': 'cors',
'Sec-Fetch-Dest': 'empty',
'Referer': 'https://servicewechat.com/wxe232c36aaca3dc1a/54/page-frame.html',
'Accept-Language': 'zh-CN,zh;q=0.9'
},
data: {}
};
let {
data: result
} = await axios.request(options);
if (result?.code == '200') {
//打印签到结果
$.log(`签到成功 🎉`);
} else {
$.log(`🌸账号[${this.index}] 签到-失败:${result.message}`)
}
}
}
!(async () => {
await getNotice()
$.checkEnv(ckName);
if (process.env['wx_server_url'] && process.env['wx_auth']) {
for (let user of $.userList) {
await new Task(user).run();
}
} else {
$.log(`${ckName}未配置微信SERVER配置 搭建可看仓库目录下的readme.md❌`)
return
}
})()
.catch((e) => console.log(e))
.finally(() => $.done());
async function getNotice() {
try {
let options = {
url: `https://ghproxy.net/https://raw.githubusercontent.com/smallfawn/Note/refs/heads/main/Notice.json`,
headers: {
"User-Agent": defaultUserAgent,
},
timeout: 3000
}
let {
data: res
} = await axios.request(options);
$.log(res)
return res
} catch (e) { }
}