VDB
KO

EEF-CVE-2026-70395

Predicate injection in manage_relationship belongs_to lookup discloses secret lookup keys in Ash

Quick fix

EEF-CVE-2026-70395 — ash: upgrade to the fixed version with the command below.

mix deps.update ash

Details

## Summary

Improper Neutralization of Special Elements in Data Query Logic vulnerability in ash-project ash allows an attacker to forge a relationship to a record they cannot name, and to recover the secret value used to look it up.

When manage\_relationship is used with on\_lookup: :relate on a belongs\_to relationship, the client-supplied lookup value is passed to Ash.Query.filter/2 without being cast to the attribute type. A nested map submitted where a scalar is expected is therefore interpreted as a filter predicate rather than a literal, so a lookup for a specific record becomes a query for any record matching a condition. The same path omits Ash.Query.limit(1), leaving Ash.read\_one/2 able to distinguish no match from one match from several, which turns comparison predicates into an oracle for the lookup value. Authorization is unaffected; the destination read policy still applies.

This issue affects ash: from 1.52.0-rc.11 before 3.31.1.

## Configuration

A belongs\_to relationship must be managed with manage\_relationship using on\_lookup: :relate, and the lookup value must come from client input.

Are you affected?

Enter the version of the package you're using.

Affected packages

Hex / ash
Introduced in: 1.52.0-rc.11 Fixed in: 3.31.1
Fix mix deps.update ash

References