tor-browser

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

import-scripts-echo.py (231B)


      1 def main(req, res):
      2    return ([
      3        (b'Cache-Control', b'no-cache, must-revalidate'),
      4        (b'Pragma', b'no-cache'),
      5        (b'Content-Type', b'application/javascript')],
      6      b'echo_output = "%s";\n' % req.GET[b'msg'])