๐Ÿ” CVE Alert

CVE-2026-86472

MEDIUM 4.8

fast-uri vulnerable to inconsistent host case normalization via percent-encoded octets

CVSS Score
4.8
EPSS Score
0.0%
EPSS Percentile
0th

fast-uri is a dependency-free RFC 3986 URI parser for Node.js, used by Fastify and ajv. In versions before 2.4.7, from 3.0.0 through 3.1.7, and from 4.0.0 through 4.1.4, fast-uri folds the host to lowercase before it percent-decodes the host, so a percent-encoded uppercase octet such as %41 decodes to a literal A that is never folded. For a scheme-relative reference such as //host there is no scheme, so the host canonicalization that would normally repair this does not run, and parse, normalize, and equal then disagree on the same host. An application that makes a case-sensitive host decision on fast-uri output, for example a host allowlist or denylist that compares the parsed host or uses equal, can be steered past the check with a percent-encoded uppercase octet, and because hostnames are case-insensitive in DNS and HTTP the evading spelling still reaches the host the check meant to gate. The issue is fixed in fast-uri 2.4.7, 3.1.8, and 4.1.5, and users should upgrade to one of those versions or later. As a workaround, compare hosts case-insensitively by lowercasing the parsed host before any allowlist or denylist decision.

CWE CWE-178
Vendor fast-uri
Product fast-uri
Published Sep 15, 2026
Last Updated Sep 15, 2026
Stay Ahead of the Next One

Get instant alerts for fast-uri fast-uri

Be the first to know when new medium vulnerabilities affecting fast-uri fast-uri are published โ€” delivered to Slack, Telegram or Discord.

Get Free Alerts โ†’ Free ยท No credit card ยท 60 sec setup

CVSS v3 Breakdown

CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:L/A:N
Attack Vector
Attack Complexity
Privileges Required
User Interaction
Scope
Confidentiality
Integrity
Availability

Affected Versions

fast-uri / fast-uri
0 < 2.4.7 3.0.0 < 3.1.8 4.0.0 < 4.1.5

References

NVD โ†— CVE.org โ†— EPSS Data โ†—
github.com: https://github.com/fastify/fast-uri/security/advisories/GHSA-hrr3-gc8f-f4qj cna.openjsf.org: https://cna.openjsf.org/security-advisories.html

Credits

๐Ÿ” fg0x0 mcollina UlisesGascon