-
Notifications
You must be signed in to change notification settings - Fork 29.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
http: decodes url.username and url.password for authorization header
This change properly decodes the url.username and url.password for the authorization header constructed from the URL object for http(s) requests. Fixes: #31439 PR-URL: #39310 Reviewed-By: Matteo Collina <matteo.collina@gmail.com> Reviewed-By: Robert Nagy <ronagy@icloud.com> Reviewed-By: James M Snell <jasnell@gmail.com>
- Loading branch information
1 parent
2129ad6
commit 54dd3df
Showing
4 changed files
with
60 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
'use strict'; | ||
require('../common'); | ||
const assert = require('assert'); | ||
const http = require('http'); | ||
|
||
const testCases = [ | ||
{ | ||
username: 'test@test"', | ||
password: '123456^', | ||
expected: 'dGVzdEB0ZXN0IjoxMjM0NTZe' | ||
}, | ||
{ | ||
username: 'test%40test', | ||
password: '123456', | ||
expected: 'dGVzdEB0ZXN0OjEyMzQ1Ng==' | ||
}, | ||
{ | ||
username: 'not%3Agood', | ||
password: 'god', | ||
expected: 'bm90Omdvb2Q6Z29k' | ||
}, | ||
{ | ||
username: 'not%22good', | ||
password: 'g%5Eod', | ||
expected: 'bm90Imdvb2Q6Z15vZA==' | ||
}, | ||
{ | ||
username: 'test1234::::', | ||
password: 'mypass', | ||
expected: 'dGVzdDEyMzQ6Ojo6Om15cGFzcw==' | ||
}, | ||
]; | ||
|
||
for (const testCase of testCases) { | ||
const server = http.createServer(function(request, response) { | ||
// The correct authorization header is be passed | ||
assert.strictEqual(request.headers.authorization, `Basic ${testCase.expected}`); | ||
response.writeHead(200, {}); | ||
response.end('ok'); | ||
server.close(); | ||
}); | ||
|
||
server.listen(0, function() { | ||
// make the request | ||
const url = new URL(`http://${testCase.username}:${testCase.password}@localhost:${this.address().port}`); | ||
http.request(url).end(); | ||
}); | ||
} |