Skip to main content

How to create website on Dark WEB?

 In this post we're gonna create website on Dark WEB, yeah you read it right on Dark WEB. What we need ? just Linux nothing more. Linux can be on your Rasberry Pi or on Virtual machine or on your PC, it will work. you've Linux then Let's begin....

 


Step 1:  update your repository on your Linux Environment 

sudo apt update 

Step 2: Download tor (don't worry it's so simple and it's not Tor it's tor)

what is the difference between "tor" and "Tor"?

tor is the daemon. in simple language it's program which runs tor services in your Environment.

Tor is Browser where we will access our website


sudo apt install tor 

 Step 3: getting onion address for website

sudo nano /etc/tor/torrc

uncomment those two line(white line) then save it by pressing CTRL + X and then press Y then ENTER

Now start tor service in your Environment by

sudo service tor start

check if it is actually running or not?

sudo service tor status 

then for getting your onion address(not your but your website's 😝😝 )

sudo cat /var/lib/hidden_service/hostname

and that's your onion address of your website . Wait we're not done yet 

 Now we need show something on our website then let's set up our website

Step 4: Set up website

first you need "nginx" so let's install it

sudo apt install nginx

Now start nginx service 

sudo service nginx start

check if it is actually running or not?

sudo service nginx status

Now paste your onion address in Tor browser and BOOM your website is on darkweb.

I know website looks so ugly. then let's make little good. 

But first let's make our website little more safer.

sudo nano /etc/nginx/nginx.conf

And now just copy like this image


 Now restart nginx service

sudo service nginx restart

and check status

sudo service nginx status

Now let's change html of our webisite,

cd /var/www/html/

now delete .html file in that directory and create index.html file and customize as per your choice,

sudo rm  index.nginx-debian.html

and create index.html,

sudo touch index.html 

and modify it

sudo nano index.html

and once again restart nginx and check your website 


I hope you like this post 

Thank You 😊😊

 

Comments

Popular posts from this blog

Makefile

 You may have seen file named Makefile or you may have type command like make, make install. so what is this file Makefile and what are this command. let's discuss about it.

Products Which I like

Induction Buy now Induction Buy now

Pascal's Triangle

 Pascal's Triangle Introduction In mathematics, Pascal’s triangle is triangular array of binomial coefficient. below you can see how it looks like… 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 How to Build it? First of all start with “1” and second rows as “1 1” then we can clearly see every element in next rows(except 1) if sum of two elements from above row. (i.e, 1+1=2, 1+2=3, 1+3=4) and with this rules we can create pascal’s triangle of n rows. Below is visual of how it will look like, Formula let’s take 0th row as first row and 0th column as first column, so we can get each value using formula where n is row number and k is column number. so for finding 1st(0 indexed) element in 2nd row we can write 2C1 which will give 2. There is one another technique, in which we need to solve (x + y)^n for nth row, if we solve (x +y)² then we will get 2nd row as coefficient of x and y in this solved formula which is x² + 2xy + y² . coefficients are (...