Setup Tor Hidden Service on CentOS 7

Tor is provided by EPEL repository on CentOS 7. Install EPEL repo with command yum install epel-release Install tor yum install tor Edit tor config file vi /etc/tor/torrc Uncomment or add following lines HiddenServiceDir /var/lib/tor/hidden_service/ HiddenServicePort 80 127.0.0.1:80 Restart tor with command systemctl restart tor Now your tor hidden service is ready to use. You … Read more

tor

Setup Tor Hidden Service in Ubuntu/Debian Setup Tor Hidden Service on CentOS 7 Tor onion sites Dark Web Websites

Tor Hidden Service in Ubuntu/Debian

tor browser

To install tor on Ubuntu/Debian, run apt install tor Default configuration file for tor is /etc/tor/torrc To enable hidden service, edit /etc/tor/torrc vi /etc/tor/torrc uncomment lines HiddenServiceDir /var/lib/tor/hidden_service/ HiddenServicePort 80 127.0.0.1:80 Create folder for your hidden service mkdir /var/lib/tor/hidden_service/ chmod 700 /var/lib/tor/hidden_service/ chown -R debian-tor:debian-tor /var/lib/tor/hidden_service/ You need to install Apache/Nginx etc.. to serve your … Read more

Install Tor on Ubuntu

Tor is a highly anonymous proxy network. Tor is used by sites in dark web as it is almost impossible to find who owns a web site when it is hidden using tor. https://www.torproject.org To install tor on Ubuntu/Debian, run apt install -y tor This will start a sock5 proxy server on your PC on … Read more

Block Tor IP Addresses with CSF Firewall

To block traffic from TOR using CSF firewall, edit vi /etc/csf/csf.blocklists Add following to end of the file TOR|86400|0|https://www.dan.me.uk/torlist/ 86400 = Tor IP list updated every 86400 seconds (12 hours), you can change this if required, but updating every 12 hours is fine for such a large list. Now restart CSF and LFD csf -r … Read more