tor-browser

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

empty-coep.py (224B)


      1 def main(request, response):
      2    headers = [(b'Content-Type', b'text/html')]
      3 
      4    for value in request.GET.get_list(b'value'):
      5        headers.append((b'Cross-Origin-Embedder-Policy', value))
      6 
      7    return (200, headers, u'')