banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
    • 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 Framework Privilege Escalation Flaw

CVE-2026-25150 is a prototype pollution privilege escalation vulnerability in Qwik framework that allows attackers to manipulate Object.prototype via crafted POST requests. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: February 6, 2026

CVE-2026-25150 Overview

A critical prototype pollution vulnerability has been identified in the Qwik JavaScript framework, specifically within the formToObj() function of the @builder.io/qwik-city middleware. This vulnerability allows unauthenticated remote attackers to manipulate Object.prototype by sending specially crafted HTTP POST requests containing malicious form field names using dot notation.

The formToObj() function processes form field names with dot notation (e.g., user.name) to create nested objects but fails to sanitize dangerous property names including __proto__, constructor, and prototype. This oversight enables attackers to inject arbitrary properties into the JavaScript Object prototype, affecting all objects in the application runtime.

Critical Impact

Unauthenticated attackers can achieve privilege escalation, authentication bypass, or denial of service through prototype pollution by sending crafted HTTP POST requests to any Qwik application using the affected middleware.

Affected Products

  • Qwik Framework versions prior to 1.19.0
  • @builder.io/qwik-city middleware package
  • Applications using form parsing functionality in affected versions

Discovery Timeline

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

Technical Details for CVE-2026-25150

Vulnerability Analysis

This prototype pollution vulnerability (CWE-1321) exists in the form parsing middleware of the Qwik framework. The vulnerability allows attackers to modify the prototype chain of JavaScript objects without authentication, potentially compromising the entire application's security model.

When a form submission is processed, the formToObj() function iterates through form field names and uses dot notation to create nested object structures. The function did not validate whether the property names being set correspond to protected prototype properties. By submitting form fields with names like __proto__.isAdmin or constructor.prototype.authorized, an attacker can inject properties that will be inherited by all objects created after the pollution occurs.

The consequences of successful exploitation include authentication bypass if the application checks for user properties that can be polluted, privilege escalation by injecting administrative flags, and denial of service through property pollution that breaks application logic.

Root Cause

The root cause lies in the lack of input sanitization for dangerous JavaScript property names within the formToObj() function. The function uses a reduce() operation to build nested objects from dot-separated field names without checking if those names reference prototype chain properties. Specifically, the original implementation allowed form field names containing __proto__, constructor, or prototype to be processed normally, enabling direct manipulation of Object.prototype.

Attack Vector

The attack is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending an HTTP POST request with form data containing specially crafted field names:

  1. Attacker identifies a Qwik application using the vulnerable @builder.io/qwik-city middleware
  2. Attacker crafts a POST request with form fields like __proto__.polluted=true
  3. The formToObj() function processes the request and pollutes Object.prototype
  4. All subsequently created objects inherit the polluted properties
  5. Application logic depending on property existence or truthiness may behave unexpectedly
typescript
// Security patch demonstrating the vulnerability fix
// Source: https://github.com/QwikDev/qwik/commit/5f65bae2bc33e6ca0c21e4cfcf9eae05077716f7

+import { describe, it, expect } from 'vitest';
+import { formToObj } from './request-event';
+
+describe('formToObj', () => {
+  describe('Object prototype pollution', () => {
+    it('blocks __proto__ pollution via dotted notation', () => {
+      delete (Object.prototype as any).polluted;
+
+      const fd = new FormData();
+      fd.append('__proto__.polluted', '1');
+
+      formToObj(fd);
+
+      expect(({} as any).polluted).toBeUndefined();
+
+      delete (Object.prototype as any).polluted;
+    });
+
+    it('blocks __proto__[] pollution via array notation', () => {
+      delete (Object.prototype as any).polluted;
+
+      const fd = new FormData();
+      fd.append('__proto__[]', 'x');
+
+      const res = formToObj(fd);
+
+      expect(({} as any).polluted).toBeUndefined();
+      expect(Object.prototype.hasOwnProperty.call(res, '__proto__')).toBe(false);
+
+      delete (Object.prototype as any).polluted;

The patch implements a isDangerousKey() function and creates objects using Object.create(null) to prevent prototype chain pollution:

typescript
// Core fix in request-event.ts
// Source: https://github.com/QwikDev/qwik/commit/5f65bae2bc33e6ca0c21e4cfcf9eae05077716f7

   return undefined;
 };
 
-const formToObj = (formData: FormData): Record<string, any> => {
+const isDangerousKey = (k: string) => k === '__proto__' || k === 'constructor' || k === 'prototype';
+
+export const formToObj = (formData: FormData): Record<string, any> => {
   /**
    * Convert FormData to object Handle nested form input using dot notation Handle array input using
    * indexed dot notation (name.0, name.0) or bracket notation (name[]), the later is needed for
    * multiselects Create values object by form data entries
    */
-  const values = [...formData.entries()].reduce<any>((values, [name, value]) => {
-    name.split('.').reduce((object: any, key: string, index: number, keys: any) => {
-      // Backet notation for arrays, notibly for multi selects
+  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;

Detection Methods for CVE-2026-25150

Indicators of Compromise

  • HTTP POST requests containing form field names with __proto__, constructor, or prototype segments
  • Unusual application behavior indicating object property pollution
  • Authentication or authorization anomalies where users gain unexpected privileges
  • Application crashes or errors related to unexpected object properties

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block requests containing prototype pollution patterns in form data
  • Monitor application logs for form submissions with suspicious field names containing __proto__, constructor, or prototype
  • Deploy runtime application self-protection (RASP) solutions that can detect prototype pollution attempts
  • Use SentinelOne Singularity XDR to correlate network and application layer events for comprehensive threat detection

Monitoring Recommendations

  • Enable detailed logging for form processing in Qwik applications to capture suspicious input patterns
  • Set up alerts for authentication or authorization changes that occur without corresponding user actions
  • Monitor for unexpected properties appearing on JavaScript objects in production environments
  • Implement anomaly detection for HTTP request payloads targeting form endpoints

How to Mitigate CVE-2026-25150

Immediate Actions Required

  • Upgrade @builder.io/qwik-city to version 1.19.0 or later immediately
  • Audit application code for custom form parsing logic that may be similarly vulnerable
  • Review application logs for any historical exploitation attempts
  • Implement input validation at the WAF layer as defense-in-depth

Patch Information

The vulnerability has been patched in Qwik version 1.19.0. The fix introduces a isDangerousKey() helper function that blocks processing of form fields containing __proto__, constructor, or prototype in their names. Additionally, the fix uses Object.create(null) to create objects without a prototype chain, providing defense-in-depth against prototype pollution.

For detailed patch information, refer to the GitHub Security Advisory GHSA-xqg6-98cw-gxhq and the security patch commit.

Workarounds

  • Deploy a WAF rule to block HTTP POST requests containing __proto__, constructor, or prototype in form field names
  • Implement server-side input validation to reject form submissions with dangerous property names before they reach the Qwik middleware
  • Use reverse proxy filtering to sanitize incoming form data
  • Consider temporarily disabling form processing endpoints if patching is not immediately possible
bash
# Example nginx configuration to block prototype pollution attempts
location / {
    # Block requests with prototype pollution patterns in body
    if ($request_body ~* "__proto__|constructor\.prototype|prototype\.") {
        return 403;
    }
    proxy_pass http://qwik_backend;
}

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 Score9.3

  • EPSS Probability0.02%

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

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

  • CVE-2026-25151: Qwik Framework CSRF Vulnerability

  • CVE-2026-25155: Qwik Framework CSRF Vulnerability

  • CVE-2026-25148: Qwik.js Framework XSS 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
  • English
  • 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