vote up 3 vote down star

I know how to map a list to a string:

foostring = ",".join( map(str, list_of_ids) )

And I know that I can use the following to get that string into an IN clause:

cursor.execute("DELETE FROM foo.bar WHERE baz IN ('%s')" % (foostring))

What I need is to accomplish the same thing SAFELY (avoiding SQL injection) using MySQLDB. In the above example because foostring is not passed as an argument to execute, it is vulnerable. I also have to quote and escape outside of the mysql library.

(There is a related SO question, but the answers listed there either do not work for MySQLDB or are vulnerable to SQL injection.)

flag

You might be able to get some inspiration from a similar question that is done in php stackoverflow.com/questions/327274/… – Zoredache Feb 26 at 8:46

3 Answers

vote up 11 vote down check

Use the list_of_ids directly:

format_strings = ','.join(['%s'] * len(list_of_ids))
cursor.execute("DELETE FROM foo.bar WHERE baz IN (%s)" % format_strings,
                tuple(list_of_ids))

That way you avoid having to quote yourself, and avoid all kinds of sql injection.

Note that the data (list_of_ids) is going directly to mysql's driver, as a parameter (not in the query text) so there is no injection. You can leave any chars you want in the string, no need to remove or quote chars.

link|flag
Why quote the %s in the format_strings? Won't this be handled by the .execute() method, too? – unbeknown Feb 26 at 9:07
@heikogerlach: I am not quoting the %s... The first line creates a string of "%s,%s,%s"... the same size of list_of_ids length. – nosklo Feb 26 at 11:22
Argh, you're right. Need to look harder. Somehow I mixed it up. Nice solution, though. – unbeknown Feb 26 at 13:21
vote up 0 vote down

Did somebody take a look on MySQLdb source code? If not I suggest you to look at it - mainly because MySQLdb create the query on the client side and doesn't pass parameters to the server!

So it doesn't matter how you use it your code is vulnerable!

link|flag
Really? That must suck. Let me check... (checks) ... huh, not really - .execute() method actually passes the argument list through an encoder mysql-python.svn.sourceforge.net/viewvc/… so you're safe. It sucks that the mysql server itself doesn't do that, but that is a mysql driver detail - you shouldn't do the interpolation yourself anyway, if you change drivers things can be different under the hood. – nosklo Oct 29 at 10:42
vote up -1 vote down

Edit: This example is not an optimal way to do this (as evidenced by voting).

Maybe loop instead, e.g.:

sql = "DELETE FROM cheese.shop WHERE limburger = %s"

for i in list_of_ids:
    cursor.execute(sql, (i,)) # comma added based on comment, thanks nosklo!

Why the '%s' for an integer?

From the DBAPI PEP (MySQLdb uses the 'format' paramstyle):

    paramstyle

        String constant stating the type of parameter marker
        formatting expected by the interface. Possible values are
        [2]:

            'qmark'         Question mark style, 
                            e.g. '...WHERE name=?'
            'numeric'       Numeric, positional style, 
                            e.g. '...WHERE name=:1'
            'named'         Named style, 
                            e.g. '...WHERE name=:name'
            'format'        ANSI C printf format codes, 
                            e.g. '...WHERE name=%s'
            'pyformat'      Python extended format codes, 
                            e.g. '...WHERE name=%(name)s'
link|flag
Adam, it won't work. You need to make a tuple, (i) is just plain i. – nosklo Feb 26 at 6:48
This works for me...just deleted all my limburger. But I agree that your solution is better for the OP's particular case. Nonetheless I will leave this up as it seems cleaner to loop over the ids instead of using 'IN'. – Adam Bernier Feb 26 at 6:58
are you sure it works with (i)? it should be (i,) with a comma to make it a tuple. – nosklo Feb 26 at 7:03
All three of these: 'i', '(i)', '(i,)' work equally well in my example where '(i,)' is an integer just like 'i' is. – Adam Bernier Feb 26 at 7:39
+1: Loop is clearer. – S.Lott Feb 26 at 10:58
show 3 more comments

Your Answer

Get an OpenID
or

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