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
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • 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-42044

CVE-2026-42044: Axios Privilege Escalation Vulnerability

CVE-2026-42044 is a privilege escalation vulnerability in Axios HTTP client that enables prototype pollution gadget attacks to modify JSON responses. This article covers technical details, affected versions, and mitigation.

Published: April 30, 2026

CVE-2026-42044 Overview

CVE-2026-42044 is a Prototype Pollution vulnerability affecting Axios, a popular promise-based HTTP client library for browsers and Node.js. This vulnerability allows attackers to exploit prototype pollution elsewhere in an application's dependency tree to achieve surgical, invisible modification of all JSON API responses. The attack can lead to privilege escalation, balance manipulation, and authorization bypass through the manipulation of Axios's response transformation mechanism.

Critical Impact

Attackers can manipulate any JSON API response processed by Axios, enabling privilege escalation, financial balance manipulation, and authorization bypass without detection.

Affected Products

  • Axios versions 1.0.0 to 1.15.1 (Node.js)
  • Axios for browser environments (versions 1.0.0 to 1.15.1)
  • Applications using Axios with vulnerable dependency chains

Discovery Timeline

  • 2026-04-24 - CVE CVE-2026-42044 published to NVD
  • 2026-04-27 - Last updated in NVD database

Technical Details for CVE-2026-42044

Vulnerability Analysis

This vulnerability represents a Prototype Pollution "Gadget" attack that transforms existing prototype pollution vulnerabilities in an application's dependency chain into a powerful exploitation primitive. The attack targets the default transformResponse function in Axios, which processes all incoming JSON data from API calls.

The core issue resides in the lib/defaults/index.js file at line 124, where Axios calls JSON.parse(data, this.parseReviver). The this context refers to the merged configuration object. Because parseReviver is not defined in Axios defaults, not validated by assertOptions, and not subject to any constraints, the function is susceptible to prototype pollution.

When an attacker pollutes Object.prototype.parseReviver with a malicious function, that function is invoked for every key-value pair in every JSON response processed by Axios. This gives the attacker the ability to selectively modify individual values while leaving the rest of the response intact, making the attack extremely difficult to detect.

Root Cause

The root cause is the lack of proper initialization and validation of the parseReviver property in the Axios configuration object. The JSON.parse reviver function parameter is designed to transform parsing results, but Axios does not explicitly set this to undefined or validate its presence/type. This allows prototype pollution attacks to inject a malicious reviver function through Object.prototype.parseReviver, which then gets inherited by all configuration objects.

Attack Vector

The attack is network-accessible and requires no authentication or user interaction. An attacker must first establish prototype pollution somewhere in the application's dependency tree—this could be through a separate vulnerability in any npm package. Once Object.prototype.parseReviver is polluted with a malicious function, every subsequent JSON response parsed by Axios will pass through this function.

The malicious reviver function receives the key and value for each parsed JSON property, allowing the attacker to:

  • Modify user role fields to escalate privileges (e.g., changing "role": "user" to "role": "admin")
  • Alter financial values (e.g., account balances, transaction amounts)
  • Bypass authorization checks by manipulating permission flags
  • Inject malicious payloads into response data

The surgical nature of this attack means only targeted fields are modified while the rest of the response remains unchanged, making detection extremely challenging.

Detection Methods for CVE-2026-42044

Indicators of Compromise

  • Unexpected modifications to Object.prototype properties, particularly parseReviver
  • Anomalous behavior in API responses where server logs don't match client-side data
  • Privilege escalation events without corresponding authentication changes
  • Financial discrepancies between server-side calculations and client-displayed values

Detection Strategies

  • Implement runtime monitoring for Object.prototype modifications using Object.freeze(Object.prototype) in development environments
  • Deploy application-level integrity checks comparing server response hashes with received data
  • Use Content Security Policy and Subresource Integrity to detect tampered responses
  • Monitor for unusual property access patterns on configuration objects

Monitoring Recommendations

  • Enable detailed logging for Axios request/response cycles in production environments
  • Implement server-side validation for all critical operations rather than relying on client-side data
  • Set up alerts for unexpected prototype modifications using security monitoring tools
  • Review npm audit reports regularly for prototype pollution vulnerabilities in dependencies

How to Mitigate CVE-2026-42044

Immediate Actions Required

  • Upgrade Axios to version 1.15.2 or later immediately across all projects
  • Audit your application's dependency tree for known prototype pollution vulnerabilities
  • Review recent security incidents for potential exploitation of this vulnerability
  • Implement server-side validation for all authorization and financial operations

Patch Information

The vulnerability is fixed in Axios version 1.15.2. The patch ensures that the parseReviver property is properly handled and cannot be inherited from Object.prototype. Refer to the GitHub Security Advisory for complete details.

To update Axios in your project:

bash
# Using npm
npm update axios

# Using yarn
yarn upgrade axios

# Verify installed version
npm list axios

Workarounds

  • Explicitly set transformResponse in your Axios configuration to override the default behavior
  • Freeze Object.prototype early in your application initialization (note: may cause compatibility issues)
  • Implement custom response interceptors that validate response integrity before processing
  • Use a wrapper around Axios that sanitizes the configuration object before each request
bash
# Configuration example
# Explicitly define transformResponse in your Axios instance to prevent prototype pollution
# This ensures parseReviver cannot be inherited from Object.prototype

# In your axios configuration file:
# const axiosInstance = axios.create({
#   transformResponse: [(data) => {
#     if (typeof data === 'string') {
#       try {
#         return JSON.parse(data);
#       } catch (e) {
#         return data;
#       }
#     }
#     return data;
#   }]
# });

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechAxios

  • SeverityCRITICAL

  • CVSS Score9.1

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-915
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-42040: Axios Null Byte Encoding Vulnerability

  • CVE-2026-42041: Axios Auth Bypass Vulnerability

  • CVE-2026-42042: Axios HTTP Client CSRF Vulnerability

  • CVE-2026-42043: Axios HTTP Client SSRF 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