Open
Description
https://github.com/phalcon/bridge-swoole/blob/master/src/Request.php#L180
should be like
#(\\w+)=(["\'])?([^"\', ]+)(\\2)?#
to mitigate so called "catastrophic backtracking" https://owasp.org/www-community/attacks/Regular_expression_Denial_of_Service_-_ReDoS when provided input like "a=aaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
(or optionally even stricter if it's possible to replace "+" with reasonable max length)