Skip to content

Commit 962a8ec

Browse files
Trottdanielleadams
authored andcommitted
url: trim leading and trailing C0 control chars
Emulate the WHATWHG URL parse behavior of trimming leading and trailing C0 control characters. This moves url.parse() slightly closer to WHATWHG URL behavior. The current behavior is possibly insecure for some uses. (The url.parse() API is marked as Legacy and the documentation specifically says it has known bugs and insecure behaviors. Still this change makes a lot of sense.) This issue was reported by P0cas. https://github.com/P0cas PR-URL: #42196 Reviewed-By: Luigi Pinca <[email protected]> Reviewed-By: Darshan Sen <[email protected]> Reviewed-By: Matteo Collina <[email protected]> Reviewed-By: Mestery <[email protected]> Reviewed-By: Anto Aravinth <[email protected]> Reviewed-By: Anna Henningsen <[email protected]>
1 parent c5da1dd commit 962a8ec

File tree

2 files changed

+16
-6
lines changed

2 files changed

+16
-6
lines changed

lib/url.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,6 @@ const {
116116
CHAR_TAB,
117117
CHAR_CARRIAGE_RETURN,
118118
CHAR_LINE_FEED,
119-
CHAR_FORM_FEED,
120119
CHAR_NO_BREAK_SPACE,
121120
CHAR_ZERO_WIDTH_NOBREAK_SPACE,
122121
CHAR_HASH,
@@ -181,11 +180,7 @@ Url.prototype.parse = function parse(url, parseQueryString, slashesDenoteHost) {
181180
const code = url.charCodeAt(i);
182181

183182
// Find first and last non-whitespace characters for trimming
184-
const isWs = code === CHAR_SPACE ||
185-
code === CHAR_TAB ||
186-
code === CHAR_CARRIAGE_RETURN ||
187-
code === CHAR_LINE_FEED ||
188-
code === CHAR_FORM_FEED ||
183+
const isWs = code < 33 ||
189184
code === CHAR_NO_BREAK_SPACE ||
190185
code === CHAR_ZERO_WIDTH_NOBREAK_SPACE;
191186
if (start === -1) {

test/parallel/test-url-parse-format.js

+15
Original file line numberDiff line numberDiff line change
@@ -977,6 +977,21 @@ const parseTests = {
977977
path: '/everybody',
978978
href: '//[email protected]/everybody#to-the-limit'
979979
},
980+
981+
'\bhttp://example.com/\b': {
982+
protocol: 'http:',
983+
slashes: true,
984+
auth: null,
985+
host: 'example.com',
986+
port: null,
987+
hostname: 'example.com',
988+
hash: null,
989+
search: null,
990+
query: null,
991+
pathname: '/',
992+
path: '/',
993+
href: 'http://example.com/'
994+
}
980995
};
981996

982997
for (const u in parseTests) {

0 commit comments

Comments
 (0)