Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
May 26, 2022 03:47 am GMT

Host TOR Hidden service (DARK WEB website) on a smartphone !!

DARK WEB websites TOR hidden services or the .onion sites which can only be accessed by connecting to TOR relay.

In this blog, We will host a TOR hidden service using termux in Android. This is incredibly cool, takes only a few minutes to setupyouve gotta try this!!

If you prefer a video tutorial, click here

If you dont want to learn the process, I have my script to do the work for you. Check it here https://github.com/sam5epi0l/onionX/

Follow these steps -

cp /data/data/com.termux/files/usr/etc/tor/torrc .
echo "HiddenServiceDir /data/data/com.termux/files/home/hidden_service/" >> torrc
echo "HiddenServicePort 80 127.0.0.1:1337" >> torrc

  • Start TOR hidden service

    tor -f torrc

  • Check URL in hostname file

    cat /data/data/com.termux/files/home/hidden_service/hostname

  • (OPTIONAL) Start your Apache/nginx web server at port 1337

Im using python http server at 127.0.0.1:1337

python3 -m http.server 1337

Hurray! you finished all steps and the host is up and running DARK WEB website. Thank you so much for reading.


Original Link: https://dev.to/sam5epi0l/host-tor-hidden-service-dark-web-website-on-a-smartphone--23ia

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To