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

CVE-2026-11645: Out-of-Bounds Memory Access in Google Chrome V8 Engine

Amit Schendel
Amit Schendel
Senior Security Researcher

Jun 9, 2026·6 min read·136 visits

Executive Summary (TL;DR)

An out-of-bounds read and write vulnerability in Google Chrome's V8 engine allows remote attackers to execute arbitrary code within the sandboxed renderer process via crafted JavaScript.

A high-severity memory corruption vulnerability exists in the V8 JavaScript engine of Google Chrome before versions 149.0.7827.102/103. The flaw arises from an incorrect bounds-check elimination during JIT compilation by the TurboFan optimizer, allowing remote attackers to achieve out-of-bounds read and write access inside the sandboxed renderer process.

Vulnerability Overview

The Google Chrome V8 engine is responsible for executing JavaScript and WebAssembly code within the browser. To maintain high performance, V8 compiles source code directly into native machine code using a multi-tiered execution pipeline. This pipeline includes the Ignition interpreter, Sparkplug non-optimizing compiler, Maglev mid-tier compiler, and the TurboFan high-tier optimizing compiler.

During high-tier compilation, TurboFan performs sophisticated optimizations such as type specialization, loop induction variable analysis, and redundant bounds-check elimination. If an optimization step contains mathematical or logical errors, the compiler may discard essential runtime safety checks.

CVE-2026-11645 represents a critical flaw within this optimization process. An attacker can leverage this flaw to trigger an out-of-bounds read (CWE-125) and write (CWE-787) inside the memory heap allocated to the execution thread, allowing unauthorized state manipulation and memory access.

Root Cause Analysis

The root cause of CVE-2026-11645 lies in TurboFan's range analysis phase, which tracks the possible minimum and maximum values of loop induction variables and array indices. When the compiler evaluates an array access instruction like array[index], it evaluates the known range of index against the static size of the array. If the compiler determines that index is guaranteed to be within safe bounds, it optimizes away the runtime bounds check to reduce execution overhead.

In this vulnerability, a logic flaw in the range tracker incorrectly computes the maximum possible value of a variable modified within a loop or through specific bitwise operations. This miscalculation leads TurboFan to believe that the variable cannot exceed the array boundary, when in fact it can. At runtime, the compiled native code executes without verifying the index, enabling access to memory locations outside the allocated backing store.

Alternatively, this behavior can be triggered when an optimized code path assumes an array remains in a specific 'ElementsKind' state, but an unexpected state transition occurs. If the array is mutated to a different layout, the compiled code reads or writes using stale size and offset assumptions, resulting in memory corruption.

Code-Level Implications & JIT Optimization Flow

In V8, range representation and bounds-check elimination are performed in the representation selection and optimization phases of the compiler graph. The compiler tracks ranges using a specialized structure that maintains lower and upper limits. A simplified conceptual logic of the vulnerable range calculation can be represented as follows:

// Conceptual vulnerable optimization logic in range-analysis.cc
class Range {
public:
    int32_t min_value;
    int32_t max_value;
 
    // Vulnerable range union calculation
    void UnionWith(const Range& other) {
        this->min_value = std::min(this->min_value, other.min_value);
        // BUG: Incomplete check for integer overflow on upper bounds optimization
        this->max_value = std::max(this->max_value, other.max_value);
    }
};

The fix introduces strict validation of integer bounds during range union and intersection steps. It prevents the optimizer from discarding bounds checks unless the safety criteria are met under all possible execution paths:

// Conceptual patched logic enforcing safe range checking
void UnionWith(const Range& other) {
    this->min_value = std::min(this->min_value, other.min_value);
    // PATCH: Explicit safety margin check and integer overflow validation
    if (SafeAddition(this->max_value, other.max_value)) {
        this->max_value = std::max(this->max_value, other.max_value);
    } else {
        this->MarkAsUnbounded(); // Force bounds checks to be retained
    }
}

Exploitation Methodology

Exploitation of CVE-2026-11645 requires a multi-stage approach to bypass modern browser mitigations, primarily the V8 Heap Sandbox. Since V8 confines its pointers within a 4GB virtual address space on 64-bit platforms, direct arbitrary write to system memory is prevented. Instead, attackers construct complex read/write primitives within this sandbox boundary.

The exploit sequence begins by defining an array and optimizing a function that indexes into it. By passing a crafted input that violates the range optimizer's assumptions, the exploit gains an initial out-of-bounds read and write. The read is utilized to locate adjacent JS objects and leak their internal 'Map' pointers. This bypasses pointer compression protections and allows the attacker to learn the layout of the V8 heap.

Next, the write capability is leveraged to corrupt the length field or the elements backing store of an adjacent JSArray or ArrayBuffer. By setting the length to 0xFFFFFFFF, the attacker achieves an unrestricted read/write primitive within the 4GB sandbox. Finally, the attacker overwrites JIT-compiled function code or WASM execution buffers to execute arbitrary shellcode within the context of the sandboxed utility process.

Impact Assessment & Threat Profile

The security impact of CVE-2026-11645 is classified as High, with a CVSS v3.1 base score of 8.8. An unauthenticated remote attacker can execute arbitrary code inside the Google Chrome renderer process simply by convincing a target user to load a malicious webpage. No complex administrative privileges or system-level access are required.

Because the V8 engine operates inside Chromium's multi-process sandbox, shellcode execution is restricted to the privileges of the renderer. An attacker cannot directly access the underlying operating system files, install system-wide malware, or execute administrative tasks using this vulnerability alone.

To achieve full system compromise, this exploit must be chained with a secondary vulnerability, such as an operating system kernel flaw or a browser IPC (Inter-Process Communication) broker vulnerability. However, control of the renderer process still allows the attacker to steal sensitive session data, read cookies, intercept active user transactions, and capture input on currently open tabs.

Detection and Remediation

Defending against CVE-2026-11645 requires a combination of timely patching and proactive system monitoring. The most critical defense is ensuring all instances of Google Chrome are upgraded to version 149.0.7827.103 or later on Windows and macOS, and version 149.0.7827.102 or later on Linux systems.

At the host level, Endpoint Detection and Response (EDR) agents should be configured to flag anomalous process creations stemming from browser binaries. Because renderer helper processes should never execute system command interpreters, any launch of programs like /bin/bash or cmd.exe by Chrome indicates a sandbox escape attempt.

# Conceptual Snort rule targeting standard obfuscated array allocation patterns
alert tcp any any -> any any (msg:"INDICATOR-OBFUSCATION V8 JIT Array Spraying Attempt"; flow:established,to_client; content:"new Array"; content:"for"; pcre:"/\b\w+\[\w+\]\s*=\s*0x[0-9a-fA-F]{8}/"; sid:1000001; rev:1;)

Additionally, implementing Application Guard or running the browser in isolated container environments can restrict physical device access, minimizing the risk of a successful sandbox escape chain.

Technical Appendix

CVSS Score
8.8/ 10
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H

Affected Systems

Google ChromeMicrosoft EdgeAny Chromium-based browser utilizing the V8 JavaScript engine

Affected Versions Detail

Product
Affected Versions
Fixed Version
Google Chrome
Google
< 149.0.7827.102149.0.7827.102
AttributeDetail
CWE IDCWE-125, CWE-787
Attack VectorNetwork (AV:N)
CVSS Score8.8
Exploit StatusProof of Concept / Restricted
CISA KEV StatusNot Listed

MITRE ATT&CK Mapping

T1203Exploitation for Client Execution
Execution
T1190Exploit Public-Facing Application
Initial Access
CWE-125
Out-of-bounds Read

The software reads data past the end, or before the beginning, of the intended buffer.

Vulnerability Timeline

Vulnerability discovered and reported to Google
2026-05-20
Google releases Chrome Stable Channel Update
2026-06-08
NVD publishes CVE-2026-11645 Detail
2026-06-09

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

•2 days ago•CVE-2026-54068
5.9

CVE-2026-54068: Unauthenticated Server-Side Template Injection and SQLite Exfiltration in SiYuan PKM

An authentication bypass in the SiYuan personal knowledge management system before version 3.7.0 exposes a dynamic icon rendering endpoint. This endpoint processes client-supplied Go template directives. By submitting a crafted request, an unauthenticated remote attacker can leverage registered database template functions to execute arbitrary read-only SQL queries and exfiltrate workspace contents.

Amit Schendel
Amit Schendel
14 views•5 min read
•2 days ago•CVE-2026-54069
9.1

CVE-2026-54069: Authentication Bypass in SiYuan Note via Origin Header Spoofing

CVE-2026-54069 is a critical authentication bypass vulnerability in the SiYuan Note personal knowledge management system. The flaw is located in the HTTP server's middleware handling API authorization, which unconditionally trusts requests carrying a 'chrome-extension://' scheme in the Origin HTTP header, granting administrative access without validating API tokens.

Alon Barad
Alon Barad
14 views•5 min read
•2 days ago•CVE-2026-54089
9.1

CVE-2026-54089: Authentication Bypass by Spoofing in File Browser

CVE-2026-54089 is a critical authentication bypass vulnerability in File Browser affecting instances configured with proxy-based authentication. An unauthenticated remote attacker with direct network access can impersonate arbitrary users or register new accounts by spoofing configured HTTP headers.

Amit Schendel
Amit Schendel
14 views•7 min read
•3 days ago•GHSA-99J7-FHR2-XFJ4
10.0

GHSA-99J7-FHR2-XFJ4: Malicious Remote Code Execution Payload in 'exploration' Cargo Crate

The malicious Cargo package 'exploration' was uploaded to the crates.io registry. During compilation or package import, the crate executes code designed to establish an outbound TCP/HTTP connection, download an external second-stage binary, and execute the binary locally on the host machine. This creates an unauthenticated remote code execution vector impacting developer environments and continuous integration pipelines.

Amit Schendel
Amit Schendel
15 views•6 min read
•3 days ago•CVE-2026-54088
9.3

CVE-2026-54088: Pre-Authentication Remote Code Execution in File Browser Hook Authentication

CVE-2026-54088 is a critical command injection vulnerability in File Browser prior to version 2.63.6. When Hook Authentication is enabled, the application interpolates unsanitized credentials into a shell command, allowing unauthenticated remote code execution.

Alon Barad
Alon Barad
15 views•6 min read
•3 days ago•GHSA-QV4M-M73M-8HJ7
8.8

GHSA-qv4m-m73m-8hj7: Authenticated Arbitrary File Upload leading to Remote Code Execution in NotrinosERP

An authenticated remote code execution vulnerability exists in NotrinosERP (versions up to and including 1.0.0) within the Human Resource Management (HRM) module. Users with employee management permissions can upload arbitrary file types, including PHP scripts, which are written directly to a web-accessible directory. This allows for arbitrary code execution in the context of the web-server user.

Alon Barad
Alon Barad
9 views•6 min read