What are basic ASP.NET form security practices? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-17T17:54:37Z http://stackoverflow.com/feeds/question/786651 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/786651/what-are-basic-asp-net-form-security-practices 2 What are basic ASP.NET form security practices? MStodd 2009-04-24T16:38:14Z 2009-04-24T16:48:11Z <p>Assume I have a form with some disabled checkboxes because the user as logged in shouldn't be able to check them. Where should I add some sanitization security to make sure they didn't hack the checkbox and cause a postback?</p> <p>In the page? Database layer? In the database?</p> <p>I realize it's most likely a pretty broad question.</p> <p>thanks, Mark</p> http://stackoverflow.com/questions/786651/what-are-basic-asp-net-form-security-practices/786658#786658 0 Answer by Mehrdad Afshari for What are basic ASP.NET form security practices? Mehrdad Afshari 2009-04-24T16:39:04Z 2009-04-24T16:39:04Z <p>ASP.NET Event validation mechanism takes care of that. It's been there since 2.0, I think.</p> http://stackoverflow.com/questions/786651/what-are-basic-asp-net-form-security-practices/786674#786674 3 Answer by Gulzar for What are basic ASP.NET form security practices? Gulzar 2009-04-24T16:43:26Z 2009-04-24T16:43:26Z <p>If you really need to make it secure, implement checks across all layers..at a minimum, start with the database and data access layer.</p> http://stackoverflow.com/questions/786651/what-are-basic-asp-net-form-security-practices/786704#786704 1 Answer by EJB for What are basic ASP.NET form security practices? EJB 2009-04-24T16:48:11Z 2009-04-24T16:48:11Z <p>I prefer to make things the user can't interact with completely invisible when possible. You can't hack what you can't see (and I don't mean hidden on the page, I mean the server doesn't generate the code for the things not logged in users can't see).</p> <p>That said, assuming you need to leave controls visible, but disabled, I would add code in both the front-end and the back-end to do checks. The front-end validation code is susceptible to hacking, but it is nice to have quick validation feedback available for users that are using the system - however, the back-end should be your real fail-safe place to make sure everything is as expected and do final checks before committing changes.</p> <p>Unfortunately that sometimes means you need to duplicate the effort, but for really important stuff, it is worth it.</p>