GHSA-GMV4-R438-P67F
Vulnerability from github – Published: 2022-03-03 19:23 – Updated: 2022-03-11 20:04
VLAI?
Summary
Leading white space bypasses protocol validation
Details
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
- https://huntr.dev/bounties/82ef23b8-7025-49c9-b5fc-1bb9885788e5/
For more information
If you have any questions or comments about this advisory: * Open an issue in medialize/URI.js
Severity ?
5.3 (Medium)
{
"affected": [
{
"package": {
"ecosystem": "npm",
"name": "urijs"
},
"ranges": [
{
"events": [
{
"introduced": "0"
},
{
"fixed": "1.19.9"
}
],
"type": "ECOSYSTEM"
}
]
}
],
"aliases": [
"CVE-2022-24723"
],
"database_specific": {
"cwe_ids": [
"CWE-20"
],
"github_reviewed": true,
"github_reviewed_at": "2022-03-03T19:23:36Z",
"nvd_published_at": "2022-03-03T21:15:00Z",
"severity": "MODERATE"
},
"details": "### Impact\nWhitespace characters are not removed from the beginning of the protocol, so URLs are not parsed properly and protocol validation mechanisms may fail.\n\n### Patches\nPatched in 1.19.9\n\n### Workarounds\nRemove leading whitespace from values before passing them to URI.parse (e.g. via `.href(value)` or `new URI(value)`), e.g. by using\n\n```js\nfunction remove_whitespace(url){\n const whitespace = /^[\\x00-\\x20\\u00a0\\u1680\\u2000-\\u200a\\u2028\\u2029\\u202f\\u205f\\u3000\\ufeff]+/;\n url = url.replace(whitespace, \u0027\u0027)\n return url\n}\n```\n\n### References\n* https://huntr.dev/bounties/82ef23b8-7025-49c9-b5fc-1bb9885788e5/\n\n### For more information\nIf you have any questions or comments about this advisory:\n* Open an issue in [medialize/URI.js](https://github.com/medialize/URI.js/)\n",
"id": "GHSA-gmv4-r438-p67f",
"modified": "2022-03-11T20:04:26Z",
"published": "2022-03-03T19:23:36Z",
"references": [
{
"type": "WEB",
"url": "https://github.com/medialize/URI.js/security/advisories/GHSA-gmv4-r438-p67f"
},
{
"type": "ADVISORY",
"url": "https://nvd.nist.gov/vuln/detail/CVE-2022-24723"
},
{
"type": "WEB",
"url": "https://github.com/medialize/URI.js/commit/86d10523a6f6e8dc4300d99d671335ee362ad316"
},
{
"type": "WEB",
"url": "https://github.com/medialize/URI.js"
},
{
"type": "WEB",
"url": "https://github.com/medialize/URI.js/releases/tag/v1.19.9"
},
{
"type": "WEB",
"url": "https://huntr.dev/bounties/82ef23b8-7025-49c9-b5fc-1bb9885788e5"
}
],
"schema_version": "1.4.0",
"severity": [
{
"score": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N",
"type": "CVSS_V3"
}
],
"summary": "Leading white space bypasses protocol validation"
}
Loading…
Loading…
Sightings
| Author | Source | Type | Date |
|---|
Nomenclature
- Seen: The vulnerability was mentioned, discussed, or observed by the user.
- Confirmed: The vulnerability has been validated from an analyst's perspective.
- Published Proof of Concept: A public proof of concept is available for this vulnerability.
- Exploited: The vulnerability was observed as exploited by the user who reported the sighting.
- Patched: The vulnerability was observed as successfully patched by the user who reported the sighting.
- Not exploited: The vulnerability was not observed as exploited by the user who reported the sighting.
- Not confirmed: The user expressed doubt about the validity of the vulnerability.
- Not patched: The vulnerability was not observed as successfully patched by the user who reported the sighting.
Loading…
Loading…