Saturday, September 12, 2026

Technical Details and Exploit Released for Chrome Remote Code Execution Flaw

A remote code execution vulnerability affecting Google Chrome’s WebAssembly engine has been publicly disclosed, along with a fully functional exploit.

The flaw, discovered and reported during TyphoonPWN 2025, involves a regression in the canonicalization logic for indexed reference types in WebAssembly and a novel sandbox bypass via JavaScript Promise Integration (JSPI).

Researchers from SSD Secure Disclosure demonstrated that by combining a nullability confusion bug with a sophisticated birthday-attack-based hash collision technique, it is possible to gain arbitrary read/write primitives within the V8 sandbox and ultimately execute native code.

Credit for the finding goes to Seunghyun Lee (0x10n), who achieved first place in the Chrome RCE category.

Vulnerability Overview

The root cause lies in a regression introduced by commit 44171ac (Chrome M135), where CanonicalEqualityEqualValueType failed to consider nullability for indexed reference types (ref t0 vs. ref null t0).

This oversight allows two WebAssembly type groups that differ only in nullability to canonicalize to the same internal representation, enabling an attacker to craft a hash collision via a birthday attack on MurmurHash64A.

Once two colliding reference types are created, a recast primitive effectively removes null checks, leading to a caged read/write capability in Memory.

Simultaneously, a JSPI stack-switching bug introduced in commit d4700da (Chrome M137) can be exploited to bypass the V8 sandbox.

By manipulating nested secondary stack chains, the exploit skips inactive frames and clobbers suspended stack contents, regaining control of the central JS stack with attacker-controlled values.

 This component of the chain grants full arbitrary code execution without relying on legacy PartitionAlloc attacks.

Exploit Mechanics

  1. Hash Collision Generation: Using a WebAssembly module builder, the attacker defines two recursive type groups (t1null, t1nonnull) with varying nullability combinations. A birthday attack over 2^32 attempts yields a candidate collision in seconds, masking nullability differences.
  2. Null-to-Non-Null Cast: The collision allows a null reference to be recast as a non-null reference, stripping implicit guard-page protections and enabling a controlled object to read and write raw memory.
  3. Caged Read/Write Primitive: By mapping the controlled object to a large WasmArray, the exploit obtains an arbitrary offset read/write primitive (addrof and fakeobj) within the sandbox memory cage.
  4. JSPI Sandbox Bypass: The crafted payload triggers nested WebAssembly.promising calls. Malformed stack unwinding steps skip over suspended frames, granting direct stack control. After spraying a ROP chain, the exploit pivots to a VirtualProtect shellcode stub and executes arbitrary native commands (e.g., spawning calc.exe).
  5. Delivery: The fully assembled exp.html and WebAssembly module are served over a local HTTP server. Launching Chrome with –no-sandbox and visiting the page results in immediate code execution.

This flaw impacts all Chrome stable channel builds from M135 through M137 without the proper null-equivalence checks, and M137+ for the JSPI bypass.

Google has released an emergency patch reverting the faulty canonicalization logic and enforcing stricter stack-state checks in JSPI.

Recommendations

  • Immediate Update: Apply the latest Chrome update from October 2025 or later, which includes the null-equivalence fix and hardened JSPI checks.
  • Avoid –no-sandbox: Never run Chrome with the –no-sandbox flag unless absolutely necessary for debugging.
  • Defense in Depth: Employ endpoint protection solutions that monitor anomalous WebAssembly usage and unexpected process behaviors.
  • Audit WebAssembly Usage: Review in-application WebAssembly modules for untrusted code execution paths.

Cyber Awareness Month Offer: Upskill With 100+ Premium Cybersecurity Courses From EHA's Diamond Membership: Join Today

Divya
Divya
Divya is a Senior Journalist at GBhackers covering Cyber Attacks, Threats, Breaches, Vulnerabilities and other happenings in the cyber world.

Hot this week

How To Access Dark Web Anonymously and know its Secretive and Mysterious Activities

What is Deep Web The deep web, invisible web, or...

How to Build and Run a Security Operations Center (SOC Guide) – 2023

Today’s Cyber security operations center (CSOC) should have everything...

Russian Hackers Bypass EDR to Deliver a Weaponized TeamViewer Component

TeamViewer's popularity and remote access capabilities make it an...

Web Server Penetration Testing Checklist – 2026

Web server pentesting is performed under three significant categories: identity,...

ATM Penetration Testing – Advanced Testing Methods to Find The Vulnerabilities

ATM Penetration testing, Hackers have found different approaches to...

Threat Actors Use Claude AI Agents to Automate Cyberattacks and Steal Sensitive Data

Threat actors are increasingly using Claude-based AI workflows to...

China-Linked Hackers Chain Chrome Zero-Day With Windows Kernel Flaw in Attacks

China-linked threat actors UTA0560 and JungleBamboo chained a Google...

New Phishing Campaign Abuses Windows Mshta.exe to Steal Credentials and Secrets

A newly identified phishing campaign is abusing the legitimate...

CISA Warns of Critical GitLab Vulnerability Exploited in Attacks

The U.S. Cybersecurity and Infrastructure Security Agency (CISA) has...

Researchers Uncover 10,000+ Malware Loaders Behind YouTube and SEO Poisoning Campaign

A long-running pay-per-install (PPI) operation that used YouTube gaming...

VLC Media Player Flaws Let Attackers Corrupt Memory and Leak Sensitive Data

Two security vulnerabilities in VLC media player versions 3.0.0...

CISA Adds Exploited MikroTik RouterOS Flaws to Security Alert

The U.S. Cybersecurity and Infrastructure Security Agency (CISA) has...

Related Articles

Recent News