IIS7:为什么 NT Authority\IUSR 身份的 isAnonymous 属性为 false?
在配置了模拟应用程序的 IIS 7 中,我看到匿名用户身份是 NT Authority\IUSR,并且具有属性 isAuthenticated=true 和 isAnonymous=false。 isAnonymous 属性不应该是 true 吗?我可以通过名称检查匿名用户,但谁知道,他们可能会在 IIS 8 中再次更改它。
In IIS 7 with an application configured for impersonation, I am seeing that the anonymous user identity is NT Authority\IUSR and has properties isAuthenticated=true and isAnonymous=false. Shouldn't the isAnonymous property be true? I can check for the anonymous user by name but who knows, they may change it again in IIS 8.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在 IIS7 中将 IdentityImpersonation 设置为 true,您有两个选择:
2.使用匿名身份验证并选择以经过身份验证的用户身份运行 ASP.NET 应用程序,该应用程序将在为匿名用户设置的帐户(通常为 IUSR)下运行。
http://technet.microsoft.com/en-us/库/cc730708(WS.10).aspx
Setting IdentityImpersonation to true in IIS7 you have two options:
2.using Anonymous authentication and chose to run the ASP.NET application as the authenticated user, the application would run under an account set up for anonymous users (typically, IUSR).
http://technet.microsoft.com/en-us/library/cc730708(WS.10).aspx