Xyb3r-D3vil

Zone-h Mass Notifier (Modified)

Oct 28th, 2016
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.33 KB | None | 0 0
  1. <title>Zone-h Mass Notifier</title>
  2.  
  3. <h3><font color="white"><em><span style="font-weight:bold; text-shadow:white 0px 0px 12px; color:white">
  4. <span style="font-size: 20pt; font-family: Palatino Linotype;">Zone-h Mass Notifier<br></span><br></h3>
  5. <center><form method="POST">
  6. <input type="hidden" value="" name="id3_hf_0" >
  7. <input type="hidden" value="123456" name="signInForm.password">
  8. <center><select style='border: solid 3px green' name="mirror">
  9. <option>zone-h</option>
  10. </select></center><center><br>
  11. Websites:<br></center><textarea style="width: 350px; height: 300px;border: solid 3px green" name="signInForm.username"></textarea><br>
  12. <input type="submit" value="Submit" name="signInContainer:submit"></p>
  13. </form></center>
  14.  
  15. <style type="text/css">
  16. body {
  17. color: #33ff33;
  18. background-color: black;
  19. }
  20.  
  21. h1{
  22. background-color: #4D4D4D;
  23. color: #000000;
  24. text-align: center;
  25. }
  26. h3 {
  27. font-family: gabriola,
  28. color: grey;
  29. font-size: 20px;
  30. font-weight: 10px;
  31. text-align: center;
  32. }
  33.  
  34.  
  35. p {
  36. text-align:center;
  37. }
  38.  
  39. </style>
  40.  
  41.  
  42. <?php
  43.  
  44. /*
  45.  
  46. auto post [mirror];
  47.  
  48.  
  49. */set_time_limit (0);
  50. 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>");}
  51.  
  52. if (@$_POST['go'])
  53. {
  54. foreach (explode ("\n", $_POST['domains']) as $domain)
  55. foreach (explode ("\n", $_POST['attacker']) as $attacker)
  56. {
  57. post ($domain, $attacker, $_POST['defacer'], $_POST['mirror']);
  58. }
  59. echo "<br><br><a target='_blank' href='http://zone-h.com/archive/published=0/notifier=Xyb3r D3vil'>Xyb3r D3vil Onhold</a><br>";
  60.  
  61. }
  62.  
  63. function post ($url, $attacker, $defacer, $mirror)
  64. {
  65. $ch = curl_init ();
  66. curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
  67. curl_setopt ($ch, CURLOPT_POST, 1);
  68.  
  69. switch ($mirror)
  70. {
  71. case "zone-h";
  72. curl_setopt ($ch, CURLOPT_URL, "http://www.zone-h.com/notify/single");
  73. curl_setopt ($ch, CURLOPT_POSTFIELDS, "defacer=$defacer&domain1=$url&hackmode=1&reason=1");
  74. if (preg_match ("/color=\"red\">OK<\/font><\/li>/", curl_exec ($ch)))
  75. echo "$url.&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<span style='color: green'>OK</span><br>";
  76. else
  77. echo "$url&nbsp&nbsp&nbsp&nbsp&nbsp&nbsp<span style='color: red'>Error</span><br>";
  78. break;
  79.  
  80. default:
  81. break;
  82. }
  83. curl_close ($ch);
  84. }
  85.  
  86. ?>
Add Comment
Please, Sign In to add comment