|
|
|
|
|
by ohwp
4371 days ago
|
|
I think it's still very easy to create injectable queries. Prepared statements are a good start but people still forget to escape everything. For example: prepare("SELECT name FROM users WHERE country = ? ORDER BY " + unescapedVar, country);
So I wonder, is there any way to force programmers into writing secure queries (by not writing queries)? Is ORM the way to go? |
|