You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The process of decoding and re-encoding the querystring does not correctly handle encoded occurrences of = and &, and leaves them unencoded in the resulting URI.
For example,
client.get("foo?bar=baz%3Dqux%26quux")
will result in the client making this request:
GET /foo?bar=baz=qux&quux HTTP/1.1
It should be this:
GET /foo?bar=baz%3Dqux%26quux HTTP/1.1
The text was updated successfully, but these errors were encountered:
The process of decoding and re-encoding the querystring does not correctly handle encoded occurrences of
=
and&
, and leaves them unencoded in the resulting URI.For example,
will result in the client making this request:
It should be this:
The text was updated successfully, but these errors were encountered: