Skip to content
This repository has been archived by the owner on Aug 29, 2024. It is now read-only.

Corrupts query strings with %25 → %2525 → %252525 → ⋯ #4

Open
andersk opened this issue Jan 2, 2020 · 0 comments
Open

Corrupts query strings with %25 → %2525 → %252525 → ⋯ #4

andersk opened this issue Jan 2, 2020 · 0 comments

Comments

@andersk
Copy link

andersk commented Jan 2, 2020

>>> url = 'http://example.com/?q=%25'
>>> url = Url.validateUrl(url, Options())['cleanUrl']; url
'http://example.com/?q=%2525'
>>> url = Url.validateUrl(url, Options())['cleanUrl']; url
'http://example.com/?q=%252525'
>>> url = Url.validateUrl(url, Options())['cleanUrl']; url
'http://example.com/?q=%25252525'
>>> url = Url.validateUrl(url, Options())['cleanUrl']; url
'http://example.com/?q=%2525252525'
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant