Am I affected?

type your ash version to check

Description

Improper Validation of Specified Quantity in Input vulnerability in ash-project ash allows an attacker to store a value of arbitrary size in an attribute whose length constraint should bound it.

Ash measures string length with Elixir's String.length/1, which counts Unicode graphemes, in the max_length and min_length constraints of Ash.Type.String (apply_constraints/2 in lib/ash/type/string.ex), in Ash.Resource.Validation.StringLength, and in the string_length expression function. A grapheme carries an unbounded number of combining marks, so a base character followed by a million combining acute accents is one grapheme and megabytes of data, and satisfies max_length: 2. Where the data layer imposes no independent limit (ETS, Mnesia, or a Postgres text column) the whole value is persisted, so an attacker can write an entire request body into an attribute declared with a small maximum and grow storage without bound.

The counting unit also disagrees with the storage layer, which counts codepoints rather than graphemes, so a value accepted by the constraint can still be rejected or truncated by the column. A Postgres varchar(n) column bounds the value itself and is not exposed.

This issue affects ash: from 0.10.0 before 3.33.0.

Weaknesses & attack patterns

Weakness

CWE-1284 · Improper Validation of Specified Quantity in Input in catalog → MITRE ↗

Attack patterns

CAPEC-153 · Input Data Manipulation MITRE ↗

Affected — Hex / ash Hex.pm ↗ Repository ↗

0.10.0 < 3.33.0 affected
every other version: unaffected
cpe cpe:2.3:a:ash-project:ash:*:*:*:*:*:*:*:*
modules · source files · routines
modules 'Elixir.Ash.Type.String' · 'Elixir.Ash.Resource.Validation.StringLength' · 'Elixir.Ash.Query.Function.StringLength'
source files lib/ash/type/string.ex · lib/ash/resource/validation/string_length.ex · lib/ash/query/function/string_length.ex
routines 'Elixir.Ash.Type.String':apply_constraints/2 · 'Elixir.Ash.Type.String':apply_atomic_constraints/2 · 'Elixir.Ash.Resource.Validation.StringLength':validate/3 · 'Elixir.Ash.Resource.Validation.StringLength':atomic/3 · 'Elixir.Ash.Query.Function.StringLength':evaluate/1

Affected — GitHub / ash-project/ash Repository ↗

05848d5 and up affected
a64cab4 not affected
cdbf4c4 not affected
every other version: unaffected
cpe cpe:2.3:a:ash-project:ash:*:*:*:*:*:*:*:*
modules · source files · routines
modules 'Elixir.Ash.Type.String' · 'Elixir.Ash.Resource.Validation.StringLength' · 'Elixir.Ash.Query.Function.StringLength'
source files lib/ash/type/string.ex · lib/ash/resource/validation/string_length.ex · lib/ash/query/function/string_length.ex
routines 'Elixir.Ash.Type.String':apply_constraints/2 · 'Elixir.Ash.Type.String':apply_atomic_constraints/2 · 'Elixir.Ash.Resource.Validation.StringLength':validate/3 · 'Elixir.Ash.Resource.Validation.StringLength':atomic/3 · 'Elixir.Ash.Query.Function.StringLength':evaluate/1

Configurations

A resource attribute must carry a max_length constraint (or an equivalent string_length validation) fed from client input, and the data layer must impose no independent size limit of its own. The ETS and Mnesia data layers and Postgres text columns store the value in full; a Postgres varchar(n) column bounds it independently and is not exposed.

References

Credits

Jonatan Männchen / EEF Finder Reporter Coordinator
Zach Daniel / Ash Project Remediation developer

CVSS breakdown

CVSS:4.0/AV:L/AC:L/AT:P/PR:N/UI:N/VC:N/VI:L/VA:H/SC:N/SI:N/SA:N
« All CVEs