Difference between revisions of "Darknet web development"

From Hidden Wiki
Jump to navigation Jump to search
Line 1: Line 1:
{{Template:Computer engineering}}
'''Darknet web development''' is [[web development]] on [[darknet]]. [[Web programming]] is a part of [[web development]].
'''Darknet web development''' is [[web development]] on [[darknet]]. [[Web programming]] is a part of [[web development]].


Line 57: Line 59:


= See also =
= See also =
* [[Darknet]]
* [[Web development]]
* [[Web development]]
* [[Python]]
* [[Python]]

Revision as of 01:36, 21 February 2020

Unix Assembly language Mathematics Web development I2P
GhostBSD Assembly Programming Tutorial Statistics Django for Beginners MuWire
GUI Artificial intelligence Artificial neural network Machine learning Messenger
Tkinter Artificial intelligence Artificial neural network Machine Learning Mastery with Python Session

Darknet web development is web development on darknet. Web programming is a part of web development.


Deepnet is a network that you cannot find by using search engines such as Google and DuckDuckGo.

Deep web is web contents of deepnet.


Surface web is a web contents that you can search using search engines like Yahoo and StartPage.


Darknet is a network that you can connect it by using special encryption softwares like Tor, I2P, Freenet.

Dark web is web contents of darknet.


Security

Block connection from surface web

If you use Apache and CentOS, you should edit httpd.conf file. If you use Apache and Ubuntu, you have to edit ports.conf file.


Change the below two lines

#Listen 12.34.56.78:80
Listen 80

into the below four lines. They are just examples.

Listen 127.0.0.1:80
Listen 127.0.0.1:892
Listen 127.0.0.1:1004
#Listen 80

If you change the former into the latter, nobody can connect to your darknet website from surface web. In other words, the cannot connect your website using Google Chrome or Microsoft Internet Explorer.


nginx's setting is similar to Apache HTTP Server's.

Apache on Windows is similar to Apache on CentOS.


Disable server-status module

It is only for security tip for Apache HTTP Server. nginx doesn't have this problem.


For example, if you connect

http://yourpussyis4rape.onion/server-status

or

http://yourpussyis4rape.onion/server-status.html

page, you can see the server's information. It includes much critical information. If you connect your darknet website from surface web, you can see your IP address on this page!


See also