tor-browser

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

refresh.py (231B)


      1 def main(request, response):
      2    response.headers.set(b"Content-Type", b"text/plain")
      3    response.headers.set(b"Refresh", b"0;./refreshed.txt?\x80\xFF") # Test byte to Unicode conversion
      4    response.content = u"Not refreshed.\n"