tor-browser

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

cacheable-script-throw.py (185B)


      1 def main(request, response):
      2    headers = [(b"Content-Type", b"text/javascript"), (b"Cache-control", b"public, max-age=100")]
      3    body = u"throw('fox');"
      4    return 200, headers, body