GHSA-7w5x-hrqm-74c2

Suggest an improvement
Source
https://github.com/advisories/GHSA-7w5x-hrqm-74c2
Import Source
https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-7w5x-hrqm-74c2/GHSA-7w5x-hrqm-74c2.json
JSON Data
https://api.osv.dev/v1/vulns/GHSA-7w5x-hrqm-74c2
Aliases
Downstream
Published
2026-09-09T18:07:11Z
Modified
2026-09-09T18:15:04Z
Severity
  • 8.2 (High) CVSS_V4 - CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N CVSS Calculator
Summary
smol-toml: Denial of Service via malformed TOML documents
Details

Summary

parse() can be forced into an infinite loop when a value inside an array or inline table is followed by a comment that has no trailing newline (i.e. the comment "ends" the document).

The library fails to exit an internal loop when attempting to find the end of the structure, resetting its cursor to the beginning of the string instead. This causes the parser to indefinitely hang, compromising the availability of the service.

Proof of concept

import { parse } from 'smol-toml'
parse('a=[1 #')   // never returns; CPU pinned at 100%

Impact

Applications which parse arbitrary TOML documents can suffer major availability issues if they receive malicious input. This issue is particularly severe for these use-cases, and it is strongly advised to upgrade to an up-to-date version of the library as soon as possible.

If your use-case does not involve parsing arbitrary TOML documents from untrusted sources, the impact is much lower in practice, although it's still advisable to update to version 1.7.1.

Patches

Version 1.7.1 properly breaks out of the loop in these situations and throws the expected TomlError.

Workarounds

None that don't involve refactors. Update the library as soon as possible if your use-case involves parsing arbitrary TOML documents from untrusted sources.

Reported By : Ravindu Lakmina Munaweera

Database specific
{
    "cwe_ids": [
        "CWE-606",
        "CWE-835"
    ],
    "github_reviewed": true,
    "github_reviewed_at": "2026-09-09T18:07:11Z",
    "nvd_published_at": "2026-09-04T16:18:23Z",
    "severity": "HIGH"
}
References

Affected packages

npm / smol-toml

Package

Affected ranges

Type
SEMVER
Events
Introduced
0 Unknown introduced version / All previous versions are affected
Fixed
1.7.1

Database specific

last_known_affected_version_range
"<= 1.7.0"
source
"https://github.com/github/advisory-database/blob/main/advisories/github-reviewed/2026/09/GHSA-7w5x-hrqm-74c2/GHSA-7w5x-hrqm-74c2.json"