面向互联网站点的 ASP.MVC 防御技术

发布于 2024-08-13 07:18:21 字数 155 浏览 6 评论 0原文

我正在开发我的第一个 asp MVC 项目,该项目最终将在可公开访问的 Web 服务器上完成(我曾在 MVC 中开发过一些内部应用程序)。我应该考虑哪些技术、实践(特定于 MVC 或其他)来提高安全性。

在我的脑海中,显然有用于操作和验证的 AcceptVerb 属性,还有什么?

I am working on my first asp MVC project that will ultimately end up on a publicly accessible web server (I have worked on some internal apps in MVC). What techniques, practices should I be thinking about (specific to MVC or otherwise) to improve security.

Off the top of my head obviously there is the AcceptVerb attribute for actions and Validation what else?

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

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

发布评论

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

评论(3

青衫负雪 2024-08-20 07:18:21

Windows Live 团队编写了一份白皮书,描述了在某些 Windows Live 属性上使用 ASP.NET MVC 所获得的经验教训。他们进行了大量的安全分析,并在此处展示了他们的安全提示:

http://www.microsoft.com/downloads/details.aspx?FamilyID=7606f801-70c5-49ca-a18c-91d4ed725833&displaylang=en

The Windows Live team has written a white-paper describing lessons learned using ASP.NET MVC on certain Windows Live properties. They do a lot of security analysis and present their security tips here:

http://www.microsoft.com/downloads/details.aspx?FamilyID=7606f801-70c5-49ca-a18c-91d4ed725833&displaylang=en

送君千里 2024-08-20 07:18:21

几点:

  • 对每个用户输入进行编码
  • 使用 防伪令牌
  • 对每个修改状态的请求使用 POST 动词

A couple of points:

  • Encode every user input
  • Use anti forgery tokens
  • Use POST verbs for every request that modifies state
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文