/Don-t-touch-my-bin-

"Don't touch my bin!" lets you download a file(PuTTY in this case) over HTTP through all Tor Exitnods and check if the file has been modified, if so, save it.

Primary LanguagePython

Don't touch my bin

This uses the stem API for connecting through Tor and the request library for fetching the file, both these can be installed via pip(pip install stem request).

To download all the fingerprints:

$ curl -s https://check.torproject.org/exit-addresses | grep ExitNode  | sed 's/ExitNode //g' > fp.txt

Defaults to download PuTTY if no URL is specified, and latest PuTTY hash if no file is specified

Synopsis

$ python3 check_bin.py [-f | --file <path>] [-u | --url <path>]

Dependencies

  • stem, request, PySocks (pip install stem request PySocks)

Thanks