Bug 2494197 (CVE-2026-13676)

Summary: CVE-2026-13676 fast-uri: fast-uri: Security policy bypass due to improper Unicode hostname canonicalization
Product: [Other] Security Response Reporter: OSIDB Bzimport <bzimport>
Component: vulnerabilityAssignee: Product Security <prodsec-ir-bot>
Status: NEW --- QA Contact:
Severity: high Docs Contact:
Priority: high    
Version: unspecifiedCC: aazores, abarbaro, abrianik, alizardo, anpicker, anthomas, ataylor, bbrownin, bdettelb, bparees, brasmith, cdrage, cmah, cochase, dbruscin, dhanak, dkeler, doconnor, dranck, drosa, dschmidt, dsimansk, dymurray, eaguilar, ebaron, ehelms, ehugonne, ewittman, fdeutsch, ggainey, ggrzybek, gparvin, hasun, ibolton, janstey, jchui, jfula, jhe, jkoehler, jlanda, jmatthew, jmontleo, jolong, jowilson, jpasqual, jraez, juwatts, jwong, kaycoth, kingland, kshier, ktsao, kvanderr, lphiri, manissin, mhulan, mnovotny, mstipich, nboldt, nipatil, nmoumoul, nyancey, oaljalju, omaciel, ometelka, oramraz, osousa, pahickey, pantinor, parichar, pcreech, pgaikwad, pjindal, psrna, ptisnovs, rchan, rekumar, rexwhite, rhaigner, rhel-process-autobot, rjohnson, rkubis, rushinde, sausingh, sdawley, simaishi, slucidi, smallamp, smullick, sseago, stcannon, sthirugn, stirabos, suppawar, syedriko, tasato, teagle, thason, tmalecek, ttakamiy, vvoronko, watson-tool-maintainers, xdharmai, yguenane
Target Milestone: ---Keywords: Security
Target Release: ---   
Hardware: All   
OS: Linux   
Whiteboard:
Fixed In Version: Doc Type: ---
Doc Text:
A flaw was found in fast-uri. This vulnerability occurs because fast-uri fails to properly convert Unicode (Internationalized Domain Name - IDN) hostnames for HTTP-family URLs. This can lead to a situation where security policies, such as denylists or redirect validations, are bypassed when applications use fast-uri to enforce these policies before passing the URL to another parser. A remote attacker could exploit this to circumvent security controls and potentially access unauthorized resources or perform malicious redirects.
Story Points: ---
Clone Of: Environment:
Last Closed: Type: ---
Regression: --- Mount Type: ---
Documentation: --- CRM:
Verified Versions: Category: ---
oVirt Team: --- RHEL 7.3 requirements from Atomic Host:
Cloudforms Team: --- Target Upstream Version:
Embargoed:
Bug Depends On: 2494503, 2494504, 2494506, 2494508, 2494509, 2494510, 2494512, 2494513, 2494528, 2494502, 2494505, 2494507, 2494511    
Bug Blocks:    

Description OSIDB Bzimport 2026-06-29 14:02:19 UTC
fast-uri versions 2.3.1 through 3.1.2 and 4.0.0 fail to canonicalize Unicode (IDN) hostnames for HTTP-family URLs. The IDN conversion path calls a helper that does not exist on the global URL constructor, silently leaving the host in its original Unicode form while normalize() and equal() still return values that differ from a WHATWG-compatible URL parser. Applications that use fast-uri to enforce host-based policy (denylists, loopback filtering, redirect validation, outbound proxy routing) before passing the same URL to Node's URL or fetch can be bypassed when the two implementations resolve the same input to different hosts. Patches: upgrade to fast-uri 3.1.3 for the 3.x line or 4.0.1 for the 4.x line. Workarounds: enforce host policy using the same URL parser used for the actual request, or reject non-ASCII hosts before policy checks.