{
    "dataType": "CVE_RECORD",
    "dataVersion": "5.2",
    "cveMetadata": {
        "cveId": "CVE-2026-82732",
        "assignerOrgId": "6b3ad84c-e1a6-4bf7-a703-f496b71e49db",
        "state": "PUBLISHED",
        "assignerShortName": "EEF",
        "dateReserved": "2026-08-31T00:59:10.001Z",
        "datePublished": "2026-09-01T02:09:15.070Z",
        "dateUpdated": "2026-09-01T02:09:15.070Z"
    },
    "containers": {
        "cna": {
            "affected": [
                {
                    "collectionURL": "https://repo.hex.pm",
                    "cpes": [
                        "cpe:2.3:a:ash-project:ash_typescript:*:*:*:*:*:*:*:*"
                    ],
                    "defaultStatus": "unaffected",
                    "modules": [
                        "'Elixir.AshTypescript.TypedController.RequestHandler'"
                    ],
                    "packageName": "ash_typescript",
                    "packageURL": "pkg:hex/ash_typescript",
                    "product": "ash_typescript",
                    "programFiles": [
                        "lib/ash_typescript/typed_controller/request_handler.ex"
                    ],
                    "programRoutines": [
                        {
                            "name": "'Elixir.AshTypescript.TypedController.RequestHandler':cast_arguments/2"
                        },
                        {
                            "name": "'Elixir.AshTypescript.TypedController.RequestHandler':handle/4"
                        }
                    ],
                    "repo": "https://github.com/ash-project/ash_typescript",
                    "vendor": "ash-project",
                    "versions": [
                        {
                            "lessThan": "0.18.0",
                            "status": "affected",
                            "version": "0.15.0",
                            "versionType": "semver"
                        }
                    ]
                },
                {
                    "collectionURL": "https://github.com",
                    "cpes": [
                        "cpe:2.3:a:ash-project:ash_typescript:*:*:*:*:*:*:*:*"
                    ],
                    "defaultStatus": "unaffected",
                    "modules": [
                        "'Elixir.AshTypescript.TypedController.RequestHandler'"
                    ],
                    "packageName": "ash-project/ash_typescript",
                    "packageURL": "pkg:github/ash-project/ash_typescript",
                    "product": "ash_typescript",
                    "programFiles": [
                        "lib/ash_typescript/typed_controller/request_handler.ex"
                    ],
                    "programRoutines": [
                        {
                            "name": "'Elixir.AshTypescript.TypedController.RequestHandler':cast_arguments/2"
                        },
                        {
                            "name": "'Elixir.AshTypescript.TypedController.RequestHandler':handle/4"
                        }
                    ],
                    "repo": "https://github.com/ash-project/ash_typescript",
                    "vendor": "ash-project",
                    "versions": [
                        {
                            "lessThan": "21ab6f1229a4dccdb56bc37ed437d9672a0c4a4e",
                            "status": "affected",
                            "version": "546a15e1a2d7dbf1df2d5a6ee4404bc3da87852e",
                            "versionType": "git"
                        }
                    ]
                }
            ],
            "configurations": [
                {
                    "lang": "en",
                    "supportingMedia": [
                        {
                            "base64": false,
                            "type": "text/html",
                            "value": "<p>The application exposes an AshTypescript typed controller over HTTP with at least one route argument carrying a <code>constraints</code> declaration that gates application behaviour.</p>"
                        },
                        {
                            "base64": false,
                            "type": "text/markdown",
                            "value": "The application exposes an AshTypescript typed controller over HTTP with at least one route argument carrying a `constraints` declaration that gates application behaviour."
                        }
                    ],
                    "value": "The application exposes an AshTypescript typed controller over HTTP with at least one route argument carrying a constraints declaration that gates application behaviour."
                }
            ],
            "cpeApplicability": [
                {
                    "nodes": [
                        {
                            "cpeMatch": [
                                {
                                    "criteria": "cpe:2.3:a:ash-project:ash_typescript:*:*:*:*:*:*:*:*",
                                    "versionEndExcluding": "0.18.0",
                                    "versionStartIncluding": "0.15.0",
                                    "vulnerable": true
                                }
                            ],
                            "negate": false,
                            "operator": "OR"
                        }
                    ],
                    "operator": "AND"
                }
            ],
            "credits": [
                {
                    "lang": "en",
                    "type": "finder",
                    "value": "Peter Ullrich"
                },
                {
                    "lang": "en",
                    "type": "reporter",
                    "value": "Peter Ullrich"
                },
                {
                    "lang": "en",
                    "type": "remediation developer",
                    "value": "Torkild Gundersen Kjevik / Ash Project"
                },
                {
                    "lang": "en",
                    "type": "coordinator",
                    "value": "Jonatan Männchen / EEF"
                }
            ],
            "descriptions": [
                {
                    "lang": "en",
                    "supportingMedia": [
                        {
                            "base64": false,
                            "type": "text/html",
                            "value": "<p>Improper Input Validation vulnerability in ash-project ash_typescript allows a remote attacker to submit argument values outside a declared allowlist or bound on typed-controller routes.</p>\n<p><code>AshTypescript.TypedController.RequestHandler</code> in <code>lib/ash_typescript/typed_controller/request_handler.ex</code> calls <code>Ash.Type.cast_input/3</code> and treats an <code>{:ok, cast}</code> result as fully validated. In Ash these are separate steps: <code>cast_input/3</code> only coerces the term, while every constraint declared on the argument is applied by <code>Ash.Type.apply_constraints/3</code>, which this path never calls. Constraints such as <code>one_of</code>, <code>max_length</code>, <code>min</code> and <code>max</code>, and <code>match</code> are therefore inert, so a value outside a declared allowlist is accepted and passed to the route handler. Codegen renders the same constraints into the generated TypeScript types, so an allowlist appears enforced to a TypeScript caller while any other HTTP client ignores it. Empty-string to <code>nil</code> normalization also lives in <code>apply_constraints</code>, so the <code>allow_nil?: false</code> check accepts <code>\"\"</code> for a required argument.</p>\n<p>Where a constraint gates a role, a status, or a sort direction, this becomes a privilege or state-machine bypass.</p>\n<p>This issue affects ash_typescript: from 0.15.0 before 0.18.0.</p>"
                        },
                        {
                            "base64": false,
                            "type": "text/markdown",
                            "value": "Improper Input Validation vulnerability in ash-project ash_typescript allows a remote attacker to submit argument values outside a declared allowlist or bound on typed-controller routes.\n\n`AshTypescript.TypedController.RequestHandler` in `lib/ash_typescript/typed_controller/request_handler.ex` calls `Ash.Type.cast_input/3` and treats an `{:ok, cast}` result as fully validated. In Ash these are separate steps: `cast_input/3` only coerces the term, while every constraint declared on the argument is applied by `Ash.Type.apply_constraints/3`, which this path never calls. Constraints such as `one_of`, `max_length`, `min` and `max`, and `match` are therefore inert, so a value outside a declared allowlist is accepted and passed to the route handler. Codegen renders the same constraints into the generated TypeScript types, so an allowlist appears enforced to a TypeScript caller while any other HTTP client ignores it. Empty-string to `nil` normalization also lives in `apply_constraints`, so the `allow_nil?: false` check accepts `\"\"` for a required argument.\n\nWhere a constraint gates a role, a status, or a sort direction, this becomes a privilege or state-machine bypass.\n\nThis issue affects ash_typescript: from 0.15.0 before 0.18.0."
                        }
                    ],
                    "value": "Improper Input Validation vulnerability in ash-project ash_typescript allows a remote attacker to submit argument values outside a declared allowlist or bound on typed-controller routes.\n\nAshTypescript.TypedController.RequestHandler in lib/ash_typescript/typed_controller/request_handler.ex calls Ash.Type.cast_input/3 and treats an {:ok, cast} result as fully validated. In Ash these are separate steps: cast_input/3 only coerces the term, while every constraint declared on the argument is applied by Ash.Type.apply_constraints/3, which this path never calls. Constraints such as one_of, max_length, min and max, and match are therefore inert, so a value outside a declared allowlist is accepted and passed to the route handler. Codegen renders the same constraints into the generated TypeScript types, so an allowlist appears enforced to a TypeScript caller while any other HTTP client ignores it. Empty-string to nil normalization also lives in apply_constraints, so the allow_nil?: false check accepts \"\" for a required argument.\n\nWhere a constraint gates a role, a status, or a sort direction, this becomes a privilege or state-machine bypass.\n\nThis issue affects ash_typescript: from 0.15.0 before 0.18.0."
                }
            ],
            "impacts": [
                {
                    "capecId": "CAPEC-153",
                    "descriptions": [
                        {
                            "lang": "en",
                            "value": "CAPEC-153 Input Data Manipulation"
                        }
                    ]
                }
            ],
            "metrics": [
                {
                    "cvssV4_0": {
                        "Automatable": "NOT_DEFINED",
                        "Recovery": "NOT_DEFINED",
                        "Safety": "NOT_DEFINED",
                        "attackComplexity": "LOW",
                        "attackRequirements": "PRESENT",
                        "attackVector": "NETWORK",
                        "baseScore": 6.3,
                        "baseSeverity": "MEDIUM",
                        "privilegesRequired": "NONE",
                        "providerUrgency": "NOT_DEFINED",
                        "subAvailabilityImpact": "NONE",
                        "subConfidentialityImpact": "NONE",
                        "subIntegrityImpact": "NONE",
                        "userInteraction": "NONE",
                        "valueDensity": "NOT_DEFINED",
                        "vectorString": "CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:N/VI:L/VA:N/SC:N/SI:N/SA:N",
                        "version": "4.0",
                        "vulnAvailabilityImpact": "NONE",
                        "vulnConfidentialityImpact": "NONE",
                        "vulnIntegrityImpact": "LOW",
                        "vulnerabilityResponseEffort": "NOT_DEFINED"
                    },
                    "format": "CVSS",
                    "scenarios": [
                        {
                            "lang": "en",
                            "value": "GENERAL"
                        }
                    ]
                }
            ],
            "problemTypes": [
                {
                    "descriptions": [
                        {
                            "cweId": "CWE-20",
                            "description": "CWE-20 Improper Input Validation",
                            "lang": "en",
                            "type": "CWE"
                        }
                    ]
                }
            ],
            "providerMetadata": {
                "orgId": "6b3ad84c-e1a6-4bf7-a703-f496b71e49db",
                "shortName": "EEF",
                "dateUpdated": "2026-09-01T02:09:15.070Z"
            },
            "references": [
                {
                    "tags": [
                        "related",
                        "vendor-advisory"
                    ],
                    "url": "https://github.com/ash-project/ash_typescript/security/advisories/GHSA-f7fq-hwq6-jhvv"
                },
                {
                    "tags": [
                        "related"
                    ],
                    "url": "https://cna.erlef.org/cves/CVE-2026-82732.html"
                },
                {
                    "tags": [
                        "related"
                    ],
                    "url": "https://osv.dev/vulnerability/EEF-CVE-2026-82732"
                },
                {
                    "tags": [
                        "patch"
                    ],
                    "url": "https://github.com/ash-project/ash_typescript/commit/21ab6f1229a4dccdb56bc37ed437d9672a0c4a4e"
                }
            ],
            "source": {
                "discovery": "EXTERNAL"
            },
            "title": "Declared argument constraints not enforced on AshTypescript typed controller routes"
        }
    }
}