tor-browser

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

1281695.html (429B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="UTF-8">
      5 <script>
      6 
      7 function zombieWindow()
      8 {
      9    var frame = document.createElement("iframe");
     10    document.body.appendChild(frame);
     11    var frameWin = frame.contentWindow;
     12    frame.remove();
     13    return frameWin;
     14 }
     15 
     16 function boom() {
     17    zombieWindow().navigator.mediaDevices.getUserMedia({ "fake": true, "audio": true });
     18 }
     19 
     20 </script>
     21 </head>
     22 <body onload="boom();"></body>
     23 </html>