VYPR

Js Toml

by Sunnyadn

Source repositories

CVEs (3)

  • CVE-2026-49293HigJun 19, 2026
    risk 0.42cvss 7.5epss 0.01

    js-toml is a TOML parser for JavaScript, fully compliant with the TOML 1.0.0 Spec. Versions up to and including 1.1.0 parse hexadecimal / octal / binary integer literals via a hand-written `parseBigInt` loop that multiplies a `BigInt` accumulator by the radix once per input…

  • CVE-2025-54803HigAug 5, 2025
    risk 0.42cvss 7.5epss 0.01

    js-toml is a TOML parser for JavaScript, fully compliant with the TOML 1.0.0 Spec. In versions below 1.0.2, a prototype pollution vulnerability in js-toml allows a remote attacker to add or modify properties of the global Object.prototype by parsing a maliciously crafted TOML…

  • CVE-2026-50029MedAug 14, 2026
    risk 0.27cvss 5.3epss 0.00

    js-toml is a TOML parser for JavaScript, Prior to version 1.1.2, the 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`,…