Created
February 21, 2023 08:26
-
-
Save wuuconix/b87156ecc0d847cf3595eddd430cb1bb to your computer and use it in GitHub Desktop.
register xiangzuo
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
process.env.NODE_TLS_REJECT_UNAUTHORIZED = 0 // 忽略ssl证书失效 | |
async function register(mobile) { | |
let res = await fetch("https://ad.hutaojie.com/online/sample") | |
const cookie = res.headers.get("set-cookie").replace(/ path=\/; HttpOnly,?/ig, "") // 获取cookie | |
// console.log(cookie) | |
res = await (await fetch("https://ad.hutaojie.com/", { headers: { Cookie: cookie } })).text() | |
const csrf = res.match(/<meta content=\"([\w-]{43})\" name=\"csrf-token\"\/>/)[1] // 获取csrf | |
// console.log(csrf) | |
const nickname = `Test${Date.now()}` | |
res = await (await fetch("https://ad.hutaojie.com/register", { // 请求注册接口 | |
method: "POST", | |
headers: { | |
Cookie: cookie, | |
}, | |
body: new URLSearchParams({ | |
emailOrMobile: mobile, | |
nickname, | |
password: "Test@123", | |
captcha_enabled: "", | |
_csrf_token: csrf | |
}) | |
})).text() | |
if (res.includes(nickname)) { | |
return `注册成功!手机号为 ${mobile} 密码为 Test@123` | |
} else if (res.includes("Occupied")) { | |
return `该手机号已经被注册` | |
} | |
} | |
for (let i = 0; i < 100; i++) { // for循环 批量注册从13000000000~13000000099 这100个电话号码 | |
const res = await register(String(13000000000 + i)) | |
console.log(res) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
由于使用了fetch函数,而node 是在v17.5.0版本后才原生支持它的。

故建议在node 最新lts版本 v18.13.0 下运行此程序