Latest Dark Web Website Construction and Dark Web Domain Application Method
Tor project
Tor project is a secret project of the U.S. Navy, which was later open-source used in the real anonymous network. In tor’s network, your real IP address and any other information related to you that is exposed to the Internet will be hidden, which really protects users. Tor project not only provides Client for ordinary users , but also provides .Onion domain name and services. Using. Onion domain name can hide the real IP address of your website.
Construction preparation materials of darkweb website
- server 
- Website building related technologies 
Server selection
How do you want to really hide yourself, you need to do the following steps
- It is recommended to use Debian or Ubuntu servers. Tor official documents support better 
- The server is only used for the tor website 
- Anonymous payment purchase server 
- Don’t accept and send emails 
Website building
- Unlimited technologies can be PHP, python, Java or static web pages 
- Don’t use weak password 
- Don’t use JavaScript 
- Don’t load resources from outside, all resources must be on the server 
- Don’t use 80 port, change to other port 
Start building
- Install nginx or Apache. Take nginx for example (nginx is the most widely used) 
- Edit nginx profile 
| 1 | Enter the command sudo vi /etc/nginx/sites-available/default | 
Take Debian server as an example to build a darkweb site
Direct installation
Generally, you can install the tor service directly through apt apt install tor
If not, do the following
- Modify source.list
| 1 | sudo vi /etc/apt/sources.list | 
- Add Secret key
| 1 | 
 | 
- Installation - 1 
 2- apt update 
 sudo apt-get install tor
- DNS Selection 
The default is deb.torproject.org
The alternatives are deb-master.torproject.org, mirror.netcologne.de and tor.mirror.youam.de
- Edit tor configuration file
| 1 | vi /etc/tor/torrc | 
- start tor
sudo service tor start
Once started, your domain name will be generated
- Domain name
cat /var/lib/tor/hidden_service/hostname
- Browse the website
After that, you can visit the web page through the tor browser client
Advanced Skills
Official documents for specific website construction - https://2019.www.torproject.org/docs/debian.html.En

