security - Securing ASP.NET MVC Application Checklist -
I'm looking at a set of guidelines or a checklist that you can also get to the public ASP.NET MVC website. Can go. I just want to make sure that I am not making clear and well-known issues while deploying a website.
Thank you. As always, make sure you have the right encoding output - note that I'm saying encode here and not HtmlEncode. If you are outputting content on HTML If you are output in JavaScript then you want to use the Javascript encoding function - this will help you against Cross Site Scripting (XSS) < Li> Use assisters who help against CSRF attacks where necessary (or perhaps everywhere)
& lt; script type = "text / javascript" & gt; alert ( "Aksss Attack!"); & Lt; / Script & gt; Will appear through XSS!
Comments
Post a Comment