How can I avoid SQL injection attacks in my ASP.NET application?

前端 未结 16 2071
死守一世寂寞
死守一世寂寞 2020-11-27 20:16

I need to avoid being vulnerable to SQL injection in my ASP.NET application. How might I accomplish this?

16条回答
  •  庸人自扰
    2020-11-27 21:01

    Use XSS Secured UrlEncode using Microsoft.Security.Application.AntiXss.UrlEncode and SQL injection will not work. Or You can use ASP.NET – JSON – Serialization and Deserialization

    Also test your application with SiteDigger from Macfee Fre Tool.

    Few More are from here

    .NET Security Toolkit v1.0 .NETMon v1.0 Validator.NET v1.0

提交回复
热议问题