tor-browser

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

1334468-1.html (552B)


      1 <!DOCTYPE html>
      2 <html>
      3 <head>
      4 <meta charset="UTF-8">
      5 <!--
      6 user_pref("privacy.firstparty.isolate", true);
      7 -->
      8 <script>
      9 
     10 let RESTRICTED_CHARS = "\001\002\003\004\005\006\007" +
     11                       "\010\011\012\013\014\015\016\017" +
     12                       "\020\021\022\023\024\025\026\027" +
     13                       "\030\031\032\033\034\035\036\037" +
     14                       "/:*?\"<>|\\";
     15 
     16 function boom() {
     17  for (let c of RESTRICTED_CHARS) {
     18    window.location = 'http://s.s' + c;
     19  }
     20 }
     21 
     22 </script>
     23 </head>
     24 <body onload="boom();"></body>
     25 </html>