tor-browser

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

1550881-1.html (305B)


      1 <!DOCTYPE html>
      2 <iframe srcdoc="<iframe></iframe>"></iframe>
      3 <script>
      4  onload = function() {
      5      parent = frames[0];
      6      child = parent[0];
      7      child.onunload = function() {
      8          parent.document.open();
      9      }
     10      parent.document.open();
     11      parent.document.write("Hello");
     12  }
     13 </script>