Anonymizing Your Kali Activity1
After you are up and running you may want to start using the
tor
network. It runs as a service, and may be queried/operated
by either of:
|
|
To use our tools anonymously we hide behind a series of tor
proxies. For that we must configure proxychains by editing
its configuration file /etc/proxychains4.conf
. Open it in
nano, or vi (editors;)
Locate the line
#dynamic_chain
and remove the #
(comment). Then make sure that
random_chain
, round_robin_chain
, and strict_chain
are all commented.
Now locate the line
proxy_dns
and verify that it is uncommented. Finally add the following as the last line of the file:
socks5 127.0.0.1 9050
There may be a similar line for socks4
, the above must be added
after that. Then Save and exit.
Once that is done, any TCP activity that you wish to do anonymously should be invoked from the CLI with a proxychains prepended. Eg
|
|
You may wish to verify the anonymity by doing
|
|
a few times.
-
Pls refer to https://geekflare.com/anonymize-linux-traffic/ ↩︎