Am I affected?

This record states its affected versions in a form that can't be compared automatically.

15.0 and up affected
15.2.7.11 not affected
16.4.0.4 not affected
17.0.4 not affected
every other version: unaffected

Description

Integer Underflow (Wrap or Wraparound) vulnerability in erlang otp erlang/otp (erts modules), erlang otp erts (erts modules) allows Forced Integer Overflow, Excessive Allocation. This vulnerability is associated with program files erts/emulator/beam/external.c, emulator/beam/external.c.

The BIT_BINARY_EXT tag (77) handler in the External Term Format (ETF) decoder accepts an encoding with both length and trailing-bits fields set to zero. The subsequent computation of the bitstring size underflows an unsigned integer, producing a value of roughly 2^64 that is then passed as a memory allocation size. The allocator aborts the entire node with a message such as Cannot allocate 2305843009213693951 bytes of memory (of type "binary").

The crash is a VM-level abort, not an Erlang-level exception. It cannot be intercepted by supervision trees, by try/catch, or by passing the [safe] option to binary_to_term/2 (which only restricts atom creation and does not perform structural validation of binary encodings).

Any application that decodes ETF from untrusted sources via binary_to_term/1,2 or enif_binary_to_term() is exposed. The Erlang distribution protocol also decodes incoming terms through the same code path, but distribution is expected to run on trusted networks per the OTP Secure Coding Guidelines (DSG-011).

This issue affects OTP from OTP 27.0 before OTP 29.0.4, OTP 28.5.0.4 and OTP 27.3.4.15, corresponding to erts from 15.0 before 17.0.4, 16.4.0.4 and 15.2.7.11.

Weaknesses & attack patterns

Weakness

CWE-191 · Integer Underflow (Wrap or Wraparound) in catalog → MITRE ↗
CWE-789 · Memory Allocation with Excessive Size Value in catalog → MITRE ↗
CWE-1284 · Improper Validation of Specified Quantity in Input in catalog → MITRE ↗

Attack patterns

CAPEC-92 · Forced Integer Overflow MITRE ↗
CAPEC-130 · Excessive Allocation MITRE ↗

Affected — Erlang / erts Repository ↗

15.0 and up affected
15.2.7.11 not affected
16.4.0.4 not affected
17.0.4 not affected
every other version: unaffected
default status unaffected
cpe cpe:2.3:a:erlang:erlang/otp:*:*:*:*:*:*:*:*
modules · source files · routines
modules erts
source files emulator/beam/external.c
routines erlang:binary_to_term/1 · erlang:binary_to_term/2

Affected — GitHub / erlang/otp Repository ↗

27.0 and up affected
27.3.4.15 not affected
28.5.0.4 not affected
29.0.4 not affected
24ef4cb < dc1bf93 affected
every other version: unaffected
default status unaffected
cpe cpe:2.3:a:erlang:erlang/otp:*:*:*:*:*:*:*:*
modules · source files · routines
modules erts
source files erts/emulator/beam/external.c
routines erlang:binary_to_term/1 · erlang:binary_to_term/2

Workarounds

Do not call binary_to_term/1,2 or enif_binary_to_term() on data from untrusted sources. The OTP Secure Coding Guidelines (DSG-011) recommend avoiding these functions altogether on untrusted input and using an alternative serialization format (for example JSON or Protocol Buffers) instead.

References

Credits

Paul Guyot Finder
Lukas Backström Finder
John Högberg Remediation developer

CVSS breakdown

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
« All CVEs