Is it possible to detect 100% of SQLi with a simple regex?
I’m wondering if it is possible to detect 100% of the possible SQLi attacks using a simple regex.
In other words, using very simple PHP code as an example:
if (preg_match(“/select/i”, $input)) {
attack_log(“Possible SELECT SQLi detec… Continue reading Is it possible to detect 100% of SQLi with a simple regex?