The stats.lua script uses string:match() lots of times when processing query parameters.
In most cases the regex is not anchored, which means that the parameter can contain additional characters. This may cause unexpected behaviour, especially if the parameter is matched more than once with different REs.
The stats.lua script uses string:match() lots of times when processing query parameters.
In most cases the regex is not anchored, which means that the parameter can contain additional characters. This may cause unexpected behaviour, especially if the parameter is matched more than once with different REs.