VDB
KO
HIGH 7.5

GHSA-v2hh-gcrm-f6hx

fast-uri vulnerable to host confusion via literal backslash authority delimiter

Quick fix

GHSA-v2hh-gcrm-f6hx — fast-uri: upgrade to the fixed version with the command below.

npm install fast-uri@2.4.3

Details

### Impact

`fast-uri` v4.1.0 and earlier do not treat a literal backslash (U+005C) as an authority delimiter. Node's native WHATWG `URL` (used by `fetch()`, `undici`, and Node's `http`/`https` clients) normalizes `\` to `/` for special schemes (`http`, `https`, `ws`, `wss`, `ftp`, `file`), so the two parsers extract different hosts from the same input string.

For example, `http://evil.com\@allowed.com` is treated by `fast-uri` as host `allowed.com` with userinfo `evil.com\`, while Node's WHATWG URL parser and `fetch()` see host `evil.com` with path `/@allowed.com`.

Applications that use `fast-uri` to enforce host-based policy (allowlists, denylists, loopback/SSRF filtering, redirect validation, outbound proxy routing) before passing the same URL into Node's URL or `fetch()` consumers see a policy/use desync and can be steered to an unintended destination, including cloud metadata endpoints, loopback, or internal hosts.

### Patches

Upgrade to `fast-uri` v4.1.1, v3.1.4, or v2.4.3.

### Workarounds

None. Upgrade to the patched version.

Are you affected?

Enter the version of the package you're using.

Affected packages

npm / fast-uri
Introduced in: 2.3.1 Fixed in: 2.4.3
Fix npm install fast-uri@2.4.3
npm / fast-uri
Introduced in: 3.0.0 Fixed in: 3.1.4
Fix npm install fast-uri@3.1.4
npm / fast-uri
Introduced in: 4.0.0 Fixed in: 4.1.1
Fix npm install fast-uri@4.1.1

References