setiawan_jimmi

[ WEB BASED ] Tools Zone-H Mass Notifier

Mar 15th, 2020
208
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.36 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Zone H Mass Notify</title>
  4. <link href='http://fonts.googleapis.com/css?family=Orbitron:700' rel='stylesheet' type='text/css'>
  5. </head>
  6. <style type="text/css">
  7. select{width:400px; height:28px;}
  8. input{width:400px;}
  9. textarea {width:400px;height:195px;}
  10. .tombol {background:#b70505;color:white;border: 1px solid #000; padding:6px 6px 6px 6px; width:80px;}
  11. .masuk {color:black;border: 1px solid #000; padding:6px 6px 6px 6px;}
  12. .tombol:hover {background:#c0bfbf;color:#000000;}
  13. </style>
  14. <body bgcolor="black">
  15. <?php
  16. if($_POST['submit']) {
  17. $domain = explode("\r\n", $_POST['url']);
  18. $nick = $_POST['nick'];
  19. echo "<font color='white'>Defacer Onhold:</font> <a href='http://www.zone-h.org/archive/notifier=$nick/published=0' target='_blank'>http://www.zone-h.org/archive/notifier=$nick/published=0</a><br>";
  20. echo "<font color='white'>Defacer Archive:</font> <a href='http://www.zone-h.org/archive/notifier=$nick' target='_blank'>http://www.zone-h.org/archive/notifier=$nick</a><br><br>";
  21. function zoneh($url,$nick) {
  22. $ch = curl_init("http://www.zone-h.com/notify/single");
  23. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  24. curl_setopt($ch, CURLOPT_POST, true);
  25. curl_setopt($ch, CURLOPT_POSTFIELDS, "defacer=$nick&domain1=$url&hackmode=1&reason=1&submit=Send");
  26. return curl_exec($ch);
  27. curl_close($ch);
  28. }
  29. foreach($domain as $url) {
  30. $zoneh = zoneh($url,$nick);
  31. if(preg_match("/color=\"red\">OK<\/font><\/li>/i", $zoneh)) {
  32. echo "<font color='white'>$url -> </font><font color=green>OK</font><br>";
  33. } else {
  34. echo "<font color='white'>$url -> </font><font color=red>ERROR</font><br>";
  35. }
  36. }
  37. } else {
  38. echo "<center>
  39. <font size='6' color='red' face='Orbitron'>Zone-H Mass Notify</font><br>
  40. <font color='white' face='Orbitron' size='4'><p>Fake deface atau membuat domain sendiri tidak diterima<br>Anda harus submit hasil deface real bukan fake deface</p></font></center>";
  41. echo "<center>
  42. <form method='post'>
  43. <input class='masuk' type='text' name='nick' placeholder='Nick Kalian'><br><br>
  44. <select>
  45. <option value='Not Available' selected>Not Available</option>
  46. <option value='SQL Injection'>SQL Injection</option>
  47. <option value='URL Poisoning'>URL Poisoning</option>
  48. <option value='File Inclusion'>File Inclusion</option>
  49. <option value='DNS Hijacking'>DNS Hijacking</option>
  50. <option value='DNS Poisoning'>DNS Poisoning</option>
  51. <option value='Admin poor Password'>Admin poor Password</option>
  52. </select><br><br>
  53. <textarea placeholder='http://site.com/' name='url'></textarea><br><br>
  54. &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<input class='tombol' type='submit' name='submit' value='Submit'>
  55. </form>";
  56. }
  57. echo "</center>";
  58. ?>
  59. <div id="footer">
  60. <hr color="white">
  61. <center><font color="red" face="Orbitron" size="4"><p>Copyright @ 2020 - <font color="white">Light Cyber Indonesia</font></center>
  62. </center>
  63.  
  64. </body>
  65. </html>
Advertisement
Add Comment
Please, Sign In to add comment