tor-browser

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

framebusting_child.html (229B)


      1 <html>
      2  <head>
      3    <meta charset="utf-8" />
      4    <title>Framebusting - Child</title>
      5  </head>
      6  <body>
      7    <script>
      8      if (self != top) {
      9        window.top.location = window.location;
     10      }
     11    </script>
     12  </body>
     13 </html>