EEF-CVE-2026-67579
Filter expression injection via forged keyset pagination cursor in Ash
Quick fix
EEF-CVE-2026-67579 — ash: upgrade to the fixed version with the command below.
mix deps.update ash Details
## Summary
Deserialization of Untrusted Data vulnerability in ash-project ash allows an unauthenticated attacker to inject a filter expression through a forged keyset pagination cursor, resulting in SQL injection or code execution depending on the data layer.
Read actions with keyset pagination decode the client-supplied page\[:after\] or page\[:before\] cursor in decode\_values/2 in lib/ash/page/keyset.ex using non\_executable\_binary\_to\_term/2 with \[:safe\]. That guard blocks new atoms, funs, and ports, but not a struct built from atoms already interned in a running Ash application, so a decoded %Ash.Query.Call{} expression survives and is spliced into the keyset filter as a comparison value in do\_filters/4 and evaluated. Because the cursor bypasses the Ash.Expr macro, the runtime never applies the private?/public? gate that would otherwise reject it. On AshPostgres the injected fragment is inlined into the SQL query; on the ETS and Simple data layers it is evaluated in-process as an arbitrary function call.
This issue affects ash: from 1.17.0 before 3.31.3.
## Configuration
A read action must declare keyset? true in its pagination block, and the application must pass a client-supplied value as the :after or :before page option. The severity of a successful attack depends on the data layer: AshPostgres yields SQL injection, while the ETS and Simple data layers evaluate the injected expression in-process.
Are you affected?
Enter the version of the package you're using.