ASP.NET MVC 中的安全问题是什么?

发布于 2024-09-25 01:32:06 字数 51 浏览 7 评论 0原文

ASP.NET MVC 中的安全问题是什么?! MVC 解决了 XSS 和其他问题吗?!

What are security issues in asp.net mvc?! and does MVC solved XSS and the others?!

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

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

发布评论

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

评论(3

如此安好 2024-10-02 01:32:07

正如 jfar 所说:小心 SQL 注入。 :-)

替代文字

As jfar says: watch out for SQL injection. :-)

alt text

天生の放荡 2024-10-02 01:32:07

它允许您使用一些特定的部分,但您仍然必须在适当的地方使用它们,这会有所帮助。

  • 使用新的默认值 <%:Html 对输出进行编码
  • 使用防伪请求令牌
  • 使用任何提供的数据访问解决方案。在尽可能最低的级别上,使用 .Parameters 来传递参数
  • 注意每一位指导,
  • 不要忽略发布的安全建议,就像最近影响 asp.net 的一般情况一样: is-asp-net-mvc-易受oracle-padding-攻击< /a>

你还是要明白&质疑安全方面。

It helps by allowing you to use some specific pieces, but you still have to use them in appropriate places.

  • Use the new default <%: that Html Encodes the output
  • Use the anti forgery request token
  • Use Any of the provided data access solutions. At the lowest possible level, use .Parameters to pass parameters
  • Pay attention to every bit of guidance
  • don't dismiss security advisory published, as the recent one affecting asp.net in general: is-asp-net-mvc-vulnerable-to-the-oracle-padding-attack

You still have to understand & question the security aspects.

最初的梦 2024-10-02 01:32:07

与任何其他网站相同。就像任何其他语言或框架一样,只有采取措施来防止 Sql 注入和请求伪造,才能解决它们。仅当您不需要接受 HTML 输入并禁用 XSS 验证时,XSS 才能得到解决。

不要心软,MS 提供了所有答案。它仍然需要敏锐地发现缺陷并严格应用对策来确保安全。

The same as any other website. Just like any other language or framework Sql Injection and Request Forgery are only solved if you implement measures to prevent it. XSS is solved only if you don't need to accept HTML input and disable XSS validation.

Don't get soft thinking MS provided all the answers. It still takes a keen eye for flaws and a rigid application of counter measures to keep things secure.

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