CVE-2026-75758
Last modified
CVE-2026-75758 is a medium-severity vulnerability rated 5.9/10 on the CVSS scale. Uncontrolled Recursion vulnerability in the Elixir standard library allows an attacker who controls a list passed to inspect/1, List.to_string/1, or List.to_charlist/1 to exhaust a BEAM node's memory. Inspect.List's charlist branch in lib/elixir/lib/inspect.ex classifies a list as a charlist using List.ascii_printable?/2, which examines only the first :printable_limit (4096 by default) elements, and then calls IO.chardata_to_string/1 on the whole term. A list whose printable prefix exceeds that limit but which contains a later element that is not a code point (an atom, an out-of-range integer, or an improper tail) is therefore mis-classified, and the conversion raises ArgumentError. EPSS estimates a 0.13% chance of exploitation in the next 30 days.
Description
Uncontrolled Recursion vulnerability in the Elixir standard library allows an attacker who controls a list passed to inspect/1, List.to_string/1, or List.to_charlist/1 to exhaust a BEAM node's memory. Inspect.List's charlist branch in lib/elixir/lib/inspect.ex classifies a list as a charlist using List.ascii_printable?/2, which examines only the first :printable_limit (4096 by default) elements, and then calls IO.chardata_to_string/1 on the whole term. A list whose printable prefix exceeds that limit but which contains a later element that is not a code point (an atom, an out-of-range integer, or an improper tail) is therefore mis-classified, and the conversion raises ArgumentError. That conversion runs inside List.to_string/1, whose rescue clause builds its message by interpolating inspect(list), which re-enters the same branch and raises again. The nested inspection is an argument to raise, so the recursion is not in tail position and every level is retained: the process stack grows monotonically while each cycle re-walks the list, until the process is killed by max_heap_size or, by default, the node runs out of memory. List.to_charlist/1 has the same rescue shape. Below the printable limit the inner inspect/1 sees the invalid element within its counter and renders the list in ordinary bracket form, so a single ArgumentError is raised and no recursion occurs. This issue affects elixir: from 1.15.0-rc.0 before 1.18.5, from 1.19.0-rc.0 before 1.19.6, and from 1.20.0-rc.0 before 1.20.4.
Metrics
Weakness Enumeration
Affected Software
Source: CNA advisory (CVE.org). NVD analysis pending.
| Vendor | Product | Versions |
|---|---|---|
| elixir-lang | elixir | >= 1.15.0-rc.0, < 1.18.5; >= 1.19.0-rc.0, < 1.19.6; >= 1.20.0-rc.0, < 1.20.4 |
| elixir-lang | elixir | >= 9718f2b90ce086ff8614d5782f4ec528495c98dd, < * |
References
Timeline
- Published
- Last Modified
- Status
- Deferred
Frequently Asked Questions
What is CVE-2026-75758?
How severe is CVE-2026-75758?
How do I fix CVE-2026-75758?
How Strix Helps
- How Strix found a critical auth bypass in etcdStrix autonomously discovered a critical authentication bypass in etcd, later designated CVE-2026-33413.
- Autonomous PentestingAI agents that find and validate exploitable vulnerabilities like this one across your applications.
- PR ReviewsPentest every pull request so vulnerable code is caught before it ships to production.
- AI Penetration TestingHow AI-driven penetration testing continuously covers your attack surface.
Related CVEs from 2026
- CVE-2026-75746ColdFusion is affected by an Improper Neutralization of Spec…9.1
- CVE-2026-75749Substance3D - Painter is affected by an out-of-bounds write …7.8
- CVE-2026-75750Substance3D - Painter is affected by a Heap-based Buffer Ove…7.8
- CVE-2026-75752Substance3D - Painter is affected by an out-of-bounds read v…5.5
- CVE-2026-75754Missing Authentication for Critical Function, Server-Side Re…10
- CVE-2026-75757Reliance on Cookies without Validation and Integrity Checkin…8.3
- CVE-2026-75759Improper Verification of Cryptographic Signature vulnerabili…7.6
- CVE-2026-75760Generation of Error Message Containing Sensitive Information…7.1
- CVE-2026-75766Substance3D - Painter is affected by a Heap-based Buffer Ove…7.8
- CVE-2026-75767Substance3D - Painter is affected by a Heap-based Buffer Ove…7.8
- CVE-2026-75768Substance3D - Painter is affected by an Untrusted Search Pat…7.8
- CVE-2026-75769Substance3D - Painter is affected by a Heap-based Buffer Ove…7.8
Are you affected by CVE-2026-75758?
Run a free Strix scan to check your systems for this vulnerability.
Scan your code nowSource: NVD / NIST
