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-2025-50537

CVE-2025-50537: ESLint Buffer Overflow Vulnerability

CVE-2025-50537 is a stack overflow vulnerability in ESLint before version 9.26.0 caused by infinite recursion when serializing circular reference objects. This article covers technical details, affected versions, and mitigation.

Published: January 30, 2026

CVE-2025-50537 Overview

A stack overflow vulnerability exists in ESLint before version 9.26.0 that occurs when serializing objects with circular references in the eslint/lib/shared/serialization.js module. The vulnerability is triggered through the RuleTester.run() method, which validates test cases and checks for duplicates. During validation, the internal function checkDuplicateTestCase() calls isSerializable() for serialization checks. When an object containing a circular reference is passed, isSerializable() enters infinite recursion, ultimately causing a stack overflow and application crash.

Critical Impact

Attackers can trigger a denial of service condition by passing objects with circular references to ESLint's RuleTester, causing development environments and CI/CD pipelines to crash.

Affected Products

  • ESLint versions prior to 9.26.0

Discovery Timeline

  • 2026-01-26 - CVE CVE-2025-50537 published to NVD
  • 2026-01-27 - Last updated in NVD database

Technical Details for CVE-2025-50537

Vulnerability Analysis

This vulnerability is classified under CWE-674 (Uncontrolled Recursion). The flaw resides in ESLint's serialization logic, specifically within the isSerializable() function located in eslint/lib/shared/serialization.js. When processing objects for duplicate test case detection, the function fails to track visited objects, allowing circular reference structures to trigger unbounded recursive calls.

The RuleTester.run() method is the primary attack surface, as it processes user-supplied test case configurations. When validating these test cases, the checkDuplicateTestCase() function invokes the vulnerable serialization routine without proper safeguards against self-referential data structures.

The attack requires local access and user interaction, as an attacker would need to convince a developer to run malicious test configurations or compromise a project's test suite. The impact is limited to availability—there is no data confidentiality or integrity breach—but successful exploitation can disrupt development workflows and automated testing pipelines.

Root Cause

The root cause is insufficient input validation in the isSerializable() function, which does not implement a visited-object tracking mechanism. When an object contains a circular reference (where a property directly or indirectly references itself), the serialization check continues to recurse through the same objects indefinitely until the JavaScript call stack is exhausted.

Attack Vector

The attack requires local access and involves crafting a test case object with circular references that is then passed to ESLint's RuleTester.run() method. The attack flow proceeds as follows:

  1. An attacker creates a malicious ESLint rule test file containing test case objects with circular references
  2. When the test suite runs, RuleTester.run() processes these test cases
  3. The checkDuplicateTestCase() validation calls isSerializable() on the malicious object
  4. The function recursively traverses the circular structure without termination
  5. The JavaScript runtime exhausts its call stack, resulting in a stack overflow error and process termination

The vulnerability can impact CI/CD pipelines that automatically run ESLint tests, potentially causing build failures and disrupting development workflows. For technical details and proof-of-concept code, refer to the GitHub Issue Discussion and the GitHub Gist PoC Repository.

Detection Methods for CVE-2025-50537

Indicators of Compromise

  • Stack overflow errors or "Maximum call stack size exceeded" exceptions in ESLint processes
  • Unexpected crashes or terminations during ESLint test suite execution
  • Abnormal memory or CPU spikes during RuleTester.run() operations

Detection Strategies

  • Monitor for recurring process crashes in development environments or CI/CD pipelines running ESLint tests
  • Implement logging to capture and analyze ESLint test execution errors
  • Review test case configurations for suspicious circular reference patterns

Monitoring Recommendations

  • Set up alerting for abnormal ESLint process terminations in CI/CD environments
  • Track ESLint version deployments across development infrastructure to identify vulnerable installations
  • Monitor Node.js process health metrics during automated test execution

How to Mitigate CVE-2025-50537

Immediate Actions Required

  • Upgrade ESLint to version 9.26.0 or later where this vulnerability has been addressed
  • Review and audit test case configurations for circular reference objects
  • Implement process monitoring and restart capabilities for ESLint test runners

Patch Information

The vulnerability is resolved in ESLint version 9.26.0. Organizations should update their package.json dependencies and lock files to ensure the patched version is installed across all development environments and CI/CD pipelines. For additional information, refer to the GitHub Issue Discussion.

Workarounds

  • Ensure test case objects passed to RuleTester.run() do not contain circular references
  • Implement pre-validation checks in test suites to detect circular references before ESLint processing
  • Consider wrapping ESLint test execution in process isolation to limit the impact of potential crashes
  • Use trusted, reviewed test configurations and avoid running untrusted ESLint rule tests
bash
# Upgrade ESLint to patched version
npm update eslint@^9.26.0

# Verify installed version
npx eslint --version

# Alternative: specify exact version in package.json
npm install eslint@9.26.0 --save-dev

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

  • Vulnerability Details
  • TypeBuffer Overflow

  • Vendor/TechEslint

  • SeverityMEDIUM

  • CVSS Score5.5

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-674
  • Technical References
  • GitHub Gist PoC Repository

  • GitHub Issue Discussion
  • Related CVEs
  • CVE-2025-54313: eslint-config-prettier Supply Chain RCE
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