mirror of
https://github.com/shufflewzc/faker2.git
synced 2025-05-07 03:48:44 +08:00
Delete jd_work_validate.js
This commit is contained in:
parent
31b7cb5647
commit
8bd52b594d
@ -1,48 +0,0 @@
|
|||||||
let common = require("./function/common");
|
|
||||||
let $ = new common.env('京东验证码获取');
|
|
||||||
let validator = require("./function/jdValidate");
|
|
||||||
let fs = require("fs");
|
|
||||||
let min = 2,
|
|
||||||
help = $.config[$.filename(__filename)] || Math.min(min, $.config.JdMain) || min;
|
|
||||||
$.setOptions({
|
|
||||||
headers: {
|
|
||||||
'content-type': 'application/json',
|
|
||||||
'user-agent': 'jdapp;iPhone;9.4.6;14.2;965af808880443e4c1306a54afdd5d5ae771de46;network/wifi;supportApplePay/0;hasUPPay/0;hasOCPay/0;model/iPhone8,4;addressid/;supportBestPay/0;appBuild/167618;jdSupportDarkMode/0;Mozilla/5.0 (iPhone; CPU iPhone OS 14_2 like Mac OS X) AppleWebKit/605.1.15 (KHTML, like Gecko) Mobile/15E148;supportJDSHWK/1',
|
|
||||||
'referer': 'https://happy.m.jd.com/babelDiy/Zeus/3ugedFa7yA6NhxLN5gw2L3PF9sQC/index.html?asid=287215626&un_area=12_904_905_57901&lng=117.612969135975&lat=23.94014745198865',
|
|
||||||
}
|
|
||||||
});
|
|
||||||
$.readme = `
|
|
||||||
58 7,15,23 * * * task ${$.runfile}
|
|
||||||
export ${$.runfile}_limit=5 #限制跑验证码账户个数
|
|
||||||
export JDJR_SERVER=ip #如获取不到验证码,本地先获取iv.jd.com的ip,再自行添加环境变量
|
|
||||||
`
|
|
||||||
eval(common.eval.mainEval($));
|
|
||||||
async function prepare() {
|
|
||||||
$.thread = 1;
|
|
||||||
$.sleep *= 8;
|
|
||||||
await fs.writeFile('./jdvalidate.txt', '', (error) => {
|
|
||||||
if (error) return console.log("初始化失败" + error.message);
|
|
||||||
console.log("初始化成功");
|
|
||||||
})
|
|
||||||
}
|
|
||||||
async function main(id) {
|
|
||||||
let code = new validator.JDJRValidator;
|
|
||||||
for (let i = 0; i < 2; i++) {
|
|
||||||
validate = ''
|
|
||||||
try {
|
|
||||||
let veri = await code.run();
|
|
||||||
if (veri.validate) {
|
|
||||||
validate = veri.validate;
|
|
||||||
}
|
|
||||||
} catch (e) {}
|
|
||||||
// $.code.push(validate)
|
|
||||||
if (validate) {
|
|
||||||
fs.appendFile('./jdvalidate.txt', validate + "\n", (error) => {
|
|
||||||
if (error) return console.log("追加文件失败" + error.message);
|
|
||||||
console.log("追加成功");
|
|
||||||
})
|
|
||||||
}
|
|
||||||
console.log("验证码", validate)
|
|
||||||
}
|
|
||||||
try {} catch (e) {}
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user