Skip to content

Instantly share code, notes, and snippets.

@wuuconix
Created February 21, 2023 08:26
Show Gist options
  • Save wuuconix/b87156ecc0d847cf3595eddd430cb1bb to your computer and use it in GitHub Desktop.
Save wuuconix/b87156ecc0d847cf3595eddd430cb1bb to your computer and use it in GitHub Desktop.
register xiangzuo
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)
}
@wuuconix
Copy link
Author

由于使用了fetch函数,而node 是在v17.5.0版本后才原生支持它的。
故建议在node 最新lts版本 v18.13.0 下运行此程序
image

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment