分享者:http://www.douban.com/group/yaoqingzhuce/?ref=sidebar
http://zc.qq.com/chs/new.html
這個(gè)默認(rèn)每次刷新只能看到三組號(hào)碼,太麻煩了~
分享個(gè)非原創(chuàng)的方法,一次可以從騰訊的數(shù)據(jù)庫中刷20組號(hào)碼來,更加高效
方法如下:
chrome F12 在控制臺(tái)中輸入以下內(nèi)容;然后看到了好的號(hào)碼,點(diǎn)擊號(hào)碼后,有詳細(xì)的教程;
每個(gè)手機(jī)號(hào)碼只能申請(qǐng)1個(gè)號(hào)碼,每個(gè)ip只能申請(qǐng)2個(gè)號(hào)碼, 稍后分享免費(fèi)的如何獲更多的手機(jī)號(hào)碼
加了點(diǎn)權(quán)限,不想被tx這么快就xx掉
- 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注意:這是測(cè)試代碼','font-size:40px;color:red;');
- console.group('當(dāng)前已有' + index.goodNumArr.length + '個(gè)QQ號(hào)碼可供選擇!');
- console.groupEnd();
- console.group('您將要再獲取' + total * 3 + '個(gè)QQ號(hào)碼可供選擇!');
- 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('請(qǐng)耐心等待結(jié)果');
- });
- i++;
- })();
- } while (i <= total);
- setTimeout(function() {
- console.info('操作完畢!');
- console.group('清空號(hào)碼請(qǐng)刷新頁面,或者控制臺(tái)執(zhí)行:');
- console.log('index.goodNumArr=[]; ');
- console.groupEnd();
- if (!index.goodNumArr.length) {
- console.error('你被黑了IP');
- }
- console.group(index.goodNumArr.length + '個(gè)QQ號(hào)碼如下:');
- console.groupEnd();
- for (num in index.goodNumArr) {
- console.groupCollapsed("%c"+index.goodNumArr[num],"color:red");
- console.log('第' + (parseInt(num) + 1) + '個(gè)');
- console.group('如需選擇此號(hào)碼,首先在控制臺(tái)粘貼下面的代碼執(zhí)行:');
- 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('然后填寫頁面表格信息后提交即可!只是測(cè)試哈!');
- console.groupEnd();
- console.groupEnd();
- }
- }, total * 500);
復(fù)制代碼
|