Severity by source
CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:L/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
Remote unauthenticated case-flip bypass of routeRules middleware over HTTP yields AV:N/AC:L/PR:N/UI:N; primary impact is exposing gated content (C:H) with limited integrity effect from missed redirects/headers (I:L) and no availability impact.
Primary rating from Vendor (GitHub_M).
CVSS VectorVendor: GitHub_M
Lifecycle Timeline
3DescriptionCVE.org
Nuxt is an open-source web development framework for Vue.js. From versions 3.11.0 to before 3.21.7 and 4.0.0 to before 4.4.7, there is a route-rule middleware bypass via case-sensitivity mismatch between vue-router and the routeRules matcher. This issue has been patched in versions 3.21.7 and 4.4.7.
AnalysisAI
Route-rule middleware bypass in Nuxt 3.11.0-3.21.6 and 4.0.0-4.4.6 allows remote attackers to evade routeRules-defined protections (authentication, redirects, headers, prerender/SSR controls) by simply varying URL case, because vue-router matches paths case-insensitively while the routeRules matcher matched case-sensitively. The fix in 3.21.7 and 4.4.7 lowercases the path before matching. EPSS is 0.02% and no public exploit is identified at time of analysis, but the underlying class is trivially abused once an asymmetric rule is known.
Technical ContextAI
Nuxt is a Vue.js meta-framework that layers server routing and middleware (route rules) on top of vue-router via the Nitro server. routeRules let developers attach behaviour - auth gates, redirects, security headers, SSR/prerender mode, caching - to URL patterns. Vue-router resolves incoming paths case-insensitively by default, but Nuxt's internal routeRulesMatcher (in packages/nitro-server/src/index.ts and packages/nuxt/src/app/composables/manifest.ts) compared the raw path, so /Admin and /admin would route to the same component yet only the lowercase form would pick up the protective rule. This is a textbook CWE-178 (Improper Handling of Case Sensitivity) normalization gap between two routing layers; the patch (commits 07e39cd and 3f3e3fa) normalizes the path with toLowerCase() before invoking the matcher, and a new regression test asserts case-insensitive matching mirrors vue-router behavior.
RemediationAI
Vendor-released patch: upgrade to Nuxt 3.21.7 on the 3.x line or 4.4.7 on the 4.x line, per advisory GHSA-mm7m-92g8-7m47 (https://github.com/nuxt/nuxt/security/advisories/GHSA-mm7m-92g8-7m47); the fix normalizes the path with toLowerCase() before routeRules matching so it aligns with vue-router's case-insensitive routing. If you cannot upgrade immediately, mitigate by adding lowercase-equivalent entries for every security-relevant routeRule (e.g. duplicate '/Admin/' alongside '/admin/'), or place a reverse proxy / edge middleware in front of Nuxt that lowercases the request path before it reaches the app - note the proxy approach can break case-sensitive backends or signed URLs that depend on exact casing, and the duplicate-rules approach is brittle and easy to miss for new routes.
Code Injection in GitHub repository nuxt/nuxt prior to 3.5.3. Rated critical severity (CVSS 9.8), this vulnerability is
Nuxt is a free and open-source framework to create full-stack web applications and websites with Vue.js. Rated high seve
Nuxt is a free and open-source framework to create full-stack web applications and websites with Vue.js. Rated high seve
Nuxt is a free and open-source framework to create full-stack web applications and websites with Vue.js. Rated high seve
Nuxt is a free and open-source framework to create full-stack web applications and websites with Vue.js. Rated medium se
Cross-site Scripting (XSS) - Generic in GitHub repository nuxt/framework prior to 3.2.1. Rated medium severity (CVSS 6.1
Use of Hard-coded Credentials in GitHub repository nuxtlabs/github-module prior to 1.6.2. Rated critical severity (CVSS
Authentication/authorization bypass in Clerk's official JavaScript SDKs (@clerk/nextjs, @clerk/nuxt, @clerk/astro, and t
Nuxt is an open-source web development framework for Vue.js. Rated high severity (CVSS 7.5), this vulnerability is remot
Nuxt is an open-source web development framework for Vue.js. Rated low severity (CVSS 3.1), this vulnerability is remote
Information disclosure in Nuxt's development server exposes the project's absolute filesystem root path and a persistent
Nuxt's development server on Linux exposes an unprotected vite-node IPC server via a Linux abstract-namespace Unix socke
Same weakness CWE-178 – Improper Handling of Case Sensitivity
View allSame technique Authentication Bypass
View allShare
External POC / Exploit Code
Leaving vuln.today
EUVD-2026-36427
GHSA-mm7m-92g8-7m47