TranslateProject/translated/tech/20150225 How to Hide PHP Version in Linux.md

57 lines
2.1 KiB
Markdown
Raw Normal View History

2015-02-22 14:18:51 +08:00
如何在Linux中隐藏PHP版本
2015-02-15 14:41:18 +08:00
================================================================================
2015-02-22 14:18:51 +08:00
通常上大多数默认设置安装的web服务器存在信息泄露。这其中之一是PHP。PHP超文本预处理器是如今流行的服务端html嵌入式语言。在如今这个充满挑战的时代有许多攻击者会尝试发现你服务端的漏洞。因此我会简单描述如何在Linux服务器中隐藏PHP信息。
2015-02-15 14:41:18 +08:00
2015-02-22 14:18:51 +08:00
默认上**exposr_php**默认是开的。关闭“expose_php”参数可以使php隐藏它的版本信息。
2015-02-15 14:41:18 +08:00
[root@centos66 ~]# vi /etc/php.ini
2015-02-22 14:18:51 +08:00
在你的php.ini, 定位到含有expose_php的那行把On设成Off
2015-02-15 14:41:18 +08:00
expose_php = Off
2015-02-22 14:18:51 +08:00
在此之前web服务器头看上去就像这样
2015-02-15 14:41:18 +08:00
[root@centos66 ~]# curl -I http://www.ehowstuff.com/
----------
HTTP/1.1 200 OK
Server: nginx
Content-Type: text/html; charset=UTF-8
Vary: Accept-Encoding
X-Powered-By: PHP/5.3.3
X-Pingback: http://www.ehowstuff.com/xmlrpc.php
Date: Wed, 11 Feb 2015 14:10:43 GMT
X-Page-Speed: 1.9.32.2-4321
Cache-Control: max-age=0, no-cache
2015-02-22 14:18:51 +08:00
更改之后php就不会在web服务头中显示版本了
2015-02-15 14:41:18 +08:00
[root@centos66 ~]# curl -I http://www.ehowstuff.com/
HTTP/1.1 200 OK
Server: nginx
Date: Wed, 11 Feb 2015 15:38:14 GMT
Content-Type: text/html; charset=UTF-8
Vary: Accept-Encoding
X-Pingback: http://www.ehowstuff.com/xmlrpc.php
Date: Wed, 11 Feb 2015 14:10:43 GMT
X-Page-Speed: 1.9.32.2-4321
Cache-Control: max-age=0, no-cache
2015-02-22 14:18:51 +08:00
有任何需要帮助的请到twiiter @ehowstuff,或在下面留下你的评论。[点此获取更多历史文章][1]
2015-02-15 14:41:18 +08:00
--------------------------------------------------------------------------------
via: http://www.ehowstuff.com/how-to-hide-php-version-in-linux/
作者:[skytech][a]
2015-02-22 14:18:51 +08:00
译者:[geekpi](https://github.com/geekpi)
2015-02-15 14:41:18 +08:00
校对:[校对者ID](https://github.com/校对者ID)
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创翻译,[Linux中国](http://linux.cn/) 荣誉推出
[a]:http://www.ehowstuff.com/author/mhstar/
2015-02-22 14:01:32 +08:00
[1]:http://www.ehowstuff.com/archives/