Configure Tor and ProxyChains4 on Kali Linux to achieve anonymous Firefox browsing for cybersecurity, privacy, and ethical hacking purposes.
This documentation outlines the step-by-step experimental setup to achieve anonymous web access using Tor and ProxyChains4 on Kali Linux, with traffic routed through the Firefox browser. The goal is to mask the real IP address and enhance anonymity during penetration testing or private browsing.
- Operating System : Kali Linux
- Browser : Firefox
- Proxy Routing Tools : Tor/Proxychains4
- Privileges : sudo/root
sudo apt update
sudo apt install tor proxychains4 -ysudo systemctl start torsudo nano /etc/proxychains4.confAt the top,enable dynamic chaining and DNS tunneling
dynamic_chain
proxy_dns
Under [ProxyList], add
[ProxyList]
socks5 127.0.0.1 9050
http 127.0.0.1 8080
pkill firefoxproxychains4 firefoxopen Firefox and navigate to:
http://check.torproject.org
if configured sorrectly, the site will display:
This experiment successfully demonstrates how to set up Firefox on Kali Linux to use the Tor network via ProxyChains4, ensuring anonymous, encrypted web access. The setup is useful for cybersecurity practitioners, penetration testers, privacy advocates, and researchers who require secure and anonymous communication.



