tor-browser

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

access-control-basic-allow-star.py (211B)


      1 def main(request, response):
      2    response.headers.set(b"Content-Type", b"text/plain")
      3    response.headers.set(b"Access-Control-Allow-Origin", b"*")
      4 
      5    response.content = b"PASS: Cross-domain access allowed."