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

CVE-2026-34941: Wasmtime UTF-16 DoS Vulnerability

CVE-2026-34941 is a denial-of-service flaw in Wasmtime that occurs during UTF-16 string transcoding, potentially causing host crashes or memory reads. This article covers technical details, affected versions, and fixes.

Published: April 9, 2026

CVE-2026-34941 Overview

CVE-2026-34941 is an out-of-bounds read vulnerability in Wasmtime, a runtime for WebAssembly. The vulnerability exists in the UTF-16 string transcoding functionality when converting to the latin1+utf16 component-model encoding. The flaw stems from incorrect validation of the byte length during bounds checking, where the implementation checks the number of code units instead of the actual byte length (which is twice the size of code units). This miscalculation can cause the host to read beyond the end of a WebAssembly module's linear memory.

Critical Impact

In default configurations, exploitation results in a segmentation fault causing denial of service. With guard pages disabled, attackers may read host memory beyond WebAssembly's linear memory boundary.

Affected Products

  • Wasmtime versions prior to 24.0.7
  • Wasmtime versions prior to 36.0.7
  • Wasmtime versions prior to 42.0.2 and 43.0.1

Discovery Timeline

  • 2026-04-09 - CVE CVE-2026-34941 published to NVD
  • 2026-04-09 - Last updated in NVD database

Technical Details for CVE-2026-34941

Vulnerability Analysis

This vulnerability is classified as CWE-125 (Out-of-Bounds Read). The core issue lies in the transcoding logic for UTF-16 strings within Wasmtime's component model implementation. When processing UTF-16 encoded data for conversion to the latin1+utf16 encoding, the bounds validation incorrectly uses the count of code units rather than the actual byte length. Since UTF-16 uses 2 bytes per code unit, this creates a validation gap where the actual memory access could extend up to twice the validated boundary.

The exploitation scenario depends on Wasmtime's configuration. In the default configuration with guard pages enabled, an attempt to read beyond linear memory will hit an unmapped guard page, causing a segmentation fault and process termination. While this constitutes a denial-of-service condition, the security impact is more severe in non-standard configurations where guard pages are disabled. In such cases, the out-of-bounds read could access host memory beyond the WebAssembly sandbox boundary, potentially exposing sensitive information.

Root Cause

The root cause is an improper input validation error in the UTF-16 transcoding bounds check. The validation logic uses code unit count instead of byte length, failing to account for UTF-16's 2-byte-per-code-unit encoding. This mathematical oversight in the boundary calculation creates the conditions for an out-of-bounds memory access during the transcoding operation.

Attack Vector

The vulnerability can be exploited over the network (AV:N) as WebAssembly modules are commonly loaded from remote sources. An attacker would need to craft a malicious WebAssembly module with a specially constructed UTF-16 string that triggers the flawed transcoding path. When the host runtime attempts to transcode this string, it will read beyond the intended memory boundary due to the incorrect bounds calculation.

The attack requires low privilege (authenticated access to load WebAssembly modules) and some user interaction to trigger the vulnerable code path. The primary impact is on availability through denial of service, with potential confidentiality impact in non-default configurations where guard pages are disabled.

Detection Methods for CVE-2026-34941

Indicators of Compromise

  • Unexpected process crashes or segmentation faults in applications utilizing Wasmtime runtime
  • Abnormal memory access patterns during WebAssembly module execution
  • Repeated termination of services running WebAssembly workloads with SIGSEGV signals

Detection Strategies

  • Monitor application logs for segmentation fault occurrences in Wasmtime-based services
  • Implement runtime monitoring for memory access violations in WebAssembly execution environments
  • Deploy application-level crash detection to identify potential exploitation attempts

Monitoring Recommendations

  • Enable comprehensive logging for WebAssembly module loading and execution events
  • Configure alerting for unusual patterns of process termination in Wasmtime-based applications
  • Review audit logs for suspicious WebAssembly module submissions that may target string transcoding functions

How to Mitigate CVE-2026-34941

Immediate Actions Required

  • Upgrade Wasmtime to version 24.0.7, 36.0.7, 42.0.2, or 43.0.1 depending on your current major version
  • Ensure guard pages are enabled (default configuration) to limit exploitation to denial of service
  • Review any custom Wasmtime configurations that may have disabled guard pages

Patch Information

The vulnerability has been fixed in Wasmtime versions 24.0.7, 36.0.7, 42.0.2, and 43.0.1. Organizations should upgrade to the appropriate patched version based on their current deployment. Detailed patch information is available in the GitHub Security Advisory.

Workarounds

  • Ensure Wasmtime is running with default guard page configuration enabled to contain exploitation to denial of service
  • Implement input validation on WebAssembly modules before loading them into the runtime
  • Consider rate limiting or restricting the sources from which WebAssembly modules can be loaded
bash
# Verify Wasmtime version and upgrade
wasmtime --version
# Update to patched version via cargo
cargo update -p wasmtime

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechWasmtime

  • SeverityMEDIUM

  • CVSS Score6.9

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:P/VC:N/VI:N/VA:H/SC:N/SI:N/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
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • GitHub Security Advisory
  • Related CVEs
  • CVE-2026-35186: Wasmtime Winch Compiler DoS Vulnerability

  • CVE-2026-34946: Wasmtime Winch Compiler DOS Vulnerability

  • CVE-2026-34943: Wasmtime DoS Vulnerability

  • CVE-2026-34942: Wasmtime DoS 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