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-55130

CVE-2025-55130: Node.js Auth Bypass Vulnerability

CVE-2025-55130 is an authentication bypass flaw in Node.js that allows attackers to circumvent filesystem restrictions using symlink paths. This post covers technical details, affected versions, impact, and mitigation.

Published: January 23, 2026

CVE-2025-55130 Overview

A critical flaw in Node.js's Permissions model allows attackers to bypass --allow-fs-read and --allow-fs-write restrictions using crafted relative symlink paths. By chaining directories and symlinks, a script granted access only to the current directory can escape the allowed path and read sensitive files. This vulnerability breaks the expected isolation guarantees and enables arbitrary file read/write operations, potentially leading to system compromise.

Critical Impact

Attackers can bypass Node.js file system permission restrictions, enabling unauthorized read and write access to sensitive files outside the permitted directory scope.

Affected Products

  • Node.js v20.x
  • Node.js v22.x
  • Node.js v24.x
  • Node.js v25.x

Discovery Timeline

  • 2026-01-20 - CVE CVE-2025-55130 published to NVD
  • 2026-01-21 - Last updated in NVD database

Technical Details for CVE-2025-55130

Vulnerability Analysis

This vulnerability targets Node.js's experimental Permissions model, specifically the file system access controls implemented through --allow-fs-read and --allow-fs-write command-line flags. The Permissions model is designed to provide a sandboxed execution environment where scripts can only access explicitly permitted file system paths.

The flaw exists in how the permission validation logic handles symbolic links with relative path components. When a script creates or traverses directories containing symlinks that point to paths using relative references (such as ../), the permission check fails to properly resolve and validate the final target path against the allowed list.

This authentication bypass vulnerability (CWE-289) allows a malicious script that has been granted permission to access only a specific directory to construct a chain of symlinks that ultimately resolves to files outside the permitted scope. The attack requires local access and low privileges to execute.

Root Cause

The root cause lies in improper handling of symbolic link resolution within the Permissions model's path validation logic. When evaluating file access requests, the permission system fails to fully canonicalize paths that involve symlinks with relative components before comparing them against the allowed paths list.

Specifically, the path normalization process does not account for scenarios where symlinks are chained together in a way that incrementally escapes the permitted directory boundary. Each symlink in the chain may appear valid in isolation, but when resolved sequentially, they produce a final path that violates the intended access restrictions.

Attack Vector

The attack requires local access to execute a Node.js script with the experimental permissions model enabled. An attacker with the ability to run scripts in a constrained Node.js environment can exploit this vulnerability through the following approach:

  1. The attacker's script is granted limited file system access (e.g., only the current working directory)
  2. The script creates a directory structure within the allowed path
  3. Within this structure, the script creates symbolic links using relative path references that point outside the permitted boundary
  4. By chaining multiple symlinks and directory traversals, the script can construct a path that resolves to sensitive files like /etc/passwd or application configuration files
  5. The permission system fails to detect that the resolved path is outside the allowed scope
  6. The attacker can then read or write to arbitrary files on the system

This vulnerability is particularly concerning for environments that rely on the Node.js Permissions model to isolate untrusted code, such as multi-tenant hosting platforms or plugin execution sandboxes. Successful exploitation can lead to sensitive data exposure, configuration tampering, or privilege escalation through manipulation of system files.

Detection Methods for CVE-2025-55130

Indicators of Compromise

  • Unexpected symbolic link creation in directories accessible to Node.js applications
  • File access patterns showing traversal from permitted directories to sensitive system files
  • Node.js processes accessing files outside their explicitly configured permission scope
  • Unusual directory structures with nested symlinks pointing to relative paths

Detection Strategies

  • Monitor Node.js application logs for permission-related warnings or errors that may indicate attempted bypass
  • Implement file integrity monitoring on sensitive system files and directories
  • Use system-level auditing tools (auditd on Linux) to track symlink creation and file access patterns
  • Deploy runtime application security monitoring that can detect anomalous file system access
  • Review application code for dynamic symlink creation, especially with user-controlled path components

Monitoring Recommendations

  • Enable comprehensive file system access logging for Node.js applications using the Permissions model
  • Configure alerts for symlink creation events within application working directories
  • Monitor for access attempts to sensitive paths like /etc/, /root/, and application configuration directories
  • Implement behavioral baselines for file system access patterns to detect deviations
  • Track process execution with unusual combinations of --allow-fs-read and --allow-fs-write flags

How to Mitigate CVE-2025-55130

Immediate Actions Required

  • Upgrade Node.js to the patched versions released in the December 2025 security update
  • Review and audit all applications that rely on the experimental Permissions model for security isolation
  • Consider implementing additional sandboxing mechanisms (containers, VMs) as defense-in-depth
  • Restrict the ability to create symbolic links within permitted directories where possible
  • Monitor systems for exploitation attempts while applying patches

Patch Information

Security patches addressing this vulnerability are available through the Node.js December 2025 Security Releases. Users should update to the latest patched versions of Node.js v20, v22, v24, and v25 immediately.

The patch corrects the path resolution logic in the Permissions model to properly canonicalize paths containing symbolic links before validating them against the allowed paths list. This ensures that symlink chains cannot be used to escape the permitted file system boundaries.

Workarounds

  • Disable the use of the experimental Permissions model if not strictly required and rely on OS-level sandboxing instead
  • Implement filesystem-level restrictions using chroot, containers, or similar isolation technologies
  • Configure the operating system to restrict symlink creation for the user account running Node.js applications
  • Use read-only filesystem mounts where write access is not required
  • Deploy SELinux or AppArmor policies to enforce additional file access restrictions on Node.js processes
bash
# Example: Running Node.js in a container with restricted filesystem access
# This provides defense-in-depth beyond the Permissions model

docker run --rm \
  --read-only \
  --tmpfs /tmp:noexec,nosuid,size=64m \
  --security-opt=no-new-privileges:true \
  -v /app:/app:ro \
  node:latest node --experimental-permission --allow-fs-read=/app /app/script.js

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechNode Js

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-289
  • Technical References
  • Node.js December 2025 Security Releases
  • Related CVEs
  • CVE-2026-21717: Node.js V8 Hash Collision DoS Vulnerability

  • CVE-2025-59464: Node.js OpenSSL Memory Leak DoS Vulnerability

  • CVE-2026-21636: Node.js Privilege Escalation Vulnerability

  • CVE-2025-55132: Node.js Privilege Escalation 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