I have been told the following is insecure:
cursor.execute("""SELECT currency FROM exchange_rates WHERE date='%s'"""%(self.date))
Why exactly is the '%s' bad? How would someone actually do a SQL injection here?
|
Imagine if
and boom, you're hosed. You have to escape the |
|||||||||
|
|
The problem is that you're using string formatting when you should be passing values separately from the query. For instance, compare:
With the string formatting method, someone can put a An added benefit in this case is that if self.date is a python date or datetime object, that will be automatically formatted in the appropriate fashion for your database when it is sent. If you try to add self.date to the query string directly, you'll have to use date formatting to ensure it's output exactly as the database expects it to be. |
||||
|
|
self.datecan contain. But it's good idea to just pass the parameters to the query properly - it's not like it takes any extra effort to do so. – gnibbler May 18 '12 at 5:02how does sql injection workinto Google and you get several similar examples. – Karl Knechtel May 18 '12 at 5:06