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

CVE-2025-55132: Node.js Privilege Escalation Vulnerability

CVE-2025-55132 is a privilege escalation flaw in Node.js that allows modification of file timestamps with read-only permissions. This post covers the technical details, affected versions, impact, and mitigation.

Published: January 23, 2026

CVE-2025-55132 Overview

A flaw in Node.js's permission model allows a file's access and modification timestamps to be changed via futimes() even when the process has only read permissions. Unlike utimes(), futimes() does not apply the expected write-permission checks, which means file metadata can be modified in read-only directories. This behavior could be used to alter timestamps in ways that obscure activity, reducing the reliability of logs.

Critical Impact

This vulnerability enables timestamp manipulation on files without proper write permissions, potentially allowing attackers to obscure forensic evidence and reduce the reliability of audit logs in environments using Node.js's permission model.

Affected Products

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

Discovery Timeline

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

Technical Details for CVE-2025-55132

Vulnerability Analysis

This vulnerability is classified as CWE-276 (Incorrect Default Permissions) and represents a permission model bypass in Node.js. The issue stems from an inconsistency in how the Node.js permission model handles file timestamp modification operations.

When Node.js's permission model is enabled, the utimes() function correctly verifies that a process has write permissions before allowing modification of a file's access and modification timestamps. However, the futimes() function—which performs the same operation using a file descriptor rather than a file path—does not enforce the same permission checks.

This discrepancy allows a process with only read access to a file to successfully modify its timestamps through the futimes() syscall. While this does not allow modification of file contents, it can be leveraged to manipulate forensic artifacts and obscure malicious activity.

Root Cause

The root cause is an inconsistent permission validation implementation between the utimes() and futimes() functions within Node.js's permission model. While utimes() properly validates write permissions before allowing timestamp modifications, futimes() bypasses these checks when operating on file descriptors, creating a security gap that violates the principle of least privilege.

Attack Vector

The attack requires local access to the system and involves exploiting the permission model bypass through the following mechanism:

A malicious actor with read-only access to sensitive files or directories protected by Node.js's permission model can leverage the futimes() function to modify file timestamps. By opening a file for reading (which is permitted) and then calling futimes() on the resulting file descriptor, the attacker can alter the access and modification timestamps without having write permissions.

This technique can be used to backdate files to hide recent modifications, manipulate log file timestamps to obscure the timeline of an attack, or interfere with file integrity monitoring systems that rely on timestamp analysis.

Detection Methods for CVE-2025-55132

Indicators of Compromise

  • Unexpected changes to file timestamps, particularly on files in read-only directories or files that should not have been modified
  • Discrepancies between file modification timestamps and actual file content changes
  • Evidence of futimes() syscalls in audit logs from processes that should only have read access

Detection Strategies

  • Enable system-level auditing for futimes() syscalls and correlate with process permission models
  • Implement file integrity monitoring that tracks both content hashes and metadata changes independently
  • Monitor Node.js application logs for unusual file descriptor operations on protected files

Monitoring Recommendations

  • Configure auditd or similar tools to log all timestamp modification operations (utimes, futimes, utime syscalls)
  • Establish baseline timestamp patterns for critical files and alert on anomalous modifications
  • Review Node.js permission model configurations to identify files that may be at risk

How to Mitigate CVE-2025-55132

Immediate Actions Required

  • Update Node.js to the latest patched version for your release line (v20, v22, v24, or v25)
  • Review applications using Node.js's permission model to identify potentially affected file operations
  • Implement additional file integrity monitoring on sensitive files as a defense-in-depth measure

Patch Information

Node.js has released security updates addressing this vulnerability. Organizations should update to the patched versions as documented in the Node.js December 2025 Security Releases.

For environments where immediate patching is not possible, consider the workarounds below while planning the upgrade.

Workarounds

  • Avoid relying solely on Node.js's permission model for protecting sensitive file timestamps; implement OS-level access controls as an additional layer
  • Use immutable file attributes where supported by the filesystem to prevent timestamp modifications
  • Implement independent timestamp verification through cryptographic attestation rather than relying on filesystem metadata

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechNode Js

  • SeverityLOW

  • CVSS Score2.8

  • EPSS Probability0.00%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.0/AV:L/AC:L/PR:L/UI:R/S:U/C:L/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-276
  • Technical References
  • Node.js December 2025 Security Releases
  • Related CVEs
  • CVE-2026-21636: Node.js Privilege Escalation Vulnerability

  • CVE-2024-36137: Node.js Privilege Escalation Vulnerability

  • CVE-2026-21717: Node.js V8 Hash Collision DoS Vulnerability

  • CVE-2025-59464: Node.js OpenSSL Memory Leak DoS 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