vote up 2 vote down star
1

Possible Duplicates:
How to Prevent SQL Injection?
Best way to stop SQL Injection in PHP
Are Parameters really enough to prevent Sql injections?

Sorry if this seems like a repost, but I found different opinions everywhere and was trying to put it in one spot for PHP/SQL environments


  • Stored procedures ?
  • Paramaterized queries/Prepared statements ?
  • Placeholders in SQL ?


I've already run through a bunch of questions on S.O. and they all seem like worthwhile approaches, but which is the best for preventing SQL injections?

Is it one single approach, a combination of two, or all three?

Are there any more things I should consider implementing? PHP functions? Regex?

My environment includes Apache, PHP, and MySQL (and phpMyAdmin if anyone knows of methods of blocking available there)


This is under the assumption that the connected database user has only select, insert, and update rights

flag

1  
i have that one favorited already... but then look at this one.... stackoverflow.com/questions/306668/… which i also have favorited already – CheeseConQueso Oct 30 at 19:50

closed as exact duplicate by Mark Biek, OMG Ponies, Crescent Fresh, sth, John Kugelman Nov 1 at 17:44

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question.

11 Answers

vote up 9 vote down check

Parameterised queries will be sufficient.

You may want to do other sanitization to prevent undesirable things being inserted to avoid such things as XSS attacks, but parameterising will prevent all SQL injection.

Note: parameterised queries and prepared statements are pretty much the same thing. And placeholders are something that is used in them. Read all about it here: http://dev.mysql.com/tech-resources/articles/4.1/prepared-statements.html

link|flag
XSS attacks... gotta research that a little more... thanks – CheeseConQueso Oct 30 at 20:16
On some DBMSes, prepared statements give you an additional benefit: the query is only sent, parsed, and has a plan generated for it once -- meaning, should you use the prepared statement multiple times, you get a pretty fair performance gain. I don't know if this is true for MySQL, but it's true for postgres. – Frank Farmer Oct 30 at 22:16
1  
XSS and SQL injection are two orthogonal attack vectors. If you're XSS-sanitising your data prior to insertion into the database, you are doing it wrong - you do not want to damage the canonical data format up front. – Rob Nov 1 at 16:13
vote up 2 vote down
  1. Validate all user input.
  2. Use parameterized queries or prepared statements (same thing really)
  3. For PHP, always use mysql_real_escape_string() - NOT addslashes() or mysql_escape_string()

Stored procedures aren't really of much use, at least not with regards to preventing SQL injection.

link|flag
@Eric - not much use? I beg to differ! – JonH Oct 30 at 19:51
In regards to preventing injection, I agree with Eric. As far as overall usefulness? Absolutely useful. – Kevin Peno Oct 30 at 19:53
@JonH - Well, they are useful, but I'm curious how you think they provide any inherent protection against SQL injection. – Eric Petroelje Oct 30 at 19:54
Stored Procs do not by themselves prevent injection. You can still easily allow injection by concating the sp parameters. – dotjoe Oct 30 at 19:55
vote up 1 vote down

I like to use stored procedures and add parameters in my code.

link|flag
vote up 1 vote down

Use prepared statements. That way, data and executable instructions are clearly separated and, therefore, there's nothing to inject into.

I am against stored procedures. Of course, they provide a nice abstraction, but it is far too opaque and they are a devil to maintain.

link|flag
example code? and should i use placeholders on top of that? – CheeseConQueso Oct 30 at 20:12
vote up 1 vote down

I favor stored procedures from a security point of view - the advantages are -

  1. Most databases (including mySQL) enable user access to be restricted to executing stored procedures. The fine grained security access control is useful to prevent escalation of privileges attacks. This prevents compromised applications from being able to run SQL directly against the database.
  2. They abstract the raw SQL query from the application so less information of the db structure is available to the application. This makes it harder or people to understand the underlying structure of the database and design suitable attacks.
  3. They accept only parameters so the advantages of parameterized queries are there. of course - IMO you still need to sanitize your input - especially if you are using dynamic SQL inside the stored procedure.

The disadvantages are -

  1. They (stored procedures) are tough to maintain and tend to multiply very quickly. This makes managing them an issue.
  2. They are not very suitable for dynamic queries - if they are built to accept dynamic code as parameters then a lot of the advantages are negated.
link|flag
vote up 0 vote down

Stored Procedures do not inherently prevent SQL Injection. It's easily possible to write a stored procedure through which injection can happen. Beware the Exec command.

Surely PHP has a library which will sanitize/parameterize for you...

link|flag
But if you are using parameters inside your sproc there is no point in using EXEC. EXEC is the root of all evil, so you have to write your sprocs with that in mind. Does not mean you should not use sprocs with parameters... – JonH Oct 30 at 19:50
I didn't say don't use sprocs. I said sprocs do not inherently prevent injection, so beware the Exec command. You seem to have a consistent problem reading before commenting. – Russell Steen Oct 30 at 20:14
vote up 0 vote down

Stored Proceedures can be used in prepared statements and can use prepared statements inside them.

"Paramaterized queries" ARE prepared statements

Prepared statements are safe, provided the client used doesn't have any vunerabilities, and should be used whenever possible.

link|flag
vote up 0 vote down

Security in depth-- The best approach to preventing SQL injections is to have multiple layers of security, just as preventing any other kind of attack. So really the best way to answer this question is to do everything possible to prevent any kind of unexpected data from being entered or executed (e.g. PHP filters, parametrized queries, JavaScript validation, etc).

link|flag
1  
Well, tell me. What kind of SQL injection might take place, if all database access is done through parametrized queries/prepared statements (when you explicitly tell the DBMS, what's data and what's code)? I mean, you can pass those ";drop table users;--" things all day long, but what harm can it do if it never gets executed? – shylent Oct 30 at 19:55
None that I know of, but that does not guarantee anything. There is no one measure that is totally 'secure' or totally 'preventative'. If you are concerned about security you must design EVERY aspect from the ground up with it in mind. – Mark Oct 30 at 20:01
Your security risk at this point is more from internal than extrenal users. If you don't use stored procs, you must set permissions at the table/view level and an internal user can do things to the data directly that you don't want them to do. They can by pass internal controls and fairly easily commit fraud if you give direct rights to the tables. – HLGEM Oct 30 at 21:19
vote up 0 vote down

Prepared statements does the trick.

link|flag
vote up 0 vote down

at first i use the mysqli functions of php because they escape automatically and support prepared statements easily. i use regular expressions to validate the inputs too. stored procedures are nice for people wich can handle with.

link|flag
vote up -1 vote down

Sanitizing user input is the one and only right thing to do. In PHP, mysqli_real_escape_string() (for MySQL) or pg_escape_string() (for PostgreSQL) do the job.

Using a library that does it for you (AdoDB is a good one) makes it easier, and less likely to forget it in some places.

link|flag
addslashes() doesn't catch everything mysql_real_escape_string() does. – Frank Farmer Oct 30 at 22:19
you're right, the DB-specific ones are better, I updated my answer – Wim Oct 30 at 22:25

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