mirror of
https://github.com/smallfawn/QLScriptPublic.git
synced 2025-12-16 23:09:38 +08:00
Create quzanmi.js
This commit is contained in:
427
quzanmi.js
Normal file
427
quzanmi.js
Normal file
@@ -0,0 +1,427 @@
|
||||
|
||||
/**
|
||||
变量名 qzmCookie 抓包 x-qzm-token 每天0.6,满10提现,绑定支付宝时会自动提现0.3,秒到,
|
||||
*/
|
||||
|
||||
const $ = new ENV("趣攒米视频任务", ["qzmCookie"]);
|
||||
const cookieArr = $.qzmCookie.split("&");
|
||||
|
||||
class QZM {
|
||||
constructor(ck, index) {
|
||||
this.ck = ck.split("#")[0];
|
||||
this.index = ++index;
|
||||
this.oaid = this.randomString(16);
|
||||
this.androidId = this.randomString(16);
|
||||
}
|
||||
|
||||
randomString(length) {
|
||||
// const table = "0123456789ABCDEF";
|
||||
const table = "0123456789abcdef";
|
||||
const _0x5ddc9a = {
|
||||
length: length
|
||||
};
|
||||
return Array.from(_0x5ddc9a, () => table[Math.floor(Math.random() * table.length)]).join("");
|
||||
}
|
||||
|
||||
randomStringNum(length) {
|
||||
// const table = "0123456789ABCDEF";
|
||||
const table = "0123456789";
|
||||
const _0x5ddc9a = {
|
||||
length: length
|
||||
};
|
||||
return Array.from(_0x5ddc9a, () => table[Math.floor(Math.random() * table.length)]).join("");
|
||||
}
|
||||
|
||||
async main() {
|
||||
const info = await this.getUserInfo();
|
||||
if (!info) {
|
||||
return void 0;
|
||||
}
|
||||
try {
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 获取任务列表`)
|
||||
const tasks = await this.taskList()
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 刷新令牌`)
|
||||
await this.access()
|
||||
for (const task of tasks) {
|
||||
const source = task.source;
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 开始任务 ${task.name}`)
|
||||
for (let i = 0; i < 10; i++) {
|
||||
try {
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 假装看广告 ${i+1}`)
|
||||
await this.ecpm();
|
||||
}catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
await $.wait(10000)
|
||||
}
|
||||
try {
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 领取奖励`)
|
||||
const re = await this.reward(source)
|
||||
if (re){
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 领取奖励成功`)
|
||||
}else {
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 领取奖励失败`)
|
||||
}
|
||||
}catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
}
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
try {
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 兑换金币`)
|
||||
await this.getUserInfo()
|
||||
if (this.point>=1000){
|
||||
await this.trade(this.point)
|
||||
}else {
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 当前金币数量不可兑换`)
|
||||
}
|
||||
}catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
async getUserInfo() {
|
||||
const options = {
|
||||
'method': 'GET',
|
||||
'url': 'https://api.quzanmi.com/api/user/info/mine',
|
||||
'headers': {
|
||||
'Accept': 'application/json, text/plain, */*',
|
||||
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
|
||||
'Cache-Control': 'no-cache',
|
||||
'Connection': 'keep-alive',
|
||||
'Origin': 'http://anh5.quzanmi.com',
|
||||
'Pragma': 'no-cache',
|
||||
'Referer': 'http://anh5.quzanmi.com/',
|
||||
'Sec-Fetch-Dest': 'empty',
|
||||
'Sec-Fetch-Mode': 'cors',
|
||||
'Sec-Fetch-Site': 'cross-site',
|
||||
'User-Agent': 'Mozilla/5.0 (Linux; Android 14; 22081212C Build/UKQ1.230917.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/125.0.6422.3 Mobile Safari/537.36 AgentWeb/5.0.8 UCBrowser/11.6.4.950',
|
||||
'sec-ch-ua': '"Android WebView";v="125", "Chromium";v="125", "Not.A/Brand";v="24"',
|
||||
'sec-ch-ua-mobile': '?1',
|
||||
'sec-ch-ua-platform': '"Android"',
|
||||
'x-qzm-aid': `|${this.oaid}|${this.androidId}`,
|
||||
'x-qzm-bundle': 'com.zhangwen.quzanmi|Xiaomi|13|1.0.0',
|
||||
'x-qzm-device': 'android',
|
||||
'x-qzm-time': parseInt((Date.now() / 1000).toString()).toString(),
|
||||
'x-qzm-token': this.ck,
|
||||
}
|
||||
};
|
||||
const res = await $.request(options);
|
||||
if (res.code === 2000) {
|
||||
this.id = res.data.id;
|
||||
this.phone = res.data.phone_number;
|
||||
this.nickName = res.data.nickname;
|
||||
this.realName = res.data.realname;
|
||||
this.score = res.data.score;
|
||||
this.today_income = res.data.today_income;
|
||||
this.banlance = res.data.balance;
|
||||
this.payment_num = res.data.payment_num;
|
||||
this.point = res.data.point;
|
||||
this.total_balance = res.data.total_balance;
|
||||
// console.log( res.data)
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 真名: ${this.realName} 手机号: ${this.phone}`);
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 余额: ${this.banlance} 金币: ${this.point}`);
|
||||
return true;
|
||||
} else {
|
||||
$.log(`获取用户信息失败: ${res.message}`);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
async taskList() {
|
||||
const options = {
|
||||
'method': 'GET',
|
||||
'url': 'https://api.quzanmi.com/api/ad/android/list',
|
||||
'headers': {
|
||||
'Accept': 'application/json, text/plain, */*',
|
||||
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
|
||||
'Cache-Control': 'no-cache',
|
||||
'Connection': 'keep-alive',
|
||||
'Origin': 'http://anh5.quzanmi.com',
|
||||
'Pragma': 'no-cache',
|
||||
'Referer': 'http://anh5.quzanmi.com/',
|
||||
'Sec-Fetch-Dest': 'empty',
|
||||
'Sec-Fetch-Mode': 'cors',
|
||||
'Sec-Fetch-Site': 'cross-site',
|
||||
'User-Agent': 'Mozilla/5.0 (Linux; Android 14; 22081212C Build/UKQ1.230917.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/125.0.6422.3 Mobile Safari/537.36 AgentWeb/5.0.8 UCBrowser/11.6.4.950',
|
||||
'sec-ch-ua': '"Android WebView";v="125", "Chromium";v="125", "Not.A/Brand";v="24"',
|
||||
'sec-ch-ua-mobile': '?1',
|
||||
'sec-ch-ua-platform': '"Android"',
|
||||
'x-qzm-aid': `|${this.oaid}|${this.androidId}`,
|
||||
'x-qzm-bundle': 'com.zhangwen.quzanmi|Redmi|14|1.0.1',
|
||||
'x-qzm-device': 'android',
|
||||
'x-qzm-time': parseInt((Date.now() / 1000).toString()).toString(),
|
||||
'x-qzm-token': this.ck,
|
||||
}
|
||||
};
|
||||
const res = await $.request(options);
|
||||
if (res.code === 2000) {
|
||||
const list = res.data.filter(item => item.source.includes("videoad"));
|
||||
// console.log(list)
|
||||
return list
|
||||
} else {
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 获取任务列表 ${res.msg}`);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
async access() {
|
||||
const options = {
|
||||
'method': 'POST',
|
||||
'url': 'https://api.aibianxian.net/igame/api/v1.0/cplApi/access',
|
||||
'headers': {
|
||||
'Accept': 'application/json, text/plain, */*',
|
||||
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
|
||||
'Cache-Control': 'no-cache',
|
||||
'Connection': 'keep-alive',
|
||||
'Origin': 'http://anh5.quzanmi.com',
|
||||
'Pragma': 'no-cache',
|
||||
'Referer': 'http://anh5.quzanmi.com/',
|
||||
'Sec-Fetch-Dest': 'empty',
|
||||
'Sec-Fetch-Mode': 'cors',
|
||||
'Sec-Fetch-Site': 'cross-site',
|
||||
'User-Agent': 'Mozilla/5.0 (Linux; Android 14; 22081212C Build/UKQ1.230917.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/125.0.6422.3 Mobile Safari/537.36 AgentWeb/5.0.8 UCBrowser/11.6.4.950',
|
||||
'sec-ch-ua': '"Android WebView";v="125", "Chromium";v="125", "Not.A/Brand";v="24"',
|
||||
'sec-ch-ua-mobile': '?1',
|
||||
'sec-ch-ua-platform': '"Android"',
|
||||
'x-qzm-aid': `|${this.oaid}|${this.androidId}`,
|
||||
'x-qzm-bundle': 'com.zhangwen.quzanmi|Redmi|14|1.0.1',
|
||||
'x-qzm-device': 'android',
|
||||
'x-qzm-time': parseInt((Date.now() / 1000).toString()).toString(),
|
||||
'x-qzm-token': this.ck,
|
||||
'Content-Type': 'multipart/form-data; boundary=----WebKitFormBoundaryZnyXeBEEvBYSL7mL'
|
||||
},
|
||||
formData: {
|
||||
'app_key': '142793900',
|
||||
'device': 'android',
|
||||
'device_info': this.oaid,
|
||||
'target_id': this.id
|
||||
}
|
||||
};
|
||||
const res = await $.request(options);
|
||||
// console.log(res)
|
||||
if (res.code == 200) {
|
||||
this.token = res.data.token;
|
||||
// console.log(this.token)
|
||||
return true
|
||||
} else {
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 刷新令牌 ${res.msg}`);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
randomEcpm(min, max) {
|
||||
// 生成一个介于min和max之间的随机整数
|
||||
const randomNumber = Math.floor(Math.random() * (max - min + 1)) + min;
|
||||
// 将随机数转换为字符串
|
||||
return randomNumber.toString();
|
||||
}
|
||||
|
||||
async reward(source) {
|
||||
const options = {
|
||||
url: `https://api.quzanmi.com/api/ad/android/reward`,
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Accept': 'application/json, text/plain, */*',
|
||||
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
|
||||
'Cache-Control': 'no-cache',
|
||||
'Connection': 'keep-alive',
|
||||
'Origin': 'http://anh5.quzanmi.com',
|
||||
'Pragma': 'no-cache',
|
||||
'Referer': 'http://anh5.quzanmi.com/',
|
||||
'Sec-Fetch-Dest': 'empty',
|
||||
'Sec-Fetch-Mode': 'cors',
|
||||
'Sec-Fetch-Site': 'cross-site',
|
||||
'Content-Type': 'application/json;charset=UTF-8',
|
||||
'User-Agent': 'Mozilla/5.0 (Linux; Android 14; 22081212C Build/UKQ1.230917.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/125.0.6422.3 Mobile Safari/537.36 AgentWeb/5.0.8 UCBrowser/11.6.4.950',
|
||||
'sec-ch-ua': '"Android WebView";v="125", "Chromium";v="125", "Not.A/Brand";v="24"',
|
||||
'sec-ch-ua-mobile': '?1',
|
||||
'sec-ch-ua-platform': '"Android"',
|
||||
'x-qzm-aid': `|${this.oaid}|${this.androidId}`,
|
||||
'x-qzm-bundle': 'com.zhangwen.quzanmi|Redmi|14|1.0.1',
|
||||
'x-qzm-device': 'android',
|
||||
'x-qzm-time': parseInt((Date.now() / 1000).toString()).toString(),
|
||||
'x-qzm-token': this.ck,
|
||||
},
|
||||
body: JSON.stringify({"source": source})
|
||||
}
|
||||
const res = await $.request(options);
|
||||
if (res.code === 2000) {
|
||||
return true
|
||||
} else {
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 领取奖励 ${res.msg}`);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
async ecpm() {
|
||||
const options = {
|
||||
url: `https://api.quzanmi.com/api/ad/app/ecpm`,
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Accept': 'application/json, text/plain, */*',
|
||||
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
|
||||
'Cache-Control': 'no-cache',
|
||||
'Connection': 'keep-alive',
|
||||
'Origin': 'http://anh5.quzanmi.com',
|
||||
'Pragma': 'no-cache',
|
||||
'Referer': 'http://anh5.quzanmi.com/',
|
||||
'Sec-Fetch-Dest': 'empty',
|
||||
'Sec-Fetch-Mode': 'cors',
|
||||
'Sec-Fetch-Site': 'cross-site',
|
||||
'Content-Type': 'application/json;charset=UTF-8',
|
||||
'User-Agent': 'Mozilla/5.0 (Linux; Android 14; 22081212C Build/UKQ1.230917.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/125.0.6422.3 Mobile Safari/537.36 AgentWeb/5.0.8 UCBrowser/11.6.4.950',
|
||||
'sec-ch-ua': '"Android WebView";v="125", "Chromium";v="125", "Not.A/Brand";v="24"',
|
||||
'sec-ch-ua-mobile': '?1',
|
||||
'sec-ch-ua-platform': '"Android"',
|
||||
'x-qzm-aid': `|${this.oaid}|${this.androidId}`,
|
||||
'x-qzm-bundle': 'com.zhangwen.quzanmi|Redmi|14|1.0.1',
|
||||
'x-qzm-device': 'android',
|
||||
'x-qzm-time': parseInt((Date.now() / 1000).toString()).toString(),
|
||||
'x-qzm-token': this.ck,
|
||||
},
|
||||
body: JSON.stringify({"ecpm": this.randomEcpm(100000,800000)+".0", "source": "android", "kind": "rewardAd", "rit_id": "1"+this.randomStringNum(8)})
|
||||
}
|
||||
const res = await $.request(options);
|
||||
if (res.code === 2000) {
|
||||
return true
|
||||
} else {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
async trade(point){
|
||||
const options = {
|
||||
url: 'https://api.quzanmi.com/api/user/point/trade',
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Accept': 'application/json, text/plain, */*',
|
||||
'Accept-Language': 'zh-CN,zh;q=0.9,en-US;q=0.8,en;q=0.7',
|
||||
'Cache-Control': 'no-cache',
|
||||
'Connection': 'keep-alive',
|
||||
'Origin': 'http://anh5.quzanmi.com',
|
||||
'Pragma': 'no-cache',
|
||||
'Referer': 'http://anh5.quzanmi.com/',
|
||||
'Sec-Fetch-Dest': 'empty',
|
||||
'Sec-Fetch-Mode': 'cors',
|
||||
'Sec-Fetch-Site': 'cross-site',
|
||||
'User-Agent': 'Mozilla/5.0 (Linux; Android 14; 22081212C Build/UKQ1.230917.001; wv) AppleWebKit/537.36 (KHTML, like Gecko) Version/4.0 Chrome/125.0.6422.3 Mobile Safari/537.36 AgentWeb/5.0.8 UCBrowser/11.6.4.950',
|
||||
'sec-ch-ua': '"Android WebView";v="125", "Chromium";v="125", "Not.A/Brand";v="24"',
|
||||
'sec-ch-ua-mobile': '?1',
|
||||
'sec-ch-ua-platform': '"Android"',
|
||||
'x-qzm-aid': `|${this.oaid}|${this.androidId}`,
|
||||
'x-qzm-bundle': 'com.zhangwen.quzanmi|Redmi|14|1.0.1',
|
||||
'x-qzm-device': 'android',
|
||||
'x-qzm-time': parseInt((Date.now() / 1000).toString()).toString(),
|
||||
'x-qzm-token': this.ck,
|
||||
},
|
||||
body: JSON.stringify({
|
||||
"point": Math.floor(point / 1000) * 1000
|
||||
})
|
||||
}
|
||||
// console.log(options)
|
||||
const res = await $.request(options);
|
||||
// console.log(res)
|
||||
if (res.code === 2000) {
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 兑换金币成功`);
|
||||
return true
|
||||
} else {
|
||||
$.log(`账号[${this.index}]【${this.nickName}】 兑换金币 ${res.msg}`);
|
||||
return false;
|
||||
}
|
||||
}
|
||||
};
|
||||
|
||||
(async () => {
|
||||
const qzm = [];
|
||||
for (const index in cookieArr) {
|
||||
qzm.push(new QZM(cookieArr[index], index));
|
||||
}
|
||||
|
||||
for (const qzmElement of qzm) {
|
||||
try {
|
||||
await qzmElement.main();
|
||||
} catch (e) {
|
||||
console.log(e)
|
||||
}
|
||||
}
|
||||
})();
|
||||
|
||||
function ENV(name, envNames) {
|
||||
const request = require("request");
|
||||
const cryptoJS = require("crypto-js");
|
||||
return new class {
|
||||
constructor(name, envNames = []) {
|
||||
this.name = name;
|
||||
this.envNames = envNames;
|
||||
this.startTime = Date.now();
|
||||
this.logs = [];
|
||||
if (this.envNames.length > 0) {
|
||||
for (const envName of envNames) {
|
||||
this[envName] = process.env[envName];
|
||||
}
|
||||
}
|
||||
this.log(`🔔${this.name},开始!`)
|
||||
}
|
||||
|
||||
log(...args) {
|
||||
args.length > 0 && (this.logs = [...this.logs, ...args])
|
||||
console.log(...args)
|
||||
}
|
||||
|
||||
md5(str) {
|
||||
return cryptoJS.MD5(str).toString()
|
||||
}
|
||||
|
||||
sha256(str) {
|
||||
return cryptoJS.SHA256(str).toString()
|
||||
}
|
||||
|
||||
aesCBCEncrypt(data, key, iv) {
|
||||
const n = cryptoJS.enc.Hex.parse(key);
|
||||
const r = cryptoJS.enc.Hex.parse(iv);
|
||||
const o = cryptoJS.AES.encrypt(data, n, {
|
||||
iv: r,
|
||||
mode: cryptoJS.mode.CBC,
|
||||
padding: cryptoJS.pad.Pkcs7
|
||||
});
|
||||
return cryptoJS.enc.Base64.stringify(o.ciphertext);
|
||||
}
|
||||
|
||||
aesCBCDecrypt(data, key, iv) {
|
||||
const n = cryptoJS.enc.Hex.parse(key);
|
||||
const r = cryptoJS.enc.Hex.parse(iv);
|
||||
const o = cryptoJS.AES.decrypt(data, n, {
|
||||
iv: r,
|
||||
mode: cryptoJS.mode.CBC,
|
||||
padding: cryptoJS.pad.Pkcs7
|
||||
});
|
||||
return o.toString(cryptoJS.enc.Utf8);
|
||||
}
|
||||
|
||||
request(options) {
|
||||
options.gzip = true;
|
||||
return new Promise((resolve, reject) => {
|
||||
request(options, (error, response, body) => {
|
||||
if (error) {
|
||||
resolve(error)
|
||||
}
|
||||
try {
|
||||
const objBody = JSON.parse(body);
|
||||
resolve(objBody);
|
||||
} catch (e) {
|
||||
resolve(body)
|
||||
}
|
||||
})
|
||||
})
|
||||
}
|
||||
|
||||
wait(time) {
|
||||
return new Promise((resolve) => setTimeout(resolve, time));
|
||||
}
|
||||
|
||||
}(name, envNames)
|
||||
}
|
||||
Reference in New Issue
Block a user