From 50f5975388ce6f0c6f412b6d3d650c54b8341602 Mon Sep 17 00:00:00 2001
From: Nick Kew
It can be made safe by untainting all inputs: a process inspired by Perl's taint checking. Each input - is matched against a regexp, and only the match is used. - To use this, the untainting regexps must be included in the + is matched against a regexp, and only the match is used, + according to the Perl idiom:
+ $untrusted =~ /([a-z])+/;
+ $trusted = $1;
+ To use this, the untainting regexps must be included in the prepared statements configured. The regexp follows immediately after the % in the prepared statement, and is enclosed in curly brackets {}. For example, if your application expects -- 2.40.0