SEPTEMBER 14, 2026
Live Feed
Back to database
Case File

CVE-2026-82367

LOW · CVSS 2.3 EPSS 0.24% Public Exploit

Source: NVD + CISA KEV + EPSS · Published 2026-08-30 · Last synced 2026-09-14

CyberRota Analysis

AI-Generated

The vulnerability in the ash_graphql library allows for the exposure of resolved records from one subscription to be sent to a different subscriber's topic due to improper handling of the process dictionary. This can lead to data leakage between different users, potentially compromising sensitive information. Organizations using affected versions (1.4.0 to 1.11.0) should prioritize patching this issue to safeguard against unauthorized data access.

Public Exploit Signal

A public exploit, PoC, GitHub repository or Metasploit reference was detected for this CVE.

Note: these links are listed for security research and verification purposes only.

CVE
CVE-2026-82367
Severity
LOW
CVSS
2.3
EPSS
0.24%

Original NVD Description

Exposure of Data Element to Wrong Session vulnerability in ash-project ash_graphql can deliver one subscription's resolved records to a different subscriber's topic. AshGraphql.Subscription.Batcher.do_send/5 reads the resolved batch from the process dictionary via Process.get(:batch_resolved) and then unconditionally deletes it. That is sound only inside a task the library owns. On the :backpressure_sync and :noproc fallbacks do_send/5 runs inline in the publishing caller's process, so if a resolver inside an outer do_send/5 triggers another synchronous Ash notification, the inner call finds the outer run's value still under :batch_resolved, adopts it as its own result, and publishes it to the inner topic, a different subscription document with a different actor and tenant. It then deletes the key, so the outer run publishes nothing. The key is not namespaced by run, so records cannot be told apart. The fix saves, clears, and restores :batch_resolved around each run. This issue affects ash_graphql: from 1.4.0 before 1.11.0.