Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <title>Auto Submit Zone-H</title>
- <form method="POST"><center>
- Nickname : <input type="text" name="defacer" size="32" style='border: solid 1px red'>   Mirror :
- <select style='border: solid 1px red' name="mirror">
- <option>Zone-H</option>
- </select><br>
- Domains! :<br><textarea style="width: 678px; height: 302px;border: solid 1px red" name="domains"></textarea><br>
- <input type="submit" value="Send" name="go">
- </form>
- <?php
- /*
- Auto Submit Zone-H;
- Coded By K4MVR3T717
- 2016
- */
- set_time_limit (0);
- if (!function_exists ("curl_init")){die ("This Script uses cURL Library, you must install first !<br><a href='http://au2.php.net/manual/en/curl.setup.php'>http://au2.php.net/manual/en/curl.setup.php</a>");}
- if (@$_POST['go'])
- {
- foreach (explode ("\n", $_POST['domains']) as $domain)
- {
- post ($domain, $_POST['defacer'], $_POST['mirror']);
- }
- echo "<br><br><a target='_blank' href='http://zone-h.com/'>Zone-H</a><br>";
- }
- function post ($url, $defacer, $mirror)
- {
- $ch = curl_init ();
- curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
- curl_setopt ($ch, CURLOPT_POST, 1);
- switch ($mirror)
- {
- case "zone-h";
- curl_setopt ($ch, CURLOPT_URL, "http://www.zone-h.com/notify/single");
- curl_setopt ($ch, CURLOPT_POSTFIELDS, "defacer=$defacer&domain1=$url&hackmode=1&reason=1");
- if (preg_match ("/color=\"red\">Sukses !<\/font><\/li>/", curl_exec ($ch)))
- echo "$url.      <span style='color: green'>Sukses !</span><br>";
- else
- echo "$url      <span style='color: red'>Gagal !</span><br>";
- break;
- default:
- break;
- }
- curl_close ($ch);
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment