This site is the archived OWASP Foundation Wiki and is no longer accepting Account Requests.
To view the new OWASP Foundation website, please visit https://owasp.org

CRV2 FrameworkSpecIssuesASPNet

From OWASP
Revision as of 02:47, 14 July 2013 by Johanna Curiel (talk | contribs)

Jump to: navigation, search

ASP.NET Security

Input validation Input

Anything coming from external sources can be consider as input in a web application. Not only the user inserting data through a web form, but also data retrieved from a web service or database, headers sent from the browsers fall under this concept.

Defining what is known as trust boundary can help us to visualize all possible untrusted inputs. ASP.NET has different types of validations depending on the level of control to be applied. By default, web pages code is validated against malicious users. The following is a list types of validations used (MSDN, 2013):

AA CC EE
BB DD FF

A way of defining when input is safe can be done through defining a trust boundary.

Data Encryption

Authentication and Authorization

creating a Semi- Trusted Application