gpt4 book ai didi

ASP.NET + IIS6 : whitelist users via authorization section in web. 配置

转载 作者:行者123 更新时间:2023-12-03 23:34:27 25 4
gpt4 key购买 nike

考虑网站下的 IIS6 应用程序:

  • Windows 身份验证已启用。
  • 匿名已关闭

这是一个带有区域的 ASP.NET MVC 应用程序。根web.config具有身份验证和授权节点如下:

<authentication mode="Windows"></authentication>

<authorization>
<allow users="domain\abc, domain\xyz, domain\foo, domain\bar"/>
</authorization>

我的身份不在允许的用户列表中。在浏览器中输入 URL,我可以查看并导航到其中的所有页面。我知道我已获得正确授权,因为我的 Active Directory 名称显示在网站上。

问题:我有权访问该网站。

问题:使用 web.config,如何根据用户的 Windows 凭据限制用户访问此 IIS6 应用程序?

最佳答案

试试这个:

<authorization> 
<allow users="domain\abc, domain\xyz, domain\foo, domain\bar"/>
<deny users="*"/>
</authorization>

关于ASP.NET + IIS6 : whitelist users via authorization section in web. 配置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1446285/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com