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
850 stars 281 forks source link

inconsistency between build.sh and install.sh, and version #84

Open tquentin opened 4 years ago

tquentin commented 4 years ago

I install torghost in Kali. Appreciated your work and it is very useful and simple to use.

For the latest build.sh https://github.com/SusmithKrishnan/torghost/blob/master/build.sh it is compiling the executable using pyinstaller into ./dist/torghost and copy to folder "/usr/bin". the latest version is 3.1.0

But the install.sh https://github.com/SusmithKrishnan/torghost/blob/master/install.sh, it will installed the pre-compile version from https://github.com/SusmithKrishnan/torghost/releases/download/v3.0/torghost_3.0_amd64.deb which is version 3.0.2.

From the version checking, https://api.github.com/repos/SusmithKrishnan/torghost/releases/latest, the version (tag_name) is "v3.0.2". If the latest version above is 3.1.0, the tag_name should be updated accordingly.

Alternatively, modification to https://github.com/SusmithKrishnan/torghost/blob/master/torghost.py line 209 in function call "check_update()" that from "exact NOT match" (!=) to "Greater than"