We are looking at using a library to help us detect SQL injections.
- We are using sprocs and parametrized statements, but for the sake of this post that we are only using some sore of library that detects/ verifies user input.
Whats the best one? Easiest to implement? Easiest to update/manage? Why prefer one over the other?
On a side note:
I've just started using Owasp. with C#. I was hoping that there would be more default rules while validating. When using the isValid function, there are only 5 default rules.
CREDIT_CARD -- Rule name key for the credit card validation rule. DATE -- Rule name key for the date validation rule. DOUBLE -- Rule name key for the double validation rule. INTEGER -- Rule name key for the integer validation rule. PRINTABLE -- Rule name key for the printable validation rule.
I was hoping that there would be more default rules for string SQL Injection Detection.
Thanks