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
    • 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-44455

CVE-2026-44455: Hono Web Framework XSS Vulnerability

CVE-2026-44455 is a cross-site scripting flaw in Hono web framework that allows attackers to inject malicious HTML through JSX element tag names. This article covers technical details, affected versions, and mitigation.

Published: May 17, 2026

CVE-2026-44455 Overview

CVE-2026-44455 is an HTML injection vulnerability in Hono, a web application framework supporting multiple JavaScript runtimes. The flaw resides in the hono/jsx module, where JSX element tag names are inserted into rendered HTML without validation. When developers pass untrusted input as a tag name through the programmatic jsx() or createElement() APIs during server-side rendering, attackers can break out of the intended element context and inject arbitrary HTML. The issue is tracked under [CWE-74] (Improper Neutralization of Special Elements in Output). Hono version 4.12.16 fixes the vulnerability.

Critical Impact

Attackers can inject unintended HTML into server-rendered pages when user-controlled input reaches a JSX tag name argument, enabling cross-site scripting in vulnerable applications.

Affected Products

  • Hono framework versions prior to 4.12.16
  • Applications using hono/jsx server-side rendering
  • Node.js deployments invoking jsx() or createElement() with untrusted tag names

Discovery Timeline

  • 2026-05-13 - CVE-2026-44455 published to NVD
  • 2026-05-13 - Last updated in NVD database

Technical Details for CVE-2026-44455

Vulnerability Analysis

The vulnerability stems from hono/jsx writing element tag names directly into HTML output without sanitization or validation. JSX runtimes typically expect tag names to be static identifiers controlled by the developer. Hono's programmatic APIs jsx() and createElement() accept the tag name as a string argument, which some applications populate from request data such as query parameters or JSON fields.

During server-side rendering, the framework constructs the opening and closing tags by concatenating the supplied string into the HTML stream. A crafted value containing characters such as >, attribute delimiters, or additional element syntax escapes the intended tag context. The attacker then introduces arbitrary attributes, sibling elements, or script-bearing constructs.

The weakness aligns with [CWE-74] because the framework fails to neutralize special characters before placing user data into a downstream interpreter, in this case the browser HTML parser. Exploitation requires user interaction, since the malicious payload must render in a victim's browser session.

Root Cause

The root cause is missing input validation on the tag parameter inside the JSX rendering path. Hono treated tag names as trusted developer-supplied identifiers and skipped the escaping logic applied to attribute values and text content.

Attack Vector

The attack vector is network-based and requires user interaction. An attacker submits a payload to an endpoint that forwards untrusted input to jsx() or createElement() as the element type. When the response renders in a victim browser, the injected HTML executes within the application's origin, enabling script execution, content spoofing, or session-related abuse. The vulnerability description does not include published exploitation code, and the scoring vector indicates a scope change consistent with cross-site scripting impact.

Detection Methods for CVE-2026-44455

Indicators of Compromise

  • Server access logs containing request parameters with HTML metacharacters such as <, >, ", or / reaching endpoints that render JSX
  • Outbound responses containing unexpected <script>, <iframe>, or event-handler attributes in server-rendered HTML
  • Application error logs referencing malformed tag names passed to jsx() or createElement()

Detection Strategies

  • Perform static analysis of application source code to locate calls to jsx() and createElement() where the first argument is not a string literal
  • Review dependency manifests (package.json, package-lock.json, yarn.lock) for hono versions below 4.12.16
  • Deploy runtime web application firewall rules that flag HTML metacharacters in parameters mapped to template tag inputs

Monitoring Recommendations

  • Monitor Hono application logs for rendering exceptions or anomalous tag name values during request processing
  • Track Content Security Policy violation reports for inline script execution originating from server-rendered pages
  • Alert on dependency drift when production builds resolve hono to a version earlier than 4.12.16

How to Mitigate CVE-2026-44455

Immediate Actions Required

  • Upgrade Hono to version 4.12.16 or later across all environments using npm install hono@^4.12.16 or the equivalent package manager command
  • Audit source code for any path where user input flows into the tag argument of jsx() or createElement() and replace dynamic tag names with an allowlist
  • Redeploy server-side rendered applications after dependency updates and invalidate cached HTML responses

Patch Information

The maintainers released the fix in Hono 4.12.16. Details are available in the GitHub Security Advisory GHSA-69xw-7hcm-h432. The patch validates tag names before they are written to the HTML output stream.

Workarounds

  • Replace dynamic tag arguments with a fixed allowlist of permitted element names such as div, span, or p
  • Sanitize incoming parameters with a strict regular expression like ^[a-zA-Z][a-zA-Z0-9-]*$ before passing them to JSX APIs
  • Enforce a strict Content Security Policy that blocks inline scripts to reduce the impact of injected HTML
bash
# Configuration example
npm install hono@^4.12.16
npm ls hono

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

  • Vulnerability Details
  • TypeXSS

  • Vendor/TechHono

  • SeverityMEDIUM

  • CVSS Score6.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:L/I:L/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-74
  • Vendor Resources
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-44458: Hono Web Framework XSS Vulnerability

  • CVE-2026-29085: Hono Framework SSE XSS Vulnerability

  • CVE-2026-24771: Hono Web Framework XSS Vulnerability

  • CVE-2026-44456: Hono Web Framework DOS 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