Zurück zur Liste

Decimal: Unbounded exponent in `Decimal.new` enables unauthenticated DoS — CVE-2026-32686

GitHub · GitHub · CVE-2026-32686

ID
CVE-2026-32686
Datum
Activity
Quelle
GitHub
Vendor
GitHub
Risiko
medium
CVSS
6.9
EPSS
0.00071

Zusammenfassung

Summary `decimal` doesn't bound the exponent on parsed input, so something like `"1e10000000"` is parsed fine but then explodes the memory to more than 7GB if you run e.g. `Decimal.add(Decimal.parse("1e10000000"), 1)` because for positive `exp`, the function tail-recurses with `coef * 10` and `exp - 1` per iteration, growing the bignum coefficient by one digit each step. In the worst case, one request is enough to…

Produkt

erlang: decimal

Was tun?

Allgemeine, vorsichtige Schritte (bitte prüfe die offizielle Quelle für Details):

  • Prüfe Exponierung und plane Maßnahmen nach Risiko und Umfeld.
  • Identifiziere betroffene Produktversionen und prüfe, ob du betroffen bist.
  • Spiele Hersteller-Updates/Patches ein oder setze empfohlene Mitigations um.
  • Lies das offizielle Advisory für betroffene Versionen und konkrete Schritte.

Offizielles Advisory

Mehr dazu