<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0">
<channel>
<title><![CDATA[沧海一粟]]></title> 
<link>http://www.dzhope.com/index.php</link> 
<description><![CDATA[Web系统架构与服务器运维,php开发]]></description> 
<language>zh-cn</language> 
<copyright><![CDATA[沧海一粟]]></copyright>
<item>
<link>http://www.dzhope.com/post//</link>
<title><![CDATA[隐藏Nginx、apache、php版本信息的方法]]></title> 
<author>jed &lt;jed521@163.com&gt;</author>
<category><![CDATA[服务器技术]]></category>
<pubDate>Tue, 07 Apr 2015 08:56:50 +0000</pubDate> 
<guid>http://www.dzhope.com/post//</guid> 
<description>
<![CDATA[ 
	1.隐藏php版本号<br/>隐藏方法：vim php.ini添加如下代码<br/><div class="code"><br/>expose_php = Off&nbsp;&nbsp;<br/></div><br/>2.隐藏nginx版本号<br/>隐藏方法：vim nginx.conf 在http里加入<br/><div class="code"><br/>server_tokens off;&nbsp;&nbsp;<br/></div><br/>3.隐藏apache版本号<br/>隐藏方法：vim httpd.ini 添加如下代码<br/><div class="code"><br/>ServerTokens = ProductOnly&nbsp;&nbsp; <br/>ServerSignature = Off&nbsp;&nbsp;<br/></div><br/>修改每个配置文件都要重启服务才可以生效。<br/>伪装apache<br/>编辑ap_release.h文件，修改<br/><div class="code"><br/>“#define AP_SERVER_BASEPRODUCT &#92;&quot;Apache&#92;&quot;”<br/></div><br/>为<br/><div class="code"><br/>“#define AP_SERVER_BASEPRODUCT &#92;&quot;Microsoft-IIS/5.0&#92;&quot;”<br/></div>。<br/>编辑os/unix/os.h文件，修改<br/><div class="code"><br/>“#define PLATFORM &#92;&quot;Unix&#92;&quot;”为“#define PLATFORM &#92;&quot;Win32&#92;&quot;”<br/></div><br/>修改完毕后，重新编译、安装Apache。<br/>伪装nginx<br/><div class="code"><br/>cd /usr/local/src/nginx-1.0.6/src/core/<br/>&#91;root@server core&#93;# cat nginx.h<br/><br/>/*&nbsp;&nbsp;<br/>* Copyright (C) Igor Sysoev&nbsp;&nbsp;<br/>*/ <br/> <br/>#ifndef _NGINX_H_INCLUDED_&nbsp;&nbsp;<br/>#define _NGINX_H_INCLUDED_&nbsp;&nbsp;<br/> <br/>#define NGINX_VERSION&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;1.0&quot;&nbsp;&nbsp;<br/>#define NGINX_VER&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;ZWS/&quot; NGINX_VERSION&nbsp;&nbsp;<br/> <br/>#define NGINX_VAR&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&quot;ZWS&quot;&nbsp;&nbsp;<br/>#define NGX_OLDPID_EXT&nbsp;&nbsp;&nbsp;&nbsp; &quot;.oldbin&quot;&nbsp;&nbsp;<br/> <br/>#endif /* _NGINX_H_INCLUDED_ */&nbsp;&nbsp;<br/></div><br/>
]]>
</description>
</item><item>
<link>http://www.dzhope.com/post//#blogcomment</link>
<title><![CDATA[[评论] 隐藏Nginx、apache、php版本信息的方法]]></title> 
<author> &lt;user@domain.com&gt;</author>
<category><![CDATA[评论]]></category>
<pubDate>Thu, 01 Jan 1970 00:00:00 +0000</pubDate> 
<guid>http://www.dzhope.com/post//#blogcomment</guid> 
<description>
<![CDATA[ 
	
]]>
</description>
</item>
</channel>
</rss>