I'm looking for a good solid Regular Expression for detecting SQL in a string. Does anyone have a sample of something they've used before?
|
|
Don't do it. You're practically guaranteed to fail. Use |
||||
|
|
|
Not that I suggest using regex to detect SQL Injection as I agree it is bound to fail, however detecting terms like "declare" and "exec" which are unlikely to be valid in your user input in most cases would work for your specific example. |
||
|
|
|
|
Save yourself problems and use stored procedures with prepared statements or parameterized queries. Stored procedures are good practice anyway, as they act like an interface to the database, so you can change what happens behind the scenes (inside the stored proc) but the signature remains the same. The prepared statements help take care of injection protection. |
||
|
|
|
|
The library/driver is required to handle escaping of parameter values when you use a |
||
|
|
|
|
use stored procs or prepared statements, how will you detect something like this? BTW do NOT run that
|
||
|
|
|
|
I don't have a regex but my understanding is that the most important thing is to detect the single quote. All the injection attacks start from there. They probably have the -- in there too to comment out and other SQL that might be after the string. |
||
|
|
