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