WangQiFei

蒸 馏 器


思想提纯
  • 首页
  • 归档
  • 标签
  • 关于
  •     

© 2024  by  Wangqifei

JuChats彩蛋码批量验证脚本

发布于 2024-05-04 16:05

C大的JuChats彩蛋码一直比较紧张,手里有在用的工具,一直没有注册JuChats,今天注册找到C大放出来的彩蛋码,试了一部分都过期了,原本想向C大要一个,临时起义,觉得批量放出来的验证码中也许会有漏注册的吧,于是写了js来验证参代码;
一、 注册页面彩蛋码

彩蛋码
填入以后自动验证,不需要提交,默认时间间隔是1s,遇到可用的彩蛋码直接跳转到主页。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
const eggCodes = [
"27CH2J", "EXD3BI", "B0WC4V", "9OLC0Q", "PAOR07", "164AYX", "P2U7V7", "IU4KWE", "J0JA5A", "I0S8XA", "235V80", "92Q07T", "EP2M8U", "TS6D0S", "5U2UQ5", "LSD3CO", "FOYW95", "FAKTJT", "OD959R", "HH6YT7", "64FG8P", "27EEIR", "09QDIP", "QQKBF4", "HCPON3", "3L3HGH", "JXANS8", "5H56SG", "RVPGOH", "IJL81J", "349D8M", "GA3EY9", "8ML2J1", "U53L83", "A3CG31", "DJI1UV", "SYJA2J", "7F1ER1", "X40GBN", "9XSIH8", "AEV4XA", "K3CV6K", "D28KYY", "3DV2W6", "SOHT3L", "R9EOLN", "YKCCOW", "W7O486", "WAY7VY", "FDXKWE"
];

const inputElement = document.querySelector('input.login-input'); // 获取输入框元素

let currentIndex = 0; // 当前彩蛋码索引

function writeEggCode() {
if (currentIndex < eggCodes.length) {
const eggCode = eggCodes[currentIndex];
inputElement.value = eggCode;
currentIndex++;
} else {
// 彩蛋码已全部写入
clearInterval(intervalId);
}
}

const intervalId = setInterval(writeEggCode, 1000); // 每隔1秒写入一个彩蛋码

二、会员页面彩蛋码

填入以后需要提交,默认时间间隔是3s

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
const eggCodes = [
"27CH2J", "EXD3BI", "B0WC4V", "9OLC0Q", "PAOR07", "164AYX", "P2U7V7", "IU4KWE", "J0JA5A", "I0S8XA", "235V80", "92Q07T", "EP2M8U", "TS6D0S", "5U2UQ5", "LSD3CO", "FOYW95", "FAKTJT", "OD959R", "HH6YT7", "64FG8P", "27EEIR", "09QDIP", "QQKBF4", "HCPON3", "3L3HGH", "JXANS8", "5H56SG", "RVPGOH", "IJL81J", "349D8M", "GA3EY9", "8ML2J1", "U53L83", "A3CG31", "DJI1UV", "SYJA2J", "7F1ER1", "X40GBN", "9XSIH8", "AEV4XA", "K3CV6K", "D28KYY", "3DV2W6", "SOHT3L", "R9EOLN", "YKCCOW", "W7O486", "WAY7VY", "FDXKWE"
];

const inputElement = document.querySelector('input'); // 获取输入框元素

let currentIndex = 0; // 当前彩蛋码索引

const divElement = document.querySelector('div.flex.justify-center.items-center.cursor-pointer');

function writeEggCode() {
if (currentIndex < eggCodes.length) {
const eggCode = eggCodes[currentIndex];
inputElement.value = eggCode;
currentIndex++;
divElement.click();
} else {
// 彩蛋码已全部写入
clearInterval(intervalId);
}
}

const intervalId = setInterval(writeEggCode, 3000); // 每隔1秒写入一个彩蛋码

这里的彩蛋码只是为了演示使用。代码直接在浏览器console运行即可

 上一篇: 借用coze搭建telegram gpt-4o机器人 

下一篇: 基于cloudflare搭建telegraph图床 

© 2024  by  Wangqifei