编辑 ASP.net web.config 文件内容

发布于 2024-10-18 08:48:07 字数 152 浏览 5 评论 0原文

除了数据库连接字符串之外,默认情况下 Visual Studio 2008 在 web.config 中是否填充了任何敏感值? PublicKeyToken 值是什么?这些敏感值是什么?发布带有编辑连接字符串的 web.config 文件是否是一种不好的安全做法?

Other than database connection strings, by default are there any sensitive values populated in web.config by Visual Studio 2008? What are PublicKeyToken values are these sensitive values? Would it be bad security practice to publish web.config files with connection strings redacted?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

陌伤ぢ 2024-10-25 08:48:08

公钥令牌与私钥令牌结合使用来对 .NET 程序集进行签名。公钥令牌不敏感。对于连接字符串,常见的做法是加密连接字符串并将其保存在 web.config 中。

Public key tokens are used in association with private key tokens to sign .NET assemblies. The public key tokens are not sensitive. As for connection strings, it is common practice to encrypt the connection string and keep them in the web.config.

喜爱纠缠 2024-10-25 08:48:07

PublicKeyToken 不敏感。

至于编辑连接字符串,你怕谁?谁会得到你的 web.config?

PublicKeyToken are not sensitive.

As to redacting connection strings, who are you afraid of? Who's going to get hold of your web.config?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文