4lxprime / instabrute

One of the best instagram bruteforce attack program
MIT License
12 stars 3 forks source link

Tor not installed #7

Open Maloute431 opened 2 days ago

Maloute431 commented 2 days ago

Tor is installed on my kali linux but it sauys that it is nt installed

4lxprime commented 1 day ago

The program checks if the tor bin exists in your path or in your builtin with the command command -v tor > /dev/null 2>&1 || { echo >&2 "error"; exit 1; } which will use command -v to lookup for the tor binary's path in your $PATH and writing the result to void with /dev/null, in case of error it would fail and log "error" in this case but in the code it's most likely to be "I require tor but..." and exit. For debugging your case, can you try running command -v tor and if there is no result adding it to your $PATH.