VDB
Sign up

EEF-CVE-2026-82733

Route handler return value echoed into AshTypescript error response

Quick fix

EEF-CVE-2026-82733 — ash_typescript: upgrade to the fixed version with the command below.

mix deps.update ash_typescript

Details

## Summary

Generation of Error Message Containing Sensitive Information vulnerability in ash-project ash\_typescript allows an unauthenticated attacker to read internal application data from an HTTP 500 response body.

When a typed-controller route handler returns anything other than a %Plug.Conn{}, dispatch/3 in lib/ash\_typescript/typed\_controller/request\_handler.ex passes the value to unexpected\_return/2, which interpolates inspect(value, limit: 50) directly into the response message. The limit option bounds elements per collection rather than the term as a whole, so a handler falling through with a term such as {:error, %User{}} or a changeset serialises its full field set, including hashed passwords, tokens, and tenant identifiers, into the JSON error returned to the caller.

This contradicts the module's own posture elsewhere: the rescue clause gates Exception.message/1 behind AshTypescript.typed\_controller\_show\_raised\_errors?/0 and otherwise returns a generic message, while this path is ungated and always echoes.

This issue affects ash\_typescript: from 0.15.0 before 0.18.0.

## Configuration

The application exposes an AshTypescript typed controller over HTTP with a route handler that can return a non-Plug.Conn term carrying sensitive data.

Are you affected?

Enter the version of the package you're using.

Affected packages

Hex/ash_typescript
Introduced in: 0.15.0Fixed in: 0.18.0
Fixmix deps.update ash_typescript

References