Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-22028

CVE-2026-22028: Preact Framework XSS Vulnerability

CVE-2026-22028 is a cross-site scripting flaw in Preact framework caused by regression in JSON serialization protection. Attackers can inject HTML and execute scripts through crafted JSON payloads. This article covers technical details, affected versions, impact, and mitigation strategies.

Updated: January 22, 2026

CVE-2026-22028 Overview

CVE-2026-22028 is a Type Confusion vulnerability affecting Preact, a lightweight web development framework. A regression introduced in Preact 10.26.5 weakened the JSON serialization protection designed to prevent Virtual DOM (VNode) elements from being constructed from arbitrary JSON data. This flaw enables attackers to craft specially-formatted JSON payloads that are incorrectly treated as valid VNode objects, potentially resulting in HTML injection and arbitrary script execution.

Critical Impact

Attackers can exploit this vulnerability to achieve HTML injection in vulnerable applications, which may escalate to arbitrary JavaScript execution if Content Security Policy (CSP) or other security measures are not in place.

Affected Products

  • Preact versions 10.26.5 through 10.26.9
  • Preact versions 10.27.0 through 10.27.2
  • Preact versions 10.28.0 through 10.28.1

Discovery Timeline

  • 2026-01-08 - CVE CVE-2026-22028 published to NVD
  • 2026-01-08 - Last updated in NVD database

Technical Details for CVE-2026-22028

Vulnerability Analysis

This vulnerability stems from a type confusion issue (CWE-843) where the framework's strict equality checks for validating VNode objects were inadvertently relaxed. The weakness allows JSON-parsed objects to bypass validation and be incorrectly interpreted as legitimate Virtual DOM nodes by the rendering engine.

Applications are vulnerable when they meet a specific chain of conditions: passing unmodified, unsanitized values from user-modifiable data sources directly into the render tree; assuming these values are strings when the data source could return JavaScript objects; and operating with a data source that either fails to perform type sanitization or has been compromised (such as poisoned local storage, filesystem, or database).

The attack is network-accessible and requires no authentication, though successful exploitation depends on specific application configurations and data handling patterns.

Root Cause

The root cause is a regression in the VNode validation logic introduced in version 10.26.5. The previous strict equality checks that differentiated between legitimate VNode objects and JSON-parsed data were weakened, allowing specially-crafted JSON objects to pass validation and be treated as valid Virtual DOM elements. This type confusion between expected string values and attacker-controlled object structures enables the injection of arbitrary HTML content into the application's render tree.

Attack Vector

The attack vector is network-based, targeting applications that process untrusted JSON data and render it within Preact components. An attacker can exploit this vulnerability by:

  1. Identifying an application endpoint that accepts JSON input and passes values to Preact's render tree
  2. Crafting a malicious JSON payload structured to mimic VNode object properties
  3. Submitting this payload through the vulnerable data path (API, local storage, database, etc.)
  4. The Preact framework incorrectly interprets the JSON object as a valid VNode
  5. Arbitrary HTML is injected into the page, potentially executing scripts if CSP is not configured

The vulnerability mechanism involves the framework's internal validation being bypassed due to relaxed type checking. For detailed technical analysis, refer to the GitHub Security Advisory.

Detection Methods for CVE-2026-22028

Indicators of Compromise

  • Unexpected HTML elements appearing in application output that weren't part of the original template
  • JavaScript execution from data fields that should contain only text content
  • Anomalous JSON payloads in API requests containing object structures mimicking VNode properties
  • Client-side errors related to unexpected Virtual DOM element types in browser console logs

Detection Strategies

  • Monitor application logs for unusual rendering behavior or unexpected component instantiation
  • Implement input validation logging to detect JSON payloads with suspicious object structures
  • Deploy Web Application Firewalls (WAF) with rules to detect potential HTML injection patterns in JSON data
  • Use browser developer tools to inspect rendered DOM for unexpected script tags or event handlers

Monitoring Recommendations

  • Enable verbose logging on data ingestion points that feed into Preact render trees
  • Monitor Content Security Policy violation reports for script execution attempts
  • Track Preact version dependencies across your application portfolio using software composition analysis tools
  • Implement real-time alerting for changes to local storage or database fields that supply render data

How to Mitigate CVE-2026-22028

Immediate Actions Required

  • Upgrade Preact to patched versions 10.26.10, 10.27.3, or 10.28.2 immediately
  • Audit all data paths that pass external data to Preact render functions
  • Implement strict type validation on all JSON data before rendering
  • Enable Content Security Policy headers to mitigate script execution impact

Patch Information

The Preact development team has released patched versions that restore the strict equality checks preventing JSON-parsed objects from being treated as valid VNodes. The following versions contain the fix:

  • 10.26.10 - Patch for the 10.26.x branch
  • 10.27.3 - Patch for the 10.27.x branch
  • 10.28.2 - Patch for the 10.28.x branch

Update your dependencies by running npm update preact or yarn upgrade preact and verify the installed version matches one of the patched releases. For more details, see the GitHub Security Advisory.

Workarounds

  • Validate all input types before passing data to Preact render functions, ensuring expected strings are actually strings
  • Cast or explicitly validate network data types using typeof checks or schema validation libraries
  • Sanitize all external data using HTML encoding or DOM purification libraries before rendering
  • Implement strict Content Security Policy (CSP) headers to prevent execution of injected scripts
  • Review and harden data storage mechanisms (local storage, databases) against injection or poisoning attacks
bash
# Example CSP header configuration to mitigate script execution
# Add to your server configuration or meta tags
Content-Security-Policy: default-src 'self'; script-src 'self'; object-src 'none'; style-src 'self' 'unsafe-inline';

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechPreact

  • SeverityHIGH

  • CVSS Score7.2

  • 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:U/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-843
  • Technical References
  • GitHub Security Advisory
  • Latest CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40255: AdonisJS HTTP Server CSRF 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