The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-33872

CVE-2026-33872: Elixir-Nodejs Information Disclosure Flaw

CVE-2026-33872 is an information disclosure vulnerability in elixir-nodejs caused by a race condition that leads to cross-user data leakage. This article covers the technical details, affected versions, and mitigation.

Published: April 2, 2026

CVE-2026-33872 Overview

CVE-2026-33872 is a race condition vulnerability in elixir-nodejs, an Elixir API library for calling Node.js functions. Versions prior to 3.1.4 are affected by a cross-user data leakage issue stemming from improper request-response correlation in the worker protocol. This vulnerability allows sensitive user data to be inadvertently returned to unauthorized parties under high-concurrency conditions.

Critical Impact

In high-throughput environments processing sensitive data such as PII, authentication tokens, or private records, this vulnerability can cause User A's data to be returned to User B, resulting in unauthorized information disclosure that is difficult to trace.

Affected Products

  • elixir-nodejs versions prior to 3.1.4

Discovery Timeline

  • 2026-03-27 - CVE CVE-2026-33872 published to NVD
  • 2026-03-30 - Last updated in NVD database

Technical Details for CVE-2026-33872

Vulnerability Analysis

This vulnerability is classified as CWE-362 (Race Condition) and manifests in the worker protocol implementation of elixir-nodejs. The core issue lies in the library's failure to properly correlate requests with their corresponding responses when communicating between Elixir processes and Node.js workers.

Under normal operation, requests are sent to Node.js workers and responses are returned to the calling process. However, the implementation lacks a mechanism to verify which request a particular response belongs to. This creates a "stale response" vulnerability where the worker may return data from the next available item in the buffer rather than the data corresponding to the original request.

The vulnerability is particularly dangerous because it does not produce errors or exceptions. Instead, affected applications receive "valid-looking" data that happens to belong to a different user's session. This silent failure mode makes the issue extremely difficult to detect through standard error monitoring and logging practices.

Root Cause

The root cause of CVE-2026-33872 is the absence of request-response correlation in the worker protocol. When multiple requests are processed concurrently, the worker does not maintain associations between incoming requests and outgoing responses. Combined with timing issues such as timeouts or high concurrent load, this architectural flaw allows responses to be delivered to the wrong caller.

Attack Vector

This vulnerability is exploitable over the network in environments where the elixir-nodejs library processes concurrent requests from multiple users. The attack scenario involves:

  1. High-concurrency conditions - The vulnerability manifests when multiple users make simultaneous requests
  2. Timeout or load conditions - Network latency or worker saturation can trigger the race condition
  3. Buffer misalignment - When a response arrives after a timeout, it may be delivered to a subsequent, unrelated request
  4. Silent data leakage - User A's sensitive data (PII, tokens, private records) is returned to User B without error indication

The attack is passive in nature—an attacker does not need to actively exploit the system. Simply using the application alongside other users under sufficient load can trigger the data leakage. This makes traditional intrusion detection approaches less effective, as no malicious payloads or attack patterns are involved.

Detection Methods for CVE-2026-33872

Indicators of Compromise

  • Users reporting receipt of data belonging to other accounts or sessions
  • Audit logs showing inconsistencies between requested resources and returned data
  • Anomalous patterns in application behavior during high-load periods
  • Customer complaints about seeing unfamiliar or incorrect personal information

Detection Strategies

  • Implement application-level correlation tracking to verify response integrity
  • Deploy monitoring for request-response timing anomalies in elixir-nodejs worker communications
  • Review application logs for evidence of data misalignment between user sessions
  • Conduct security audits of high-throughput endpoints that handle sensitive user data

Monitoring Recommendations

  • Monitor elixir-nodejs worker pool metrics for signs of buffer contention
  • Establish baseline metrics for request processing times and alert on significant deviations
  • Implement data integrity checksums at the application layer to detect cross-session contamination
  • Configure logging to capture correlation identifiers for all sensitive data transactions

How to Mitigate CVE-2026-33872

Immediate Actions Required

  • Upgrade elixir-nodejs to version 3.1.4 or later immediately
  • Review application logs and user reports for potential past data leakage incidents
  • Assess the sensitivity of data processed through elixir-nodejs to determine breach notification requirements
  • Consider temporarily reducing concurrency or implementing rate limiting until the patch is applied

Patch Information

The vulnerability is fixed in elixir-nodejs version 3.1.4. Organizations should upgrade to this version or later to remediate the issue. Technical details about the fix are available in GitHub Pull Request #105 and the GitHub Release v3.1.4. The complete security advisory is documented in GHSA-rwcr-rpcc-3g9m.

Workarounds

  • Reduce concurrent request volume to minimize race condition triggers until patching is complete
  • Implement application-level request-response correlation as a defense-in-depth measure
  • Avoid processing highly sensitive data through affected elixir-nodejs versions
  • Consider implementing a queuing mechanism to serialize requests as a temporary mitigation
bash
# Update elixir-nodejs to patched version
mix deps.update nodejs
# Verify installed version is 3.1.4 or later
mix deps | grep nodejs

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechElixir Nodejs

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-362
  • Technical References
  • GitHub Issue #100

  • GitHub Pull Request #105

  • GitHub Release v3.1.4

  • GitHub Security Advisory GHSA-rwcr-rpcc-3g9m
  • Latest CVEs
  • CVE-2026-35467: Browser API Key Information Disclosure

  • CVE-2026-35466: cveInterface.js XSS Vulnerability

  • CVE-2026-30252: ZenShare Suite XSS Vulnerability

  • CVE-2026-30251: ZenShare Suite v17.0 XSS Vulnerability
Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English