tor-browser

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

document-with-0x00-in-header.py (221B)


      1 def main(request, response):
      2    response.headers.set(b"Content-Type", b"text/html")
      3    response.headers.set(b"Custom", b"\0")
      4    return b"<!doctype html><script>top.frameLoaded=true</script><b>This is a document.</b>"