腾讯9位数QQ号码批量获取方法 官网免费申请注册
来源: 飞翔小编 2014/10/23 15:32:12 浏览量:6892
大家用得QQ号是几位的呢?十位还是十一位,这里给大家分享一种方法从上百个QQ号码中选择自己喜欢的号码,9位的哦,完全的安全无毒,不需要软件,放心注册。
准备条件:首先需要准备一个能改网页数据的浏览器。 火狐、谷歌、360、2345均可(这里用的是火狐)
领取步骤:
1、打开活动网址 http://zc.qq.com/chs/new.html,正常情况下是输入一次验证码,会出来3个9位 或者10位QQ靓号。重新刷新网页,QQ靓号会更换,但是需要输入验证码。
2、下面我们突破一下,不用输验证码,一次批量获取几十个9位数 10位数QQ号码。
审核元素,用火狐浏览器打开网页,按快捷键“F12”,或在页面上按鼠标右键,选择“审核元素”
点最后一个选项“控制台(1位置)” 或叫“Comsole”,在下面(2位置)粘贴下面的数据,然后按回车键 (这是一次获取30个QQ号码的代码,把var total = 10的10换成其他数值比如20,可以获得3X20,60个QQ号码,数字不要太大啊)
代码如下:
var total = 10;
var i = 1;
index.goodNumArr = index.goodNumArr.length == 3 ? [] : index.goodNumArr;
var _act_lsig = typeof _act_lsig == 'object' ? _act_lsig : [];
console.log('%c注意:这是测试代码','font-size:40px;color:red;');
console.group('当前已有' + index.goodNumArr.length + '个QQ号码可供选择!');
console.groupEnd();
console.group('您将要再获取' + total * 3 + '个QQ号码可供选择!');
console.groupEnd();
do {
(function() {
$.post(index.getNumUrl, index.submitObj, function(a) {
if (a.ec == 0) {
index.submitObj.act_lsig = a.act_lsig;
_act_lsig.push(a.act_lsig);
_act_lsig.push(a.act_lsig);
_act_lsig.push(a.act_lsig);
$.cookie.set("_act_lsig", a.act_lsig, "zc.qq.com", "/", 0.5 * 1000);
index.goodNumArr.push(a.new_uin_0);
index.goodNumArr.push(a.new_uin_1);
index.goodNumArr.push(a.new_uin_2);
index.submitObj.safeverifyResult = a.safeverifyResult;
index.submitObj.elevel = a.safeverifyResult;
}
console.warn('请耐心等待结果');
});
i++;
})();
} while (i <= total);
setTimeout(function() {
console.info('操作完毕!');
console.group('清空号码请刷新页面,或者控制台执行:');
console.log('index.goodNumArr=[]; ');
console.groupEnd();
if (!index.goodNumArr.length) {
console.error('你被黑了IP');
}
console.group(index.goodNumArr.length + '个QQ号码如下:');
console.groupEnd();
for (num in index.goodNumArr) {
console.groupCollapsed("%c"+index.goodNumArr[num],"color:red");
console.log('第' + (parseInt(num) + 1) + '个');
console.group('如需选择此号码,首先在控制台粘贴下面的代码执行:');
console.log('$.cookie.set("_act_lsig", "' + _act_lsig[num] + '", "zc.qq.com", "/", 0.5*1000);\nindex.act_lsig = "' + _act_lsig[num] + '"; \nindex.currenNum=' + num + ';');
console.groupEnd();
console.group('然后填写页面表格信息后提交即可!只是测试哈!');
console.groupEnd();
console.groupEnd();
}
}, total * 500);
完毕
等待几秒后,会出现一堆9位QQ靓号 10位QQ靓号. 慢慢挑选吧。
重点来了,碰到了自己喜欢的QQ好,该怎么注册呢?
这一步很重要:将你选择的QQ下面的代码 粘贴在“控制台” 或叫“Comsole”下方,然后按回车键
到页面填写注册信息、手机号码等。这些跟正常流程一样。此时网页上显示的还是之前的号码,但是注册下来会是我们想要的号码
支持( 4 ) 盖楼(回复)