VDB
Sign up

EEF-CVE-2026-77970

Sensitive fields nested in embedded values are not redacted in AshPaperTrail versions

Quick fix

EEF-CVE-2026-77970 — ash_paper_trail: upgrade to the fixed version with the command below.

mix deps.update ash_paper_trail

Details

## Summary

Cleartext Storage of Sensitive Information vulnerability in ash-project ash\_paper\_trail allows an attacker with read access to the generated version resource to recover sensitive values nested inside embedded resources, unions, or lists.

sensitive\_attributes :redact and :ignore only act on the tracked resource's top-level attributes. maybe\_redact\_changes/3 and the stored-action-input path in AshPaperTrail.Resource.Changes.CreateNewVersion derive the sensitive set from the resource's own attributes and never descend into embedded, union, or list values, so a non-sensitive attribute or action argument that holds an embed with a sensitive? field (for example an accepted credentials embed carrying a token) is written to the version table in cleartext.

This issue affects ash\_paper\_trail: from 0.3.0 before 0.7.0.

## Configuration

The resource must version an attribute or accept an action input whose type is an embedded resource, union, or list containing a sensitive? field, with sensitive\_attributes set to :redact or :ignore. Exposure requires read access to the generated version resource.

Are you affected?

Enter the version of the package you're using.

Affected packages

Hex/ash_paper_trail
Introduced in: 0.3.0Fixed in: 0.7.0
Fixmix deps.update ash_paper_trail

References