js-toml

CVE-2026-50029

CVE-2026-50029 is a medium-severity security vulnerability in js-toml (npm), affecting versions <= 1.1.1. It is fixed in 1.1.2.

Key facts
CVSS score
5.3
Medium
Attack vector
Network
Issuing authority
GitHub Advisory Database
Affected package
js-toml
Fixed in
1.1.2
Disclosed
2026

Summary

Summary js-toml's interpreter checks whether a key already exists in a parser-built container with if (object[key]) instead of if (key in object). When the prior value is a falsy primitive, false, 0, 0n, 0.0, -0, or "", the duplicate-key branch is skipped and the value is silently overwritten by a later sub-table, dotted-key sub-table, or array-of-tables sharing the same name. Per the TOML 1.0.0 spec ("Defining a key multiple times is invalid"; "You cannot define any key or table more than once"), this should be a parse error. The result is structural type confusion of attacker-named keys in the value returned by load(). A boolean-typed false (or numeric 0) becomes a truthy object. Host applications that gate behavior on if (config.flag), if (!user.banned), if (config.allowDelete), or if (config.publicMode) will silently take the truthy branch. This is distinct from GHSA-65fc-cr5f-v7r2 (the 1.0.2 prototype-pollution fix). Object.prototype is not polluted. The Object.create(null) mitigation from 1.0.2 is intact; the bug here is in the duplicate-key state machine, not in container construction. Details Two truthy checks are wrong: src/load/interpreter.ts:214, Interpreter.tryCreatingObject src/load/interpreter.ts:278, Interpreter.getOrCreateArray Both should use the in operator. Containers are created via Object.create(null), so in is unambiguous (no inherited keys to worry about). The bug is reachable through every parent-walking interpreter path: assignValue, dotted keys in key = value createTable, [stdTable] headers getOrCreateArray, [[arrayOfTables]] headers PoC Impact Spec-violating input acceptance leading to structural type confusion. (CWE-697) Suggested fix in src/load/interpreter.ts

Impact

Severity and exposure

CVE-2026-50029 has a CVSS score of 5.3 (Medium). The vector is network-reachable, no privileges required, and no user interaction. A CVSS score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether this affects your application depends on whether the vulnerable code is present and reachable in your environment.

A fixed version is available (1.1.2). Upgrading removes the vulnerable code path.

Affected versions

npm

  • js-toml (<= 1.1.1)

Security releases

  • js-toml → 1.1.2 (npm)
Kodem intelligence

Severity tells you how bad this could be in the worst case. It does not tell you whether you are exposed. Exploitability and impact are functions of runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A vulnerable package can sit in your dependency tree and never run.

Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter instead of chasing every advisory.

Kodem's runtime-powered SCA identifies whether CVE-2026-50029 is reachable in your applications. Explore open-source security for your team.

See if CVE-2026-50029 is reachable in your applications. Get a demo

Already deployed Kodem? See CVE-2026-50029 in your environment

Remediation advice

Upgrade js-toml to 1.1.2 or later to resolve this vulnerability.

Kodem Kai can prioritize this vulnerability in your dependency tree and generate a fix recommendation.

Frequently asked questions about CVE-2026-50029

What is CVE-2026-50029?

CVE-2026-50029 is a medium-severity security vulnerability in js-toml (npm), affecting versions <= 1.1.1. It is fixed in 1.1.2.

How severe is CVE-2026-50029?

CVE-2026-50029 has a CVSS score of 5.3 (Medium). This score reflects the worst-case severity of the vulnerability, not your specific exposure. Whether it represents real risk in your environment depends on whether the vulnerable code is present and reachable.

Which versions of js-toml are affected by CVE-2026-50029?

js-toml (npm) versions <= 1.1.1 is affected.

Is there a fix for CVE-2026-50029?

Yes. CVE-2026-50029 is fixed in 1.1.2. Upgrade to this version or later.

Is CVE-2026-50029 exploitable, and should I be worried?

Whether CVE-2026-50029 is exploitable in your environment depends on whether the vulnerable code is present and reachable. A CVSS score is a worst-case rating; it does not account for your specific deployment, configuration, or usage patterns. Kodem, an Intelligent Application Security platform, uses runtime intelligence to show which vulnerabilities actually execute in production, so you can focus on the ones that represent real risk. Get a demo

What actually determines whether CVE-2026-50029 is exploitable, and how bad it is?

Exploitability and impact are not fixed properties of a CVE. They depend on runtime truth: whether the vulnerable code is present, reachable, and actually executes in your application. A high CVSS score on a dependency that never runs is not the same as real risk. Kodem, an Intelligent Application Security platform, uses runtime intelligence to reveal which vulnerabilities actually execute in production, so teams prioritize the ones that genuinely matter.

How do I fix CVE-2026-50029?

Upgrade js-toml to 1.1.2 or later.

Stop the waste.
Protect your environment with Kodem.