Cyber Resilience

CVE-2026-45669

XSS in Nuxt 3.4.3 – 3.21.6

Public PoCXSS
Published
12 June 2026
Modified
17 June 2026
Patch / advisory
CVSS Score v4 5.3
Click a component to see what it means
Raw vectorCVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:L/VI:L/VA:N/SC:L/SI:L/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
EPSS Score 0.0016 6th percentile
Risk Priority 35 floored blend · peak EPSS

Summary

CVE-2026-45669 is a medium-severity Improper Neutralization of Script in Attributes in a Web Page (CWE-83) vulnerability in Nuxt Nuxt. Its CVSS base score is 5.3 (Medium).

Operationally, exploitation aligns with the MITRE ATT&CK technique Content Injection (T1659); ranked at the 6th percentile by exploit likelihood (below the median); it is not currently listed in the CISA KEV catalog; a public proof-of-concept is referenced.

The strongest mitigations our analysis identified map to SI-10 (Information Input Validation) and SI-15 (Information Output Filtering) — see the control section below for these in your framework.

OWASP Top 10 for Web (2025)

EU & UK References

Vulnerability Data

Nuxt is an open-source web development framework for Vue.js. From versions 3.4.3 to before 3.21.6 and 4.0.0-alpha.1 to before 4.4.6, navigateTo() with external: true generates a server-side HTML redirect body containing a <meta http-equiv="refresh"> tag. The destination URL is only…

more

sanitized by replacing " with %22, leaving <, >, &, and ' unencoded. An attacker who can influence the URL passed to navigateTo(url, { external: true }) can break out of the content="…" attribute and inject arbitrary HTML/JavaScript that executes under the application's origin. This issue has been patched in versions 3.21.6 and 4.4.6.

CWE(s)

Related Threats

MITRE ATT&CK Enterprise Techniques

T1659 Content Injection Initial Access
Adversaries may gain access and continuously communicate with victims by injecting malicious content into systems through online network traffic.
T1189 Drive-by Compromise Initial Access
Adversaries may gain access to a system through a user visiting a website over the normal course of browsing.
Derived from this CVE’s CWE(s) via the direct CWE→ATT&CK cross-walk.

CVEs Like This One

CVE-2026-53722Same product: Nuxt Nuxt
CVE-2026-56698Same product: Nuxt Nuxt
CVE-2023-0878Same product: Nuxt Nuxt
CVE-2024-34343Same product: Nuxt Nuxt
CVE-2026-56317Same product: Nuxt Nuxt
CVE-2026-56301Same product: Nuxt Nuxt
CVE-2026-53721Same product: Nuxt Nuxt
CVE-2024-23657Same product: Nuxt Nuxt
CVE-2026-56326Same product: Nuxt Nuxt
CVE-2024-42352Same product: Nuxt Nuxt

Affected Assets

nuxt
nuxt
3.4.3 — 3.21.6 · 4.0.0 — 4.4.6

Mitigating Controls

Control response

Prevent
Stop it (NIST 800-53)

Detect
Catch it (NIST detect / respond)

Harden
Shrink the surface (DISA STIG)

Validate
Prove the fix (OWASP ASVS)
  • V1.3.4

Mitigating Controls (NIST 800-53 r5) AI

Input validation can reject or sanitize dangerous javascript: URIs and event-handler attributes before they reach rendered pages.

Output filtering directly neutralizes script content in HTML attributes, stopping the exact injection vector described by the CWE.

Mitigating Controls (NIST CSF 2.0) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→CSF cross-walk (authority under review) — links open the control.

PR.PS-06 mostly match
prevents

Secure SDLC practices directly require output encoding and attribute neutralization to prevent this class of XSS.

Mitigating Controls (ISO/IEC 27001:2022 Annex A) AI

Derived directly from the weakness types (CWEs) cited in the NVD entry via our AI-authored CWE→ISO cross-walk (authority under review) — links open the control.

prevents

Secure coding standards require proper escaping of untrusted data in HTML attributes, directly eliminating CWE-83.

finds

Security testing in development catches attribute-injection flaws before release but does not itself implement the fix.

prevents

Secure SDLC mandates input validation and output encoding that directly prevents script injection in HTML attributes.

prevents

Application security requirements explicitly call for controls against injection flaws including attribute-based script injection.

prevents

Secure architecture principles reduce attack surface but do not prescribe the specific neutralization techniques needed.

References