Hello,
I have ASP.NET MVC 1.0 and Entity Framework v1 application.
By default, content submitted by user is validated for malicious input. (See here). HTML encoding user submitted data, prevents JavaScript injection attacks. Entity Framework internally uses parameterized SQL which will stop sql injection.
Is this sufficient ? What else can be done to detect, and stop, malicious (javascript/sql injection) input ?
Please advise.
Thank You.