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

CVE-2025-69263: pnpm Package Manager RCE Vulnerability

CVE-2025-69263 is a remote code execution flaw in pnpm package manager that allows attackers to serve malicious code via HTTP tarball dependencies. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-69263 Overview

CVE-2025-69263 is a supply chain security vulnerability affecting pnpm, a popular Node.js package manager. Versions 10.26.2 and below fail to store integrity hashes for HTTP tarball dependencies and git-hosted tarballs in the lockfile. This critical oversight allows a remote server to serve different content on each installation, even when a lockfile is committed to the repository, effectively bypassing the lockfile's primary security guarantee.

Critical Impact

Attackers who publish packages with HTTP tarball dependencies can serve different malicious code to different users or CI/CD environments, enabling targeted supply chain attacks that bypass lockfile protections.

Affected Products

  • pnpm versions 10.26.2 and below
  • Applications using HTTP tarball dependencies in their dependency tree
  • CI/CD pipelines relying on pnpm lockfile integrity

Discovery Timeline

  • 2026-01-07 - CVE CVE-2025-69263 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2025-69263

Vulnerability Analysis

This vulnerability represents a Download of Code Without Integrity Check (CWE-494) in pnpm's lockfile handling mechanism. The core issue lies in how pnpm processes HTTP tarball dependencies and git-hosted tarballs. When these types of dependencies are resolved, pnpm fails to compute and store cryptographic integrity hashes in the pnpm-lock.yaml file.

Lockfiles serve as a critical security mechanism in modern package managers, ensuring that every installation reproduces the exact same dependency tree with identical package contents. Without integrity hashes, the lockfile becomes merely a list of URLs rather than a cryptographic commitment to specific package contents. This allows a malicious package maintainer or a compromised hosting server to serve different code to different users while the lockfile appears unchanged.

The attack surface is particularly concerning for enterprise environments where CI/CD pipelines may receive different code than developer machines, making traditional code review processes ineffective at detecting malicious modifications.

Root Cause

The root cause stems from incomplete integrity verification in pnpm's dependency resolution and lockfile generation logic. When processing HTTP tarball dependencies, the resolver retrieves and installs packages without computing SHA-512 or other integrity hashes. The lockfile writer then stores the dependency reference without the integrity field that would normally contain a Subresource Integrity (SRI) hash.

This architectural gap exists specifically for HTTP-based tarballs and git-hosted tarballs, while npm registry packages typically include integrity information from the registry itself.

Attack Vector

The attack exploits the network-based nature of HTTP tarball dependencies. An attacker can publish a legitimate-appearing package to npm that references an HTTP tarball they control. The attack flow proceeds as follows:

  1. Attacker publishes a package with an HTTP tarball dependency to a public or private registry
  2. Victim installs the package, and pnpm adds the dependency to the lockfile without an integrity hash
  3. Victim commits the lockfile to version control
  4. Attacker modifies the tarball content on their server
  5. Subsequent installations (other developers, CI/CD) receive the modified malicious code
  6. The lockfile provides no warning since no integrity hash was ever recorded

The vulnerability requires user interaction (installing the malicious package) and network access, with the attacker needing to control or compromise the HTTP tarball hosting location.

The fix introduces proper project registration and integrity tracking through the @pnpm/package-store module:

typescript
 } from '@pnpm/types'
 import pathAbsolute from 'path-absolute'
 import clone from 'ramda/src/clone'
+import { registerProject } from '@pnpm/package-store'
 import { readLockfiles } from './readLockfiles.js'

 /**

Source: GitHub Commit

The patch adds the package-store module as a dependency in the build configuration:

text
     {
       "path": "../../resolving/resolver-base"
     },
+    {
+      "path": "../../store/package-store"
+    },
     {
       "path": "../modules-yaml"
     },

Source: GitHub Commit

Detection Methods for CVE-2025-69263

Indicators of Compromise

  • Lockfile entries for HTTP tarball dependencies lacking integrity field
  • Dependencies with URLs starting with http:// or https:// pointing to non-registry hosts
  • Discrepancies between installed package contents across different environments
  • Git-hosted tarball references in pnpm-lock.yaml without cryptographic verification

Detection Strategies

  • Audit pnpm-lock.yaml files for dependencies referencing HTTP tarballs or git-hosted packages
  • Implement CI/CD checks that compare package checksums between development and deployment environments
  • Monitor for unexpected network requests to non-standard package hosting locations during installation
  • Use software composition analysis (SCA) tools to flag dependencies without integrity verification

Monitoring Recommendations

  • Enable verbose logging during pnpm installations to track all dependency sources
  • Implement network monitoring to detect connections to unexpected tarball hosting servers
  • Configure alerts for lockfile modifications that remove or omit integrity hashes
  • Review dependency trees for packages introducing HTTP tarball dependencies

How to Mitigate CVE-2025-69263

Immediate Actions Required

  • Upgrade pnpm to version 10.26.0 or later immediately
  • Audit existing pnpm-lock.yaml files for HTTP tarball dependencies without integrity hashes
  • Re-generate lockfiles after upgrading to ensure integrity hashes are computed
  • Review dependency trees for packages using HTTP or git-hosted tarballs

Patch Information

The vulnerability is fixed in pnpm version 10.26.0. The fix ensures that HTTP tarball dependencies and git-hosted tarballs are stored in the lockfile with proper integrity hashes, preventing content substitution attacks.

For detailed patch information, refer to the GitHub Security Advisory and the commit implementing the fix.

Workarounds

  • Avoid using packages that depend on HTTP tarballs until upgrading is possible
  • Manually verify package contents against known-good checksums before deployment
  • Use private registries with integrity verification for all dependencies
  • Implement strict network policies preventing installations from untrusted HTTP sources
bash
# Upgrade pnpm to the patched version
npm install -g pnpm@latest

# Verify pnpm version
pnpm --version

# Regenerate lockfile with integrity hashes
rm pnpm-lock.yaml
pnpm install

# Audit lockfile for missing integrity hashes
grep -B5 -A5 "tarball:" pnpm-lock.yaml | grep -L "integrity:"

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechPnpm

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityHigh
  • AvailabilityHigh
  • CWE References
  • CWE-494
  • Technical References
  • GitHub Commit Update

  • GitHub Security Advisory
  • Related CVEs
  • CVE-2025-69264: Pnpm Package Manager RCE Vulnerability

  • CVE-2025-69262: pnpm Command Injection RCE Vulnerability

  • CVE-2026-23888: Pnpm Path Traversal Vulnerability

  • CVE-2026-23890: Pnpm Path Traversal 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