IIS 5 和 IIS 6 的安全性差异

代码如下:
None.gif using  System;
None.gif
using  System.DirectoryServices;
None.gif
None.gif
class  TestIIS
ExpandedBlockStart.gifContractedBlock.gif
dot.gif {
InBlock.gif    
public static void Main()
ExpandedSubBlockStart.gifContractedSubBlock.gif    
dot.gif{            
InBlock.gif        
string comment,bindings;
InBlock.gif        DirectoryEntry entry 
= new DirectoryEntry("IIS://LocalHost/w3svc");
InBlock.gif        
InBlock.gif         
foreach(DirectoryEntry dir in entry.Children)
ExpandedSubBlockStart.gifContractedSubBlock.gif         
dot.gif{
InBlock.gif               
if(dir.SchemaClassName == "IIsWebServer")
ExpandedSubBlockStart.gifContractedSubBlock.gif               
dot.gif{
InBlock.gif                   comment  
= dir.Properties["ServerComment"].Value.ToString();
InBlock.gif                   bindings 
= dir.Properties["ServerBindings"].Value.ToString();         
InBlock.gif                   
if (bindings == ":80:")
ExpandedSubBlockStart.gifContractedSubBlock.gif                   
dot.gif{
InBlock.gif                       Console.WriteLine(dir.Properties[
"MaxConnections"].Value);
ExpandedSubBlockEnd.gif                   }

ExpandedSubBlockEnd.gif               }

ExpandedSubBlockEnd.gif        }

ExpandedSubBlockEnd.gif       }

ExpandedBlockEnd.gif}

以上代码,在控制台下面是可以直接运行的 emsmilep.gif.
如果将上面的代码稍稍修改(将Console.WriteLine改为Response.Write),封装成方法,放到一个aspx页面里面,拿到IIS上运行的话,会发现比较有趣的现象:
在IIS6上正常运行,在IIS 5上却会抛出拒绝存取的安全性异常 emangry.gif.
如果你想让上述代码在IIS 5 和 6 上面都运行正常的话,需要做以下操作:
1.首先通过.NET FX 1.1 的配置工具将你的程序集配置为FullTrust
可以参考下面的链接:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnnetsec/html/entsecpoladmin.asp
2.将你的IIS的匿名账号配置到管理员组里面,或者修改web.config文件
也可以参考下面的链接:
http://support.microsoft.com/default.aspx?scid=kb;en-us;306158
虽然可以解决问题,但是我的疑惑是:
IIS 6 的安全性应该比IIS 5 更全面,为什么在 IIS 6 上却正常?
上述的代码都是访问,并非修改设置, IIS 5 的安全要求就这么苛刻? hitwall.gif
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值