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

CVE-2026-46396: HAX CMS Stored XSS Vulnerability

CVE-2026-46396 is a stored XSS vulnerability in HAX CMS that allows attackers to execute arbitrary JavaScript via malicious iframe elements. This article covers technical details, affected versions, impact, and mitigation.

Published: June 11, 2026

CVE-2026-46396 Overview

CVE-2026-46396 is a stored cross-site scripting (XSS) vulnerability in HAX CMS, an open-source platform that manages microsite ecosystems with PHP or Node.js backends. The flaw exists in versions prior to 26.0.0 and stems from improper sanitization of <iframe> elements. The application accepts javascript: URIs in the src attribute, which execute when a victim loads the malicious page. Attackers exploit this weakness to run arbitrary JavaScript in the victim's browser and access data exposed to client-side scripts. The HAX CMS maintainers fixed the issue in version 26.0.0. The vulnerability is tracked under CWE-79.

Critical Impact

Authenticated attackers can store malicious javascript: URIs inside iframe elements to hijack sessions, exfiltrate sensitive client-side data, and pivot against other users of the CMS.

Affected Products

  • HAX CMS (PHP backend) versions prior to 26.0.0
  • HAX CMS (Node.js backend) versions prior to 26.0.0
  • Microsites and content rendered through vulnerable HAX CMS instances

Discovery Timeline

  • 2026-06-05 - CVE-2026-46396 published to NVD
  • 2026-06-09 - Last updated in NVD database

Technical Details for CVE-2026-46396

Vulnerability Analysis

HAX CMS renders user-supplied content that can include <iframe> elements. The sanitizer enforced by versions prior to 26.0.0 strips common script vectors but permits the src attribute to carry javascript: URIs. When the browser loads the iframe, it evaluates the URI as inline JavaScript inside the parent document's origin. This converts a content authoring feature into a stored XSS primitive.

The attacker payload persists in the CMS data store and executes for every viewer of the affected page. Stored XSS in a CMS context typically allows session theft, credential capture through fake login overlays, forced administrative actions through same-origin requests, and silent modification of additional microsite content.

Root Cause

The root cause is incomplete output sanitization of HTML attribute values. The iframe allowlist focused on tag removal rather than URI scheme validation. Without a strict allowlist that rejects any scheme outside https: and http:, javascript: URIs survive sanitization and reach the DOM as executable code.

Attack Vector

Exploitation requires low privileges sufficient to author or edit content within HAX CMS. The attacker injects an <iframe> element whose src attribute uses a javascript: URI carrying the payload. When another user, often a higher-privileged editor or administrator, opens the page, the script executes in their browser context. User interaction in the form of visiting the page is required. No verified public exploit code is currently available.

For technical specifics, consult the GitHub Security Advisory GHSA-jh3h-rpxg-fr36.

Detection Methods for CVE-2026-46396

Indicators of Compromise

  • Stored content containing <iframe> tags whose src attribute begins with javascript:, data:, or vbscript: schemes.
  • Unexpected outbound requests from authenticated browser sessions to attacker-controlled domains shortly after loading CMS pages.
  • Newly created administrative accounts or content edits that coincide with privileged users visiting suspicious microsite pages.

Detection Strategies

  • Scan the HAX CMS content database for the regular expression <iframe[^>]+src\s*=\s*['\"]\s*javascript: across all stored fields.
  • Review web server access logs for requests to pages that contain iframe payloads, correlating with referrer chains involving editor sessions.
  • Enable a strict Content Security Policy in report-only mode and monitor violation reports for blocked inline script and javascript URI execution attempts.

Monitoring Recommendations

  • Forward CMS audit logs and browser CSP violation reports to a centralized analytics platform for correlation with authentication events.
  • Alert on edits performed by accounts with content authoring privileges that introduce iframe or script-bearing markup.
  • Track session anomalies such as token reuse from new IP addresses immediately after privileged users access pages containing untrusted content.

How to Mitigate CVE-2026-46396

Immediate Actions Required

  • Upgrade all HAX CMS instances to version 26.0.0 or later without delay.
  • Audit existing content for iframe elements using javascript:, data:, or other non-HTTP URI schemes and remove them.
  • Rotate session tokens and review administrator account activity for unauthorized changes introduced before the upgrade.

Patch Information

The HAX CMS maintainers released version 26.0.0, which sanitizes <iframe> elements and rejects javascript: URIs in the src attribute. The fix is documented in the GitHub Security Advisory GHSA-jh3h-rpxg-fr36. Apply the upgrade through the standard package update workflow for the PHP or Node.js deployment in use.

Workarounds

  • Enforce a Content Security Policy that disallows inline script execution and restricts iframe sources to a trusted allowlist.
  • Restrict content authoring privileges to a minimal set of trusted accounts until the upgrade is deployed.
  • Place HAX CMS behind a web application firewall rule that blocks request bodies containing javascript: URIs inside iframe attributes.
bash
# Example CSP header to block javascript: URIs and inline script execution
add_header Content-Security-Policy "default-src 'self'; script-src 'self'; frame-src https:; object-src 'none'; base-uri 'self'";

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechHax Cms

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/VC:H/VI:H/VA:N/SC:H/SI:H/SA:N/E:X/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
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-79
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-46511: HAX CMS Stored XSS Vulnerability

  • CVE-2026-46496: HAX CMS Stored XSS Vulnerability

  • CVE-2026-46392: HAX CMS XSS Vulnerability

  • CVE-2026-48527: HAX CMS Stored XSS 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