CVE-2022-0691
MEDIUM6.5EPSS 0.09%url-parse incorrectly parses hostname / protocol due to unstripped leading control characters.
描述
Leading control characters in a URL are not stripped when passed into url-parse. This can cause input URLs to be mistakenly be interpreted as a relative URL without a hostname and protocol, while the WHATWG URL parser will trim control characters and treat it as an absolute URL. If url-parse is used in security decisions involving the hostname / protocol, and the input URL is used in a client which uses the WHATWG URL parser, the decision may be incorrect. This can also lead to a cross-site scripting (XSS) vulnerability if url-parse is used to check for the javascript: protocol in URLs. See following example: ```js const parse = require('url-parse') const express = require('express') const app = express() const port = 3000 url = parse(\"\\bjavascript:alert(1)\") console.log(url) app.get('/', (req, res) => { if (url.protocol !== \"javascript:\") {res.send(\"<a href=\\'\" + url.href + \"\\'>CLICK ME!</a>\")} }) app.listen(port, () => { console.log(`Example app listening on port ${port}`) }) ```
受影響套件(2)
- Debian/node-url-parsefrom 0, < 1.5.3-1+deb11u1
- npm/url-parse>= 0.1.0, < 1.5.9
CVSS 分數
| 來源 | 版本 | 嚴重程度 | 向量 |
|---|---|---|---|
| osv | CVSS 3.1 | MEDIUM6.5 | CVSS:3.0/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:N |
參考連結(8)
- ADVISORYhttps://nvd.nist.gov/vuln/detail/CVE-2022-0691
- ADVISORYhttps://security-tracker.debian.org/tracker/CVE-2022-0691
- PATCHhttps://github.com/unshiftio/url-parse
- WEBhttps://github.com/github/advisory-database/pull/6765
- WEBhttps://github.com/unshiftio/url-parse/commit/0e3fb542d60ddbf6933f22eb9b1e06e25eaa5b63
- WEBhttps://huntr.dev/bounties/57124ed5-4b68-4934-8325-2c546257f2e4
- WEBhttps://lists.debian.org/debian-lts-announce/2023/02/msg00030.html
- WEBhttps://security.netapp.com/advisory/ntap-20220325-0006