blob: 3ebd9b53cb21b0171c756cc45cc5bae0e4848a05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<html>
<head>
<script>
document.addEventListener('DOMContentLoaded', () => {
const area = document.createElementNS('http://www.w3.org/1999/xhtml', 'area')
document.documentElement.appendChild(area)
area.setAttribute('href', '')
for (let i = 0; i < 16; i++) {
area.setAttribute('download', '')
}
area.click()
object = document.createElementNS('http://www.w3.org/1999/xhtml', 'object')
document.documentElement.appendChild(object)
setTimeout("location.reload()", 100)
})
</script>
</head>
</html>
|