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

CVE-2026-1615: jsonpath Package RCE Vulnerability

CVE-2026-1615 is a remote code execution flaw in the jsonpath package that allows arbitrary code injection through malicious JSON Path expressions. This article covers technical details, affected methods, and mitigation.

Published: February 13, 2026

CVE-2026-1615 Overview

CVE-2026-1615 is a critical arbitrary code injection vulnerability affecting all versions of the jsonpath npm package. The vulnerability exists due to unsafe evaluation of user-supplied JSON Path expressions through the static-eval module, which is not designed to handle untrusted data safely. This flaw enables attackers to execute arbitrary JavaScript code in Node.js environments or achieve Cross-site Scripting (XSS) in browser contexts.

Critical Impact

Attackers can achieve Remote Code Execution (RCE) in Node.js server environments or execute malicious scripts in user browsers by crafting malicious JSON Path expressions, potentially compromising entire application infrastructure.

Affected Products

  • jsonpath npm package (all versions)
  • org.webjars.npm:jsonpath (Java WebJars wrapper)
  • Applications using jsonpath methods: .query, .nodes, .paths, .value, .parent, and .apply

Discovery Timeline

  • 2026-02-09 - CVE-2026-1615 published to NVD
  • 2026-02-09 - Last updated in NVD database

Technical Details for CVE-2026-1615

Vulnerability Analysis

This vulnerability represents a classic code injection flaw (CWE-94) stemming from insufficient input validation when processing JSON Path expressions. The jsonpath library delegates expression evaluation to the static-eval module, which was designed for processing trusted code in controlled environments—not for sanitizing arbitrary user input.

When an application passes user-controlled JSON Path strings to any of the vulnerable methods (.query, .nodes, .paths, .value, .parent, or .apply), the static-eval module interprets and executes the expression. An attacker can craft a malicious JSON Path that breaks out of the intended evaluation context and executes arbitrary JavaScript code.

In Node.js environments, successful exploitation grants attackers the ability to execute system commands, read sensitive files, establish reverse shells, or pivot to other systems. In browser contexts, the vulnerability manifests as XSS, enabling session hijacking, credential theft, or delivery of malicious payloads to users.

Root Cause

The root cause lies in the architectural decision to use static-eval for processing JSON Path expressions without implementing proper sandboxing or input sanitization. The static-eval module explicitly states it is not suitable for evaluating untrusted code, yet the jsonpath library passes user input directly to it. The vulnerable code path can be traced to the handlers.js file where expression evaluation occurs without adequate security controls.

Attack Vector

The attack vector is network-based, requiring no authentication or user interaction. An attacker needs only to supply a malicious JSON Path expression to an application endpoint that processes JSON Path queries. Common attack scenarios include:

  • REST APIs accepting JSON Path parameters for data filtering
  • GraphQL resolvers using jsonpath for field selection
  • Web applications with client-side JSON Path evaluation
  • Backend services processing JSON Path expressions from message queues or external data sources

The exploitation mechanism involves injecting JavaScript code within a JSON Path expression that appears syntactically valid but contains payloads that execute during evaluation. The lack of input validation means attackers can leverage JavaScript's dynamic evaluation capabilities to break out of the intended sandboxed context.

Detection Methods for CVE-2026-1615

Indicators of Compromise

  • Unusual JSON Path expressions in application logs containing JavaScript syntax such as require(), eval(), process, or child_process
  • Unexpected outbound network connections from Node.js application processes
  • Anomalous process spawning originating from the Node.js runtime
  • Application errors or crashes related to JSON Path evaluation with stack traces referencing static-eval

Detection Strategies

  • Implement application-layer monitoring to flag JSON Path inputs containing JavaScript keywords or dangerous function names
  • Deploy runtime application self-protection (RASP) to detect and block code injection attempts
  • Configure web application firewalls (WAF) with rules to detect JSON Path injection patterns
  • Enable detailed logging of all JSON Path operations including the full expression string for forensic analysis

Monitoring Recommendations

  • Audit all application dependencies using npm audit or similar tools to identify vulnerable jsonpath installations
  • Monitor process execution patterns for Node.js applications to detect unauthorized command execution
  • Implement alerting for unusual JavaScript evaluation patterns in application telemetry
  • Review application logs for JSON Path expressions containing suspicious patterns like constructor, __proto__, or function invocations

How to Mitigate CVE-2026-1615

Immediate Actions Required

  • Identify all applications and services using the jsonpath npm package or its WebJars wrapper
  • Implement strict input validation to sanitize or reject JSON Path expressions from untrusted sources
  • Consider replacing jsonpath with alternative libraries that implement proper sandboxing for untrusted input
  • Deploy additional network segmentation to limit the blast radius of potential RCE exploitation

Patch Information

At the time of publication, no official patch is available for the jsonpath package. The vulnerability affects all versions of the library. Organizations should consult the Snyk JavaScript vulnerability advisory and Snyk Java vulnerability advisory for the latest remediation guidance. The vulnerable code resides in the handlers.js file of the jsonpath repository.

Workarounds

  • Implement a whitelist-based validation layer that only permits known-safe JSON Path patterns
  • Wrap jsonpath calls with input sanitization that strips or escapes potential code injection payloads
  • Run Node.js applications processing untrusted JSON Path input in isolated containers with minimal privileges
  • Consider using alternative JSON Path implementations such as jsonpath-plus with appropriate security configurations
bash
# Identify vulnerable jsonpath installations in your project
npm ls jsonpath

# Check for known vulnerabilities in dependencies
npm audit

# Consider using an alternative package with security controls
npm uninstall jsonpath
npm install jsonpath-plus --save

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechJsonpath

  • SeverityCRITICAL

  • CVSS Score9.2

  • EPSS Probability0.22%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/UI:N/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N/E:P/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
  • AvailabilityHigh
  • CWE References
  • CWE-94
  • Technical References
  • GitHub Code Reference

  • Snyk Java Vulnerability SNYK-JAVA-ORGWEBJARSNPM-15141219

  • Snyk JS Vulnerability SNYK-JS-JSONPATH-13645034
  • Related CVEs
  • CVE-2025-61140: JSONPath Prototype Pollution Vulnerability
Default Legacy - Prefooter | 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