A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-25150

CVE-2026-25150: Qwik Privilege Escalation Vulnerability

CVE-2026-25150 is a privilege escalation vulnerability in Qwik caused by prototype pollution in formToObj(). Attackers can exploit this to bypass authentication or cause denial of service. This article covers technical details, affected versions, impact, and mitigation.

Updated: May 14, 2026

CVE-2026-25150 Overview

CVE-2026-25150 is a prototype pollution vulnerability in the Qwik JavaScript framework, specifically within the @builder.io/qwik-city middleware. The formToObj() function processes form field names using dot notation to construct nested objects but does not sanitize dangerous property names such as __proto__, constructor, and prototype. Unauthenticated attackers can send crafted HTTP POST requests with malicious form field names to pollute Object.prototype across the application. The flaw affects all versions prior to 1.19.0 and is tracked under CWE-1321: Improperly Controlled Modification of Object Prototype Attributes.

Critical Impact

Successful exploitation enables privilege escalation, authentication bypass, or denial of service against any Qwik City application accepting form submissions.

Affected Products

  • Qwik framework versions prior to 1.19.0
  • @builder.io/qwik-city middleware (Node.js)
  • Applications using formToObj() for form data parsing

Discovery Timeline

  • 2026-02-03 - CVE-2026-25150 published to NVD
  • 2026-02-10 - Last updated in NVD database

Technical Details for CVE-2026-25150

Vulnerability Analysis

The vulnerability resides in the formToObj() function inside packages/qwik-city/src/middleware/request-handler/request-event.ts. The function converts FormData entries into nested JavaScript objects by splitting form field names on the dot character and recursively assigning properties. Because the original implementation used a plain object as the accumulator and did not filter reserved property names, an attacker can submit a form field named __proto__.polluted=1 and inject properties directly onto Object.prototype.

Once polluted, every object in the running Node.js process inherits the attacker-controlled property. Downstream code that checks object properties without using hasOwnProperty may treat injected values as legitimate configuration, authentication flags, or role assignments. The attack requires no authentication and works against any endpoint that consumes form data through the affected middleware.

Root Cause

The root cause is missing validation of property keys during recursive object construction. The original reducer split each field name on . and assigned values without rejecting __proto__, constructor, or prototype segments. Combined with the use of a standard object literal as the accumulator, this allowed traversal into the prototype chain.

Attack Vector

An attacker sends an HTTP POST request with a multipart/form-data or application/x-www-form-urlencoded body containing crafted field names. Both dot notation (__proto__.polluted) and bracket notation (__proto__[]) are exploitable in unpatched versions.

typescript
// Patch from packages/qwik-city/src/middleware/request-handler/request-event.ts
const isDangerousKey = (k: string) => k === '__proto__' || k === 'constructor' || k === 'prototype';

export const formToObj = (formData: FormData): Record<string, any> => {
  const values = Object.create(null);

  for (const [name, value] of formData) {
    const keys = name.split('.');
    let hasDangerousKey = false;

    for (let i = 0; i < keys.length; i++) {
      if (isDangerousKey(keys[i])) {
        hasDangerousKey = true;
        break;
      }
    }

    if (hasDangerousKey) {
      continue;
    }
    // ...
  }
};
// Source: https://github.com/QwikDev/qwik/commit/5f65bae2bc33e6ca0c21e4cfcf9eae05077716f7

The fix introduces an isDangerousKey helper, switches the accumulator to Object.create(null), and skips any field name containing a reserved key segment.

Detection Methods for CVE-2026-25150

Indicators of Compromise

  • HTTP POST requests containing form field names with __proto__, constructor, or prototype substrings
  • Unexpected properties appearing on objects returned by route action handlers
  • Anomalous application behavior such as bypassed authorization checks following form submissions
  • Server-side errors referencing inherited properties not defined in source code

Detection Strategies

  • Inspect web server and application logs for POST bodies containing __proto__, constructor., or prototype. field name patterns
  • Run software composition analysis against package.json and lockfiles to flag @builder.io/qwik-city versions below 1.19.0
  • Deploy a web application firewall rule that blocks request bodies containing reserved JavaScript property names in form keys

Monitoring Recommendations

  • Alert on HTTP 5xx error spikes correlated with form submission endpoints
  • Monitor for unusual privilege transitions or session role changes immediately after POST requests
  • Track outbound network connections from Node.js processes that begin after form-handling traffic

How to Mitigate CVE-2026-25150

Immediate Actions Required

  • Upgrade Qwik and @builder.io/qwik-city to version 1.19.0 or later across all environments
  • Audit application code for any custom form parsers using dot-notation key splitting and apply equivalent key filtering
  • Review recent form submission logs for indicators consistent with prototype pollution attempts

Patch Information

The vulnerability is patched in Qwik version 1.19.0 via commit 5f65bae2bc33e6ca0c21e4cfcf9eae05077716f7. Full details are available in the GitHub Security Advisory GHSA-xqg6-98cw-gxhq.

Workarounds

  • Place a reverse proxy or WAF rule in front of Qwik applications that rejects form submissions whose field names match __proto__, constructor, or prototype
  • Wrap calls to formToObj() with a pre-validation step that drops keys containing reserved property names
  • Freeze Object.prototype at application startup using Object.freeze(Object.prototype) to limit pollution impact
bash
# Upgrade Qwik to the patched release
npm install @builder.io/qwik@^1.19.0 @builder.io/qwik-city@^1.19.0

# Verify installed version
npm ls @builder.io/qwik-city

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

  • Vulnerability Details
  • TypePrivilege Escalation

  • Vendor/TechQwik

  • SeverityCRITICAL

  • CVSS Score10.0

  • EPSS Probability0.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-1321
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Security Advisory GHSA-xqg6-98cw-gxhq
  • Related CVEs
  • CVE-2026-32701: Qwik Framework DOS Vulnerability

  • CVE-2026-27971: Qwik Framework RCE Vulnerability

  • CVE-2026-25151: Qwik Framework CSRF Vulnerability

  • CVE-2026-25155: Qwik Framework CSRF Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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