首页 > Web开发 > 详细

禁掉Apache web server签名 How to turn off server signature on Apache web server

时间:2018-02-13 10:01:18      阅读:273      评论:0      收藏:0      [点我收藏+]

有的时候,我们为了从安全角度考虑,防止黑客恶意攻击。我们会隐藏掉server信息,比方,一般我们会发现例如以下信息。
技术分享图片

我用的是centos (fedora, RHEL也一样)

$ sudo vi /etc/httpd/conf/httpd.conf 

其它的系统(ubuntu, Debian)

$ sudo vi /etc/apache2/apache2.conf 

我们能够在这个文件里加入两行信息

ServerSignature Off //隐藏Apache版本号信息
ServerTokens Prod//第一条命令尽管不会在页面上直接显示。但在response的头部还会包括。所以加上此条。

然后再重新启动网络

$ sudo service apache2 restart (Debian, Ubuntu or Linux Mint)
$ sudo service httpd restart (CentOS/RHEL 6)
$ sudo systemctl restart httpd.service (Fedora, CentOS/RHEL 7, Arch Linux) 

就可以解决该问题。

详细參见:
http://ask.xmodulo.com/turn-off-server-signature-apache-web-server.html

shell脚本參见:
http://write.blog.csdn.net/mdeditor#!postId=47006651

禁掉Apache web server签名 How to turn off server signature on Apache web server

原文:https://www.cnblogs.com/llguanli/p/8445961.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!