使用 SSL 和客户端证书身份验证保护 ASP.NET MVC 应用程序
我希望通过 SSL 和客户端证书身份验证来保护 ASP.NET MVC 应用程序的安全。我使用的是 IIS 7.5、Windows Server 2008 R2。
我想知道是否可以通过 Web.config 执行以下操作(必须通过那里!)
- 要求所有请求进行 SSL 通信
- 将多个客户端证书映射到单个用户
- 要求对用户进行身份验证
另外,任何指针关于如何继续这样做,任何教程或其他相关资源将不胜感激,因为我对几乎所有这些事情都是新手。
I'm looking to secure an ASP.NET MVC application with SSL and client certificate authentication. I'm using IIS 7.5, Windows Server 2008 R2.
I'd like to know whether it's possible to do the following through Web.config (it has to be through there!)
- Require SSL communication for all requests
- Map multiple client certificates to a single user
- Require the user to be authenticated
Also, any pointers on how to go on about doing this, any tutorials or other relevant resources will be much appreciated as I'm new to pretty much all of these things.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
所以,回答我自己的问题..以上所有内容都可以通过Web.config来实现。 Web.config 的以下部分需要通过系统/访问部分使用 SSL,并配置多对一客户端证书映射。这些部分被锁定在 applicationHost.config 中,因此任何希望在 Web.config 中编辑它们的人都需要解锁它们。这方面的教程有很多,我就不赘述了。
So, to answer my own questions.. all of the above can be achieved through the Web.config. The following section of the Web.config requires SSL through the system/access section, and configures many-to-one client certificate mapping. These sections are locked in the applicationHost.config so anyone wishing to edit them in the Web.config will need to unlock them. There are many tutorials on that so I won't go into it.
按顺序进行:
所有请求都需要 SSL 通信 - 是。在 IIS 中,将站点设置为仅使用
https
绑定,并删除http
绑定。该站点不会响应 http 请求。如果您这样做,您应该创建一个脚本将 403.4 错误从http://mysite.com
重定向到https://mysite.com
。您可以找到许多有关如何使用各种工具执行此操作的示例。将多个客户端证书映射到单个用户 - 我不知道。我将传递这个。
要求用户进行身份验证 - 是。在 web.config 文件的
元素中,添加以下内容:Going in order:
Require SSL communication for all requests - Yes. In IIS, set the site with only an
https
binding, and delete thehttp
binding. The site will not respond to http requests. If you do this, you should create a script to redirect 403.4 errors fromhttp://mysite.com
tohttps://mysite.com
. You can find many examples of how to do this using various tools.Map multiple client certificates to a single user - I dunno. I will pass on this one.
Require the user to be authenticated - Yes. In the web.config file, in the
<system.web>
element, add the following: