SusmithKrishnan / torghost

TorGhost is an anonymization script. TorGhost redirects all internet traffic through SOCKS5 tor proxy. DNS requests are also redirected via tor, thus preventing DNSLeak. The scripts also disables unsafe packets exiting the system. Some packets like ping request can compromise your identity.
GNU General Public License v3.0
856 stars 281 forks source link

problem with python2/python3 #83

Open tquentin opened 4 years ago

tquentin commented 4 years ago

based on [https://github.com/SusmithKrishnan/torghost/blob/master/torghost.py] last updated on May 04. I got error on running the built version line 216: choice = raw_input(

I searched online and say "raw_input()" is for python2 but not python3. For python3 it should use "input()". I tried to modify line 216 to: choice = input( and run build.sh, it works (but has another problem, I submit another issue for it)

hacker-h commented 4 years ago

fixed by https://github.com/SusmithKrishnan/torghost/commit/3d9c51703a331c098cc689ebc6a0c0681a04b02b

hacker-h commented 4 years ago

@SusmithKrishnan this issue can be closed