CVEReports
CVEReports

Automated vulnerability intelligence platform. Comprehensive reports for high-severity CVEs generated by AI.

Product

  • Home
  • Sitemap
  • RSS Feed

Company

  • About
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CVEReports. All rights reserved.

Made with love by Amit Schendel & Alon Barad



CVE-2026-34945

CVE-2026-34945: Host Stack Memory Leak via Type Confusion in Wasmtime Winch Compiler

Alon Barad
Alon Barad
Software Engineer

Apr 10, 2026·6 min read·19 visits

Executive Summary (TL;DR)

A static typing error in the Wasmtime Winch compiler results in a failure to fully initialize a 64-bit register when evaluating the size of 64-bit tables. This leaks 32 bits of uninitialized host stack data to the guest module, tracked as CVE-2026-34945.

The Wasmtime WebAssembly runtime is affected by a type confusion vulnerability in its Winch compiler backend when processing the `table.size` instruction. When the `memory64` proposal is enabled, this flaw allows a malicious guest WebAssembly module to read uninitialized host stack memory, potentially leaking sensitive host data.

Vulnerability Overview

CVE-2026-34945 describes a low-severity information disclosure vulnerability within the Wasmtime runtime, specifically isolated to the Winch baseline compiler backend. The flaw is rooted in an incorrect numeric type conversion (CWE-681) triggered when evaluating table sizes under specific, non-default runtime configurations. Exploiting this vulnerability allows a guest WebAssembly module to read up to 32 bits of uninitialized host stack memory per invocation.

The vulnerability exists because the Winch compiler makes an incorrect assumption about the return type of the WebAssembly table.size instruction. The WebAssembly specification typically defines tables with 32-bit indices, making i32 the correct return type. However, when the experimental memory64 proposal is enabled, WebAssembly modules can define tables that utilize 64-bit indices, necessitating an i64 return type.

Because the Winch instruction emitter hardcoded the return type of table.size as an i32, the compiler fails to properly write the upper 32 bits of the 64-bit stack slot allocated for the operation. This failure leaves previously written, host-originating data in the upper half of the register, exposing it to the guest context.

Root Cause Analysis

The root cause of CVE-2026-34945 is a static typing flaw in the Winch instruction emitter. In WebAssembly, the table.size instruction returns the current size of a designated table. Under normal execution, the Winch backend evaluates this instruction and places a 32-bit integer on the host's stack representing the table size.

When a table is instantiated with an i64 index type (a feature of the memory64 proposal), ABI requirements dictate that the compiler allocate a full 64-bit register or stack slot to store the table size. The Winch compiler successfully allocates the 64-bit space but fails to recognize the semantic width of the returned data. The emitter logic blindly populates the lower 32 bits with the table size and terminates the operation.

Because the Winch backend reuses host stack slots and registers without performing zero-initialization, the upper 32 bits of the allocated slot remain populated with stale data. This data originates from previous host-side operations. When the guest module reads the i64 result, it ingests both the valid 32-bit table size and the 32 bits of uninitialized host data.

Code Analysis

The vulnerability resides in the visit_table_size function within winch/codegen/src/visitor.rs. In the vulnerable implementation, the Winch compiler statically assigns an i32 type to the destination register, disregarding the configuration of the table being queried.

The patch implemented in commit 96dde3aa67a5c456e4091ed60a9e3e774f0efd85 resolves this by querying the table_data object for its specific index type before allocating the typed register. This ensures the full bit-width of the target table's index type is respected during code generation.

// Vulnerable Implementation (winch/codegen/src/visitor.rs)
fn visit_table_size(&mut self, table: u32) -> Self::Output {
    // Compiler mistakenly forces i32 allocation
    self.context.stack.push(TypedReg::i32(size).into());
    Ok(())
}
 
// Patched Implementation
fn visit_table_size(&mut self, table: u32) -> Self::Output {
    // Compiler dynamically queries the table's index_type
    let dst = TypedReg::new(table_data.index_type(), size);
    self.context.stack.push(dst.into());
    Ok(())
}

The Bytecode Alliance also introduced a strict regression test in tests/misc_testsuite/winch/table64.wast to prevent recurrence. The test explicitly defines a 64-bit table (table $t i64 10 funcref) and invokes table.size multiple times to assert that an i64 is correctly handled without causing type confusion or leaking adjacent stack values.

Exploitation Methodology

Exploiting CVE-2026-34945 requires an attacker to supply a malicious WebAssembly module to a Wasmtime host configured to use the Winch compiler with the memory64 proposal enabled. If the host uses the default Cranelift compiler or disables experimental proposals, exploitation is impossible.

The attacker begins by defining a table with an i64 index type within the malicious guest module. The module then invokes the table.size instruction on this specific table. The Wasmtime host evaluates the instruction and places the result on the stack, returning an i64 value to the guest.

To extract the uninitialized host data, the guest module applies bitwise operations on the returned value. By shifting the returned i64 value to the right by 32 bits (i64.shr_u 32), the module isolates the upper 32 bits containing the stale host stack data. The attacker can then repeatedly execute this sequence to exfiltrate contiguous or varied slices of host memory depending on the stack frame state between calls.

Impact Assessment

CVE-2026-34945 carries a CVSS v4.0 score of 2.3, accurately reflecting its status as a low-severity flaw. The impact is limited to isolated information disclosure. The attacker gains read-only access to narrow, 32-bit slices of host stack memory, with no capability to write to host memory or influence execution flow directly.

The leaked 32 bits may contain fragments of return addresses, internal host pointers, or application data originating from earlier operations in the Wasmtime host process. While this data could theoretically assist in bypassing ASLR or mapping host memory, constructing a reliable exploit chain based solely on these unpredictable 32-bit fragments is highly complex.

The strict prerequisites significantly constrain the attack surface. Wasmtime defaults to the Cranelift compiler, and the memory64 proposal must be explicitly opted into by the host environment. Environments adhering to default configurations are completely immune to this vulnerability.

Remediation and Mitigation

The Bytecode Alliance has issued official patches in Wasmtime versions 36.0.7, 42.0.2, and 43.0.1. Organizations utilizing the Winch compiler in production environments must upgrade to one of these fixed versions immediately to remediate the vulnerability at the compiler level.

If immediate patching is not technically feasible, operators can fully mitigate the flaw through configuration changes. The primary mitigation is to disable the memory64 proposal. Alternatively, administrators can switch the compilation backend from Winch to the default Cranelift compiler, which correctly handles 64-bit table sizes and is unaffected by this bug.

Security engineers should proactively audit deployment scripts and Wasmtime engine initializations to ensure experimental features like memory64 are only enabled when strictly necessary. Static analysis tools can also be configured to flag incoming WebAssembly modules that declare 64-bit tables (i64), adding an additional layer of defense against attempted exploitation.

Official Patches

Bytecode AllianceOfficial Security Advisory for GHSA-m9w2-8782-2946

Fix Analysis (1)

Technical Appendix

CVSS Score
2.3/ 10
CVSS:4.0/AV:N/AC:L/AT:P/PR:L/UI:N/VC:L/VI:N/VA:N/SC:L/SI:N/SA:N

Affected Systems

Wasmtime WebAssembly Runtime (Winch Compiler Backend)

Affected Versions Detail

Product
Affected Versions
Fixed Version
Wasmtime
Bytecode Alliance
>= 25.0.0, < 36.0.736.0.7
Wasmtime
Bytecode Alliance
>= 37.0.0, < 42.0.242.0.2
Wasmtime
Bytecode Alliance
>= 43.0.0, < 43.0.143.0.1
AttributeDetail
CWE IDCWE-681
Attack VectorNetwork
CVSS v4.0 Score2.3 (Low)
Exploit StatusNone
KEV StatusNot Listed
Affected ComponentWinch Compiler Instruction Emitter

MITRE ATT&CK Mapping

T1592Gather Victim Host Information
Discovery
CWE-681
Incorrect Conversion between Numeric Types

Incorrect Conversion between Numeric Types

Vulnerability Timeline

Wasmtime team begins security sprint leading to discovery.
2026-03-20
Bytecode Alliance publishes advisory and releases patches.
2026-04-09
CVE-2026-34945 is officially published.
2026-04-09

References & Sources

  • [1]GHSA-m9w2-8782-2946 Security Advisory
  • [2]Bytecode Alliance Security Advisories Blog Post
  • [3]Wasmtime Fix Commit 96dde3aa67a5c456e4091ed60a9e3e774f0efd85

Attack Flow Diagram

Press enter or space to select a node. You can then use the arrow keys to move the node around. Press delete to remove it and escape to cancel.
Press enter or space to select an edge. You can then press delete to remove it or escape to cancel.

More Reports

•1 day ago•CVE-2026-9354
6.9

CVE-2026-9354: Arbitrary Mass Mention Bypass in NousResearch hermes-agent Slack and Mattermost Adapters

A vulnerability in the Slack and Mattermost platform adapters for NousResearch hermes-agent permits an unauthenticated remote attacker to execute arbitrary mass mentions. By leveraging prompt injection, an attacker can bypass output sanitization logic and trigger workspace-wide notification exhaustion.

Alon Barad
Alon Barad
22 views•6 min read
•1 day ago•CVE-2026-9306
6.3

CVE-2026-9306: Unauthenticated Insecure Direct Object Reference (IDOR) in QuantumNous new-api Midjourney Relay

CVE-2026-9306 is a critical unauthenticated Insecure Direct Object Reference (IDOR) vulnerability located in the QuantumNous new-api application, affecting versions up to and including 0.12.1. The flaw is caused by improper middleware ordering combined with a lack of object-level authorization checks. This allows remote, unauthenticated attackers to retrieve sensitive Midjourney images belonging to other users by supplying a valid task identifier.

Amit Schendel
Amit Schendel
7 views•5 min read
•2 days ago•GHSA-GGXF-37HM-9WQF
6.5

GHSA-GGXF-37HM-9WQF: Session Leakage via Unsafe Challenge Path Parsing in instagrapi

The instagrapi library prior to version 2.6.9 contains an improper input validation vulnerability within its challenge handling mechanism. Maliciously crafted server responses can manipulate the client into forwarding session cookies and credentials to an external attacker-controlled domain.

Amit Schendel
Amit Schendel
19 views•6 min read
•3 days ago•GHSA-QQQM-5547-774X
9.1

GHSA-QQQM-5547-774X: Unauthenticated Path Traversal in FileBrowser Quantum PATCH Handler

GHSA-QQQM-5547-774X is a critical path traversal vulnerability in the FileBrowser Quantum application, specifically within the Go backend package. The vulnerability resides in the HTTP handler responsible for processing bulk file modifications via the public API. Unauthenticated attackers can exploit an order-of-operations flaw in the path sanitization logic to bypass intended directory restrictions. This allows adversaries to arbitrarily read, move, and overwrite files on the underlying filesystem by supplying specially crafted HTTP PATCH requests.

Alon Barad
Alon Barad
4 views•6 min read
•3 days ago•CVE-2026-8723
5.3

CVE-2026-8723: Synchronous Denial of Service in qs npm Package via TypeError

The qs query string parsing and serialization library for Node.js is vulnerable to a synchronous Denial of Service (DoS) attack. The vulnerability manifests as a process-terminating TypeError when processing arrays with null or undefined elements under specific configuration parameters.

Amit Schendel
Amit Schendel
32 views•7 min read
•3 days ago•GHSA-7M8F-HGJQ-8GC9
7.5

GHSA-7M8F-HGJQ-8GC9: Pre-Authentication Denial of Service via Insecure Deserialization Order in aiosend

The aiosend library prior to version 3.0.6 contains a pre-authentication Denial of Service (DoS) vulnerability in its webhook handling mechanism. The software processes and deserializes incoming JSON payloads before verifying the cryptographic signature, allowing unauthenticated attackers to exhaust server CPU and memory resources by sending large, complex payloads.

Amit Schendel
Amit Schendel
3 views•6 min read