Not a U.S. government website. NDD is an independent vulnerability database by Volerion and is not affiliated with or endorsed by NIST or NVD.
VOLERION
Volerion Security Research

NOT DEFERRED DATABASE

VULNERABILITIES

CVE-2026-90648 Details

ANALYZED


This CVE record has been analyzed and enriched by NVDAPI.com as an independent party.

Description

wasm2c in WebAssembly wabt through 1.0.41 allows sandbox escape in some situations that primarily involve 32-bit platforms, aka a "table flip" attack. It does not check the return value of calloc() in wasm_rt_allocate_funcref_table() (wasm2c/wasm-rt-impl-tableops.inc). When the funcref table allocation fails, table->data is left NULL while table->size keeps the guest-declared element count; thus, bounds checks still pass and table element accesses resolve to absolute memory addresses (i * sizeof(wasm_rt_funcref_t)). This gives arbitrary read and write of host process memory and - via table.get, table.set, and call_indirect - arbitrary code execution, defeating the isolation that wasm2c exists to provide (a full sandbox escape). wasm2c is used as an in-process sandboxing boundary by RLBox and WasmBoxC, including in Firefox, which compiles the Graphite, Hunspell, Ogg, Expat, and Woff2 libraries via wasm2c to contain untrusted font, media, and XML input. Therefore, sandboxing in these applications is potentially affected. Exploitation requires the funcref table allocation to fail, for example under an address-space limit (RLIMIT_AS), on 32-bit hosts, with vm.overcommit_memory=2, or under memory pressure. On 64-bit Linux with default overcommit the allocation succeeds and the defect is not triggered. The wasm2c memory allocator aborts on calloc failure in the same runtime; the table allocator lacks this abort behavior. This was introduced in commit ab9e0b55 (PR #813).

Metrics

CVSS 3.x Severity and Vector Strings:

References to Advisories, Solutions, and Tools

By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.

Weakness Enumeration

CWE-IDCWE NameSource
CWE-252Unchecked Return Value[email protected]

Affected Products

ProductVersions
WebAssembly wabt
1.0.41 (semver)

CPE

  • cpe:2.3:a:webassembly:wabt:*:*:*:*:*:*:*:*
  • cpe:2.3:a:webassembly:webassembly_binary_toolkit:*:*:*:*:*:*:*:*

Remediation

  • Upgrade: 1.0.42moderate effort
Mozilla Firefox
All versions

CPE

  • cpe:2.3:a:mozilla:firefox:*:*:*:*:*:iphone_os:*:*
  • cpe:2.3:a:mozilla:firefox:*:*:*:*:*:*:*:*
  • cpe:2.3:a:mozilla:firefox:*:*:*:*:*:ipados:*:*
  • cpe:2.3:a:mozilla:firefox:*:*:*:*:*:-:*:*
  • cpe:2.3:a:mozilla:firefox:*:*:*:*:*:android:*:*

Remediation

  • No remediation found in references.
Mozilla RLBox
All versions

CPE

  • No CPEs found in CPE dictionary for this product.

Remediation

  • No remediation found in references.

Change History

2 change records found show changes


QUICK INFO

CVE Dictionary Entry:
CVE-2026-90648
NVD Published Date:
Sep 13, 2026
NVD Last Modified:
Sep 22, 2026
Source:
[email protected]
CVE-2026-90648 Details - Not Deferred