tor-browser

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

some_content_framed.html (304B)


      1 <!DOCTYPE html>
      2 <html>
      3 <body>
      4 <script>
      5  "use strict";
      6 
      7  let src = document.location.href.replace("https://", "http://");
      8  let frame = document.createElement("iframe");
      9  frame.setAttribute("id", "frame");
     10  frame.setAttribute("src", src);
     11  document.body.appendChild(frame);
     12 </script>
     13 </body>
     14 </html>