4
Reply

What we do For avoiding Sql injection attack?

Sandeep Kumar

Sandeep Kumar

Dec 24, 2015
751
0

    Use Stored procedures, avoid open queries and still necessary use SP_EXECUTESQL for open queries.

    Vishal Jadav
    August 06, 2016
    0

    Constrain Input. You should validate all input to your ASP.NET applications for type, length, format, and range. ... Use Parameters with Stored Procedures. Using stored procedures does not necessarily prevent SQL injection. ... Use Parameters with Dynamic SQL.

    Munesh Sharma
    May 31, 2016
    0

    use stored procedure and instead of passing control value pass by parameter for ex, instead of textbox.Text pass @parameter

    Rafnas T P
    February 20, 2016
    0

    We use stored procedure for avoiding sql injection attack.

    Sandeep Kumar
    December 24, 2015
    0