web.config 是否受 IIS 保护?
我正在寻找 web.config 的详细信息(加密就可以了)。 我的问题是: IIS 本身是否保护该文件(作为例外规则,无论安全权限如何,都绝不通过 http 传递该文件)?
谢谢。
I'm looking for details on web.config (encrypting it is OK).
My question is :
Does IIS natively protect this file (as an exception rule to NEVER deliver it through http whatever the security rights)?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,IIS 默认情况下不会返回“*.config”文件。不过,您也可以/应该对它们进行加密。
Yes, IIS will not return "*.config" files by default. You can/should also encrypt them as well though.
IIS 无论如何都不会提供 web.config 或任何 .config 文件。正如您在问题中正确提到的那样,它是一个受保护的文件。
IIS is anyways not going to serve a web.config or any .config file. Its a protected file as you rightly mention in your question.