VDB
Sign up

EEF-CVE-2026-75760

AshAi vectorize change leaks raw embedding-provider errors, including credentials, in a user-facing error

Quick fix

EEF-CVE-2026-75760 — ash_ai: upgrade to the fixed version with the command below.

mix deps.update ash_ai

Details

## Summary

Generation of Error Message Containing Sensitive Information vulnerability in ash-project ash\_ai discloses provider request state and credentials in a user-facing validation error.

In AshAi.Changes.Vectorize, when the embedding provider call fails the change added a changeset error whose message inspected the raw error term (An error occurred while generating embeddings: #{inspect(error)}). A plain-string add\_error produces an Ash.Error.Changes.InvalidChanges in the :invalid class, which AshJsonApi and AshGraphql render back to the caller. The embedding client's error term is not sanitized, so it can carry the request URL, the provider response body, and, for HTTP clients that keep the request in the error struct, the outbound Authorization header with the provider API key. Failures are attacker-reachable via oversized or malformed vectorized content. The fix logs the raw error and returns a generic message.

This issue affects ash\_ai: from 0.1.0 before 1.0.0.

## Configuration

The application exposes a resource with vectorize configured over an HTTP API (AshJsonApi or AshGraphql) that renders :invalid-class changeset errors, and the embedding provider call can be made to fail (for example via oversized content).

Are you affected?

Enter the version of the package you're using.

Affected packages

Hex/ash_ai
Introduced in: 0.1.0Fixed in: 1.0.0
Fixmix deps.update ash_ai

References