tor-browser

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

script-with-0x00-in-header.py (173B)


      1 def main(request, response):
      2    response.headers.set(b"Content-Type", b"text/javascript")
      3    response.headers.set(b"Custom", b"\0")
      4    return b"var thisIsJavaScript = 0"