tor-browser

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

cookie-access.https.html (432B)


      1 <!DOCTYPE html>
      2 <script src="utils.js"></script>
      3 <title>Page loaded in a frame in a fenced frame tree</title>
      4 <script>
      5  // This page is loaded either in an iframe or a fenced frame
      6  // nested inside a root fenced frame.
      7  document.cookie = 'G=nested_in_fenced_frame; SameSite=Lax';
      8  const [cookie_value_key] = parseKeylist()
      9  const cookie_value = document.cookie;
     10  writeValueToServer(cookie_value_key, cookie_value);
     11 </script>