2021 | 88% |
---|---|
2022 | 98% |
2023 | 98% |
100
75
50
25
0
By default, the Apache webserver sends HTTP headers with some information about your server version, operating system, modules installed, etc. This information can be used by hackers in order to exploit vulnerabilities (specially if you are running an older version). These information can be hidden or changed with very basic configurations.
Open Apache's configuration file (httpd.conf or apache.conf) and search for ServerSignature. If you find it, edit it to:
ServerSignature Off ServerTokens Prod
If you don't find it, just add these two lines at the end of the file.
Note that, after you modify the configuration file, you must restart the Apache server.