vote up 1 vote down star

Possible Duplicates:
How can I avoid SQL injection attacks in my ASP.NET application?
Are Parameters really enough to prevent Sql injections?
What is the best way to avoid SQL injection attacks?

What are precautions taken by the developer/programmer for preventing SQL Injection in asp.net or any other programming language

flag

25% accept rate
1  
Searching StackOverflow for "SQL Injection" would be a start... stackoverflow.com/search?q=avoid+SQL+Injection/… – gbn Sep 13 at 19:31

closed as exact duplicate by gbn, chakrit, womp, OrbMan, marc_s Sep 13 at 19:44

6 Answers

vote up 1 vote down check

This post by Scott Guthrie explains this in good detail.

link|flag
vote up 4 vote down

Parameterized Queries

link|flag
vote up 1 vote down

Colin Mackay wrote an excellent article about this topic on Code Project. You can find it here.

link|flag
vote up 0 vote down

Anti-SQL-Injection Tips & Tricks

A very nice reference, and it is .NET.

link|flag
vote up 0 vote down

In ASP.net off the top my head

  1. Validate all input.
  2. use least privileges security model on your database. (never use sa)
  3. Using dynamic sql is asking for trouble, use paramiterised queries.
link|flag
vote up 0 vote down

An excellent answer here: "How can I avoid SQL injection attacks in my ASP.NET application?"

Otherwise, there are plenty of other answers here for various languages and scenarios.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.