Heim  >  Artikel  >  Backend-Entwicklung  >  隐藏PHP版本的方法 PHP基本安全设置

隐藏PHP版本的方法 PHP基本安全设置

WBOY
WBOYOriginal
2016-07-25 08:57:41926Durchsuche
  1. [root@jbxue /]# curl -I bbs.it-home.org
  2. HTTP/1.1 200 OK
  3. Server: nginx
  4. Date: Tue, 20 Jul 2010 05:45:13 GMT
  5. Content-Type: text/html; charset=UTF-8
  6. Connection: keep-alive
  7. Vary: Accept-Encoding
复制代码

已隐藏了PHP版本。

2、其它几个PHP的基本安全设置:

disable_functions = phpinfo,system,exec,shell_exec,passthru,popen,dl,proc_open,popen,curl_exec,curl_multi_exec,parse_ini_file,show_source #该指令接受一个用逗号分隔的函数名列表,以禁用特定的函数。

display_errors = Off #是否将错误信息作为输出的一部分显示。在最终发布的web站点上,强烈建议你关掉这个特性,并使用错误日志代替。打开这个特性可能暴露一些安全信息,例如你的web服务上的文件路径、数据库规划或别的信息。

allow_url_fopen = Off #是否允许打开远程文件,建议关闭,如果网站需要采集功能就打开。

safe_mode = On #是否启用安全模式。打开时,PHP将检查当前脚本的拥有者是否和被操作的文件的拥有者相同,相同则允许操作,不同则拒绝操作。开启安全模式的前提是你的目录文件权限已完全分配正确。

open_basedir = /var/www/html/jbxue:/var/www/html/168pc #目录权限控制,jbxue目录中的php程序就无法访问168pc目录中的内容。反过来也不行。在Linux/UNIX系统中用冒号分隔目录,Windows中用分号分隔目录。



Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn