tor-browser

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

file_upload.py (127B)


      1 def main(request, response):
      2    return b"PASS" if request.POST[b"file_input"].file.read() == b"File to upload\n" else b"FAIL"