QQ开放了新的8位靓号注册,PC、手机端都有开放注册,手机端还能一键买断。那么问题来了,怎么挑出其中不带 4 的号码呢?
第一步、打开 https://haoma.qq.com
第二步、Windows 右键点击审查元素,Mac 右键点击检查
第三步、点击 console,粘贴下面的代码
;(async (...without) => {
let list = []
for (const n of Array.from({ length: 10 }, (v, i) => 1 + i)) {
await window
.fetch(`https://haoma.qq.com/json/act${n}.json.js`)
.then(r => r.text())
.then(r => JSON.parse(r.slice(16, -1)))
.then(r => r[2].map(v => list.push(v.num)))
}
list = [...new Set(list.sort())]
without = [...new Set(without)]
console.clear()
console.log('%c已找到的所有 8 位 QQ 号为:', 'font-weight: bold; color: red')
console.log(list.join(', ') || '暂无')
if (without.length) {
list = list.filter(v => !new RegExp(`(${without.join('|')})`).test(v))
console.log(
'%c其中不带 %s 的 QQ 号为:',
'font-weight: bold; color: red',
without.join('、')
)
console.log(list.join(', ') || '暂无')
}
})(4) // 4 为要排除的数字,多个用 , 隔开
这时候你会在控制台 (console) 看到类似这种提示:
针对你心仪的号码,你可以通过这个链接去注册:
https://haoma.qq.com/pay_v2.html?num=QQ&type=10061&month=12&price=0&actid=30003&viptype=1&trackid=50001
记得把其中 num=QQ 改成要注册的 QQ 号。
参考来源:https://maicong.me/t/220
转载原创文章请注明,转载自: LYLARES BLOG » 8位数QQ靓号另类注册