sebbASF opened a new issue #165:
URL: https://github.com/apache/incubator-ponymail-foal/issues/165


   
https://github.com/apache/incubator-ponymail-foal/blob/0615306c26f83ae073ba3ca0875af97eb0114972/server/plugins/formdata.py#L38
   
   AFAICT, the request.query_string has already been %-decoded, so calling 
parse_qsl can result in corrupting the extracted information.
   
   For example, ?id=a%2520c becomes 'a c'; it should be 'a%20c'
   
   There is actually no need to use parse_qsl as the required info is already 
in the field request.query which is a MultiDictProxy containing the 
already-decoded values.
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to