tor-browser

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

1257730-1.html (483B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="UTF-8">
      5 <!--
      6 user_pref("browser.send_pings", true);
      7 -->
      8 <script>
      9 
     10 function boom() {
     11  var aLink = document.createElement('a');
     12  document.body.appendChild(aLink);
     13  aLink.ping = "ping";
     14  aLink.href = "href";
     15  aLink.click();
     16 
     17  var baseElement = document.createElement('base');
     18  baseElement.setAttribute("href", "javascript:void 0");
     19  document.head.appendChild(baseElement);
     20 }
     21 
     22 </script>
     23 </head>
     24 <body onload="boom();"></body>
     25 </html>