Securing ASP.NET MVC Application Checklist

后端 未结 4 1340
轻奢々
轻奢々 2021-02-02 03:14

I am looking for a set of guidelines or a checklist that you can go over for securing a public ASP.NET MVC Website. I just want to make sure that I am not making any of the obvi

4条回答
  •  情歌与酒
    2021-02-02 03:52

    Don't use the default GET on actions unless absolutely necessary. For example, if you have a DeleteUser action that doesn't have a [AcceptVerbs(HttpVerbs.Post)] on it, it can be called via

     
    

    Which will get called by whomever "views" the image.

提交回复
热议问题