tor-browser

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

framebusting_intervention_frame.html (250B)


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