VDB
Sign up

EEF-CVE-2026-78228

Unbounded handle_error recursion enables denial of service in AshOban triggers

Quick fix

EEF-CVE-2026-78228 — ash_oban: upgrade to the fixed version with the command below.

mix deps.update ash_oban

Details

## Summary

Uncontrolled Recursion vulnerability in ash-project ash\_oban allows a user who can drive a trigger's on\_error action to fail on the final attempt to exhaust worker CPU and memory, denying service.

The generated worker's atomic handle\_error/4 runs the trigger's on\_error action on a job's final attempt inside a rescue that, when the action itself raises, calls handle\_error/4 again with the same job. The job's attempt still equals max\_attempts, so it re-enters the same clause and re-runs the failing action, with no exit. Any deterministic on\_error failure (a data-layer outage, a misconfigured action, or a record the action rejects) loops forever; because the recursive call is not in tail position, each iteration retains a formatted stacktrace and the process heap grows without bound while the failing statement is re-issued against the data layer until the runtime kills the worker.

This issue affects ash\_oban: from 0.8.0-rc.1 before 0.8.14.

## Configuration

A trigger must declare an on\_error action and run through the atomic worker branch. An attacker needs only to drive that on\_error action into a deterministic failure (for example by pushing the record into a state the action rejects) and let the job reach its final attempt.

Are you affected?

Enter the version of the package you're using.

Affected packages

Hex/ash_oban
Introduced in: 0.8.0-rc.1Fixed in: 0.8.14
Fixmix deps.update ash_oban

References