Lucene search

K
osvGoogleOSV:GHSA-GMV4-R438-P67F
HistoryMar 03, 2022 - 7:23 p.m.

Leading white space bypasses protocol validation

2022-03-0319:23:36
Google
osv.dev
18
protocol validation
leading whitespace
patched.

EPSS

0.001

Percentile

47.2%

Impact

Whitespace characters are not removed from the beginning of the protocol, so URLs are not parsed properly and protocol validation mechanisms may fail.

Patches

Patched in 1.19.9

Workarounds

Remove leading whitespace from values before passing them to URI.parse (e.g. via .href(value) or new URI(value)), e.g. by using

function remove_whitespace(url){
     const whitespace = /^[\x00-\x20\u00a0\u1680\u2000-\u200a\u2028\u2029\u202f\u205f\u3000\ufeff]+/;
     url = url.replace(whitespace, '')
     return url
}

References

For more information

If you have any questions or comments about this advisory: