Ilya Vikharev
Results
1
comments of
Ilya Vikharev
The problem is that pattern #17 has a \w\W character class in reg exp string, which effectively matches _any_ character (i.e., it matches both word and non-word characters): `(?:(?:eval|gzuncompress|gzinflate|base64_decode|str_rot13|strrev|strtr|preg_replace|rawurldecode|str_replace|assert|unpack|urldecode)[\s/\*\w\W\(]*){2,}` This...