KeyDown

Script Zone-H Mass Poster new 2016

Jan 2nd, 2016
838
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.48 KB | None | 0 0
  1. visit my blog => www.annamcoder.tk
  2.  
  3. CUT HERE --------------------------------------------------------------------------------------------------------------------------
  4.  
  5. <html>
  6. <style type="text/css">
  7. html {
  8.     margin: 10px auto;
  9.     text-align: center;
  10.     background: #000000;
  11.     color: #008000;
  12. }
  13. a {
  14.     color: lime;
  15.     text-decoration: none;
  16. }
  17. textarea, input {
  18.     border: 1px solid #008000;
  19.     color: #bb0000;
  20.     background: transparent;
  21. }
  22. </style>
  23. <form method="post">
  24. Target: <br>
  25. <textarea name="url" style="resize: none; margin: 5px auto; padding-left: 5px; width: 500px; height: 250px;" placeholder="http://target.com"></textarea><br>
  26. <input type="submit" name="go" value="Hajar" style="margin: 5px auto; width: 250px; height: 20px;">
  27. </form>
  28. <?php
  29. $url = explode("\r\n", $_POST['url']);
  30. $go = $_POST['go'];
  31. function sendsite($target) {
  32.     $ch = curl_init();
  33.           curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  34.           curl_setopt($ch, CURLOPT_URL, "http://zone-h.org/notify/single");
  35.           curl_setopt($ch, CURLOPT_POST, true);
  36.           curl_setopt($ch, CURLOPT_POSTFIELDS, array(
  37.             "defacer" => "KeyDown", #Change your nick here
  38.             "domain1" => $target,
  39.             "hackmode" => "1",
  40.             "reason" => "1",
  41.             ));
  42.     $res = curl_exec($ch);
  43.           curl_close($ch);
  44.     return preg_match("/<font color=\"red\">OK<\/font><\/li>/", $res);
  45. }
  46. if($go) {
  47.     foreach($url as $sites) {
  48.         if(sendsite($sites)) {
  49.             echo "$sites => OK<br>";
  50.         } else {
  51.             echo "$sites => error<br>";
  52.         }
  53.     }
  54. }
  55. ?>
  56. </html>
Advertisement
Add Comment
Please, Sign In to add comment