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

CVE-2026-34226: Capricorn86 Happy Dom XSS Vulnerability

CVE-2026-34226 is a cross-site scripting flaw in Capricorn86 Happy Dom that causes cookie leakage between origins when using fetch with credentials. This article covers technical details, affected versions, and patches.

Published: April 2, 2026

CVE-2026-34226 Overview

CVE-2026-34226 is an Information Leakage vulnerability in Happy DOM, a JavaScript implementation of a web browser without its graphical user interface. The vulnerability exists in versions prior to 20.8.9 where the library incorrectly handles cookie attachment during fetch requests with credentials: "include". Instead of attaching cookies from the request target URL, Happy DOM attaches cookies from the current page origin (window.location), potentially leaking sensitive authentication cookies from one origin to another.

Critical Impact

This vulnerability enables cross-origin cookie leakage, potentially exposing session tokens and authentication credentials from origin A to a malicious destination B when developers use the fetch API with credential inclusion.

Affected Products

  • capricorn86 happy_dom versions prior to 20.8.9
  • Happy DOM Node.js package (cpe:2.3:a:capricorn86:happy_dom:*:*:*:*:*:nodejs:*:*)

Discovery Timeline

  • 2026-03-27 - CVE CVE-2026-34226 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-34226

Vulnerability Analysis

The vulnerability stems from improper cookie handling in Happy DOM's fetch implementation. When a developer makes a fetch request with the credentials: "include" option, the browser-like environment should attach cookies that belong to the target URL's origin. However, the vulnerable versions of Happy DOM incorrectly reference window.location (the current page's origin) instead of the actual request destination when determining which cookies to include.

This behavior violates the same-origin policy expectations that developers rely on when working with browser-simulating environments. The flaw is particularly concerning in server-side rendering (SSR) scenarios, testing environments, and Node.js applications that use Happy DOM to simulate browser behavior.

Root Cause

The root cause lies in the FetchRequestHeaderUtility.ts file within the Happy DOM codebase. The cookie attachment logic incorrectly uses the window's location to determine which cookies should be sent with outgoing requests, rather than inspecting the actual target URL of the fetch request. This logic error means that when code running in Happy DOM's simulated browser context makes cross-origin requests with credentials included, the wrong set of cookies gets attached to the outgoing request headers.

Attack Vector

The attack vector is network-based and requires no user interaction or special privileges. An attacker could exploit this vulnerability in scenarios where:

  1. A Happy DOM environment is used to process user-controlled content or URLs
  2. The application makes fetch requests with credentials: "include" to external destinations
  3. The attacker controls or can influence the destination URL

In such scenarios, cookies from the current origin (which may contain session tokens, authentication credentials, or other sensitive data) would be incorrectly sent to the attacker-controlled destination. The vulnerability enables complete confidentiality breach of cookie data without requiring any complexity in the attack execution.

Detection Methods for CVE-2026-34226

Indicators of Compromise

  • Unexpected cookie headers appearing in outgoing HTTP requests to third-party domains
  • Session tokens or authentication cookies being transmitted to destinations outside the expected application domain
  • Anomalous cross-origin requests containing credentials that should only be sent to the application's own servers
  • Log entries showing cookie data being sent to unexpected URLs when using Happy DOM

Detection Strategies

  • Audit application dependencies to identify Happy DOM versions prior to 20.8.9
  • Review network traffic logs for fetch requests where cookie domains don't match the request destination
  • Implement monitoring for cross-origin requests that include credentials in Happy DOM-based applications
  • Use Software Composition Analysis (SCA) tools to flag vulnerable Happy DOM versions in your dependency tree

Monitoring Recommendations

  • Enable verbose logging for all outgoing fetch requests in Happy DOM environments
  • Monitor for authentication failures or session anomalies that could indicate cookie theft
  • Implement Content Security Policy (CSP) reporting to detect unexpected outbound connections
  • Set up alerts for any npm package updates that affect Happy DOM in production environments

How to Mitigate CVE-2026-34226

Immediate Actions Required

  • Upgrade Happy DOM to version 20.8.9 or later immediately
  • Audit all applications using Happy DOM to determine if fetch(..., { credentials: "include" }) patterns are used
  • Review logs for any potential cookie leakage that may have occurred before the patch
  • Rotate session tokens and authentication credentials for applications that may have been affected

Patch Information

The vulnerability has been fixed in Happy DOM version 20.8.9. The fix ensures that cookies are correctly attached based on the request target URL rather than the current page origin. The patch details can be found in the GitHub Commit, and the related discussion is available in the GitHub Pull Request. For complete details, review the GitHub Security Advisory GHSA-w4gp-fjgq-3q4g.

Workarounds

  • Avoid using credentials: "include" in fetch requests within Happy DOM until the patch is applied
  • Implement server-side validation to ensure cookies are only accepted from expected origins
  • Use explicit cookie management instead of relying on automatic cookie inclusion
  • Consider temporarily switching to alternative browser simulation libraries if immediate patching is not feasible
bash
# Upgrade Happy DOM to patched version
npm update happy-dom@20.8.9

# Verify installed version
npm list happy-dom

# Alternative: Update package.json to require minimum patched version
# "happy-dom": ">=20.8.9"

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechCapricorn86 Happy Dom

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-201
  • Technical References
  • GitHub Release v20.8.9
  • Vendor Resources
  • GitHub Fetch Utility Code

  • GitHub Commit Details

  • GitHub Pull Request Discussion

  • GitHub Security Advisory GHSA-w4gp-fjgq-3q4g
  • Latest CVEs
  • CVE-2025-70797: LimeSurvey XSS Vulnerability

  • CVE-2025-30650: Juniper Junos OS Auth Bypass Vulnerability

  • CVE-2026-35471: Goshs Path Traversal Vulnerability

  • CVE-2026-35393: Goshs Path Traversal 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