tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

1230422.html (296B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 </head>
      5 <body>
      6 <script>
      7 
      8 var a = new FileReader();
      9 
     10 function f() {
     11  a.removeEventListener("loadend", f);
     12  g();
     13 }
     14 
     15 function g() {
     16  a.readAsBinaryString(new Blob());
     17 }
     18 
     19 a.addEventListener("loadend", f);
     20 
     21 try {
     22  g();
     23  g();
     24 } catch(e) {}
     25 
     26 </script>
     27 </body>
     28 </html>