asciimoo / wuzz

Interactive cli tool for HTTP inspection
GNU Affero General Public License v3.0
10.54k stars 412 forks source link

fix: handling of multiple same-name query params #107

Closed klaus closed 6 years ago

klaus commented 6 years ago

Multiple get parameters with the same name are now printed each in their own line. The parameters get added to the query string correctly, each one as a single param.

You can verify the misbehavior by entering sthg along the lines:


./wuzz 'https://some-url.com?filter=1&uuid=ba8ff440-823d-11e4-843e-be5cc84539f9&uuid=31d587e1-2df0-11e4-b57e-1ef9c74539f9'

this will concatenate the two uuids as one string in the upstream version and is fixed by this pull request.