How to hide apache version information

王林
Release: 2020-11-25 16:44:57
forward
5078 people have browsed it

How to hide apache version information

Background introduction:

If we enable the Apache service, then Others can find your Apache version number through F12 and use some known vulnerabilities or zero-day vulnerabilities to attack, which is very dangerous. So in order to reduce a little bit - even a little bit of risk, we'd better choose to hide Apache version information.

(Related recommendations: apache)

How to hide apache version information

The specific method is as follows:

Edit Apache’s configuration file

vim /etc/httpd/conf/httpd.conf
Copy after login

Add this line:

ServerTokens prod
Copy after login

How to hide apache version information
Then restart the service

systemctl restart httpd
Copy after login

How to hide apache version information
Refresh the web page and find that the version information of Apache has been Hidden
How to hide apache version information

Of course, you can also modify the source code to change Apache to nginx. In this way, when checking your version information, it will mistakenly think that you are using nginx, giving attackers extra Add a little more difficulty.

As for how to change the waistcoat, I searched for several tutorials on the Internet without success. If you have any friends, please leave a message in the comment area or message me privately to communicate.

The above is the detailed content of How to hide apache version information. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:csdn.net
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template