Fix cookie parsing removing extra =
#44218
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
When parsing a cookie, extra
=
characters are removed, when only the first should be removed.e.g. with the cookie
csrf_token_ae6261a96213c493a37ea69489ee39c8bc33a53cda7d95f84efa53146145d09c=lnQptRUO/gpU26e8ZKpGIFHKqtP54vVfR7RBiph8Uc0=
You would expect:
key:
csrf_token_ae6261a96213c493a37ea69489ee39c8bc33a53cda7d95f84efa53146145d09c
value:
lnQptRUO/gpU26e8ZKpGIFHKqtP54vVfR7RBiph8Uc0=
If you use
split
, it will remove the last=
in value, so you get:key:
csrf_token_ae6261a96213c493a37ea69489ee39c8bc33a53cda7d95f84efa53146145d09c
value:
lnQptRUO/gpU26e8ZKpGIFHKqtP54vVfR7RBiph8Uc0
This is because
split
still removes all=
characters, even if you use thelimit
parameter to limit it to the first 2 elements (as in the existing code).Solution is to not use
split
(I've usedslice
instead)Bug
fixes #number
contributing.md