I am new in asp.net While developing asp.net website, what consideration you will tack to make sure your website is secure ?
Asked
Active
Viewed 47 times
0
-
Completely depends on the website. Watch out for SQL injection all the way up to making sure credit card numbers are secure. How long is your piece of string? – Elliott Hill Feb 22 '14 at 12:01
-
You must define secure, more details, what you try to secure ? – Aristos Feb 22 '14 at 13:02
-
See [my post on how the OWASP Top 10 applies to ASP.NET](http://stackoverflow.com/a/20903746/413180) – SilverlightFox Feb 23 '14 at 01:15
1 Answers
0
"secure" has many meanings, and what you do depends on the context.
For instance, "secure" can mean that you want to encrypt the pages. That means using SSL. Or it can mean that your site doesn't have common vulnerabilities, in which case you should check out https://www.owasp.org/index.php/.NET_Security_Cheat_Sheet
or

Erik Funkenbusch
- 92,674
- 28
- 195
- 291