VYPR
Medium severity6.1NVD Advisory· Published Apr 9, 2026· Updated Apr 14, 2026

CVE-2026-39315

CVE-2026-39315

Description

Unhead is a document head and template manager. Prior to 2.1.13, useHeadSafe() is the composable that Nuxt's own documentation explicitly recommends for rendering user-supplied content in <head> safely. Internally, the hasDangerousProtocol() function in packages/unhead/src/plugins/safe.ts decodes HTML entities before checking for blocked URI schemes (javascript:, data:, vbscript:). The decoder uses two regular expressions with fixed-width digit caps. The HTML5 specification imposes no limit on leading zeros in numeric character references. When a padded entity exceeds the regex digit cap, the decoder silently skips it. The undecoded string is then passed to startsWith('javascript:'), which does not match. makeTagSafe() writes the raw value directly into SSR HTML output. The browser's HTML parser decodes the padded entity natively and constructs the blocked URI. This vulnerability is fixed in 2.1.13.

Affected packages

Versions sourced from the GitHub Security Advisory.

PackageAffected versionsPatched versions
unheadnpm
< 2.1.132.1.13

Affected products

1
  • cpe:2.3:a:unjs:unhead:*:*:*:*:*:node.js:*:*
    Range: <2.1.13

Patches

1
961ea781e091

Merge commit from fork

https://github.com/unjs/unheadFahad KhanApr 5, 2026via ghsa
1 file changed · +2 2
  • packages/unhead/src/plugins/safe.ts+2 2 modified
    @@ -16,8 +16,8 @@ const BlockedLinkRels = new Set(['canonical', 'modulepreload', 'prerender', 'pre
     
     const SafeAttrName = /^[a-z][a-z0-9\-]*[a-z0-9]$/i
     
    -const HtmlEntityHex = /&#x([0-9a-f]{1,6});?/gi
    -const HtmlEntityDec = /&#(\d{1,7});?/g
    +const HtmlEntityHex = /&#x([0-9a-f]+);?/gi
    +const HtmlEntityDec = /&#(\d+);?/g
     const HtmlEntityNamed = /&(tab|newline|colon|semi|lpar|rpar|sol|bsol|comma|period|excl|num|dollar|percnt|amp|apos|ast|plus|lt|gt|equals|quest|at|lsqb|rsqb|lcub|rcub|vert|hat|grave|tilde|nbsp);?/gi
     // eslint-disable-next-line no-control-regex
     const ControlChars = /[\x00-\x20]+/g
    

Vulnerability mechanics

Generated by null/stub on May 9, 2026. Inputs: CWE entries + fix-commit diffs from this CVE's patches. Citations validated against bundle.

References

5

News mentions

0

No linked articles in our index yet.