πŸ” CVE Alert

CVE-2026-82743

UNKNOWN 0.0

Ash.Actions.Read.AsyncLimiter busy-spins a scheduler while awaiting slow async reads

CVSS Score
0.0
EPSS Score
0.0%
EPSS Percentile
0th

Uncontrolled Resource Consumption vulnerability in ash-project ash lets a slow asynchronous read spin a scheduler thread at full CPU while the framework waits for it. Ash.Actions.Read.AsyncLimiter.await_at_least_one/1 (lib/ash/actions/read/async_limiter.ex) waited for concurrent async read tasks by polling each with Task.yield(task, 0) in a tight loop rather than blocking. While every outstanding task is still running (a slow related-data load or calculation), the loop returns immediately and repeats, busy-spinning and holding a BEAM scheduler at full CPU for the whole duration of the slow read; concurrent slow reads tie up further schedulers. The fix waits with Task.yield_many (a non-blocking sweep followed by a blocking wait with timeout: :infinity), so the process sleeps until a task completes instead of spinning. This issue affects ash: from 2.19.0 before 3.32.2.

CWE CWE-400
Vendor ash-project
Product ash
Published Sep 1, 2026
Stay Ahead of the Next One

Get instant alerts for ash-project ash

Be the first to know when new unknown vulnerabilities affecting ash-project ash are published β€” delivered to Slack, Telegram or Discord.

Get Free Alerts β†’ Free Β· No credit card Β· 60 sec setup

Affected Versions

ash-project / ash
2.19.0 < 3.32.2
ash-project / ash
c48cb08026cf56b1ac33209203bc9c00061b40b8 < 0a5ecd2ffdfa848afdeb8827f02982ef2a63a1cd

References

NVD β†— CVE.org β†— EPSS Data β†—
github.com: https://github.com/ash-project/ash/security/advisories/GHSA-33wq-x3q2-c92h cna.erlef.org: https://cna.erlef.org/cves/CVE-2026-82743.html osv.dev: https://osv.dev/vulnerability/EEF-CVE-2026-82743 github.com: https://github.com/ash-project/ash/commit/0a5ecd2ffdfa848afdeb8827f02982ef2a63a1cd

Credits

Zach Daniel / Ash Project πŸ” Peter Ullrich Jonatan MΓ€nnchen / EEF Peter Ullrich