Tor is not like a basic browser. you can deeply search results through tor.

as we know tor is known for its onion websites(deep web or dark web). if you don’t know about tor,

Watch this video and know how to run tor as Root:

 

now that you know what tor is and how to install it in your Kali Linux, we can make our own tor website.

Requirements:

  1. Tor Browser
  2. Tor service

you can see that I have mentioned Tor Service. Tor service is some kinda VPN but it is most likely untraceable. Tor service runs on port 9001. you can try to catch packets with tcpdump tool on this port…KNOW MORE

type this command to install tor services:

apt-get install tor

this process can take a while. if you already have tor services installed, make sure it’s updated.

now that you have Tor services, you are totally ready to host an onion website on your own computer.

PROCESS:

I have distributed this process into various steps so it may look easy to do:

step.1

type this command to run Tor services:

service tor start

step.2

go to the /etc/tor and look for the <em>torrc</em> file and open it.

it should look like this:

step.3

add these two lines at the end:

HiddenServiceDir /var/lib/tor/www_service/
HiddenServicePort 80 127.0.0.1:80

it means that whatever is running on your local HTTP server is going to run on a particular onion website.

step.4

it is important to run the Apache server to see content on your onion site.

type this command:

service apache2 start

I recommend you to paste some files in /var/www/html/.

step.5

now there is a location which is just created by you unwillingly.

go to /var/lib/tor/www_service/ and  look for host . the host file contain domain for your website.

step.6

now, open your Tor Browser and past the URL.

if you have done everything right, you should be able to look at something.

 

 

Thanks For Visiting

 

LEAVE A REPLY

Please enter your comment!
Please enter your name here