We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
11.1.3
12.16.3
14.2.0
macOS 10.15.4
Similar to #1234, basic auth values are not decoded before sending to http.request, resulting in authentication failure.
http.request
These send "%3Duser" and "%3Dpass" to http.request:
const url = new URL('http://host'); url.username = '=user'; url.password = '=pass'; got(new URL(url));
got({ password: '=user', url: 'http://host', username: '=user' });
const url = new URL('http://host'); got(`${url.protocol}//=user:=pass@${url.host}`);
The text was updated successfully, but these errors were encountered:
Duplicate of #1169
Sorry, something went wrong.
No branches or pull requests
Describe the bug
11.1.3
12.16.3
and14.2.0
macOS 10.15.4
Similar to #1234, basic auth values are not decoded before sending to
http.request
, resulting in authentication failure.Code to reproduce
These send "%3Duser" and "%3Dpass" to
http.request
:Checklist
The text was updated successfully, but these errors were encountered: