Not a U.S. government website. NDD is an independent vulnerability database by Volerion and is not affiliated with or endorsed by NIST or NVD.
VOLERION
Volerion Security Research

NOT DEFERRED DATABASE

VULNERABILITIES

CVE-2026-54639 Details

ANALYZED


This CVE record has been analyzed and enriched by NVDAPI.com as an independent party.

Description

Style Dictionary, a build system for creating cross-platform styles, has a prototype pollution vulnerability starting in version 4.3.0 and prior to version 5.4.4. Impact users have: direct usage of `convertTokenData(tokens, { output: 'object' });`; indirect usage, via using Expand API; and/or indirect usage via SD's transform lifecycle. Impact is high for this when style-dictionary is used as an integration in a NodeJS server application. Impact is moderate for when style-dictionary is used as an integration in a Web application. Impact is low for most common cases where the user of style-dictionary also maintains the tokens, and access is limited via read/write access to the repository/workflows where it is used. A patch has been published in version `5.4.4`. The only known workaround is to sanitize token data first. Whether using DTCG format or old Style Dictionary format, check the token data object recursively for any object keys that include `__proto__`.

Metrics

References to Advisories, Solutions, and Tools

By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.

Weakness Enumeration

CWE-IDCWE NameSource
CWE-1321Improperly Controlled Modification of Object Prototype Attributes ('Prototype Pollution')[email protected]

Affected Products

ProductVersions
Style Dictionary
>= 4.3.0, < 5.4.4 (semver)

CPE

  • No CPEs found in CPE dictionary for this product.

Remediation

  • Upgrade: 5.4.4moderate effort
  • Workaround:low effort

    Sanitize token data by recursively checking the token data object for any object keys that include '__proto__'. This can be done with the StyleDictionary instance by setting expand to false: const sd = new StyleDictionary({ expand: false }); if (sd.allTokens.some(tok => tok.key.includes('__proto__'))) { throw new Error('Found malicious token key, attempting to do prototype pollution.'); }

Change History

2 change records found show changes


QUICK INFO

CVE Dictionary Entry:
CVE-2026-54639
NVD Published Date:
Jun 24, 2026
NVD Last Modified:
Jun 25, 2026
Source:
[email protected]
CVE-2026-54639 Details - Not Deferred