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·21 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

•about 2 hours ago•CVE-2024-29203
4.3

CVE-2024-29203: Client-Side Cross-Site Scripting via Unsandboxed Iframes and Legacy Embed Elements in TinyMCE

CVE-2024-29203 identifies a cross-site scripting (XSS) vulnerability in the content ingestion and parsing mechanics of TinyMCE rich text editor. Due to a failure to enforce sandbox attributes on dynamic iframe elements and safely handle legacy embed objects, unauthenticated attackers can inject malicious elements that execute scripts within the context of the parent application session.

Amit Schendel
Amit Schendel
4 views•5 min read
•about 4 hours ago•CVE-2026-9277
8.1

CVE-2026-9277: OS Command Injection in shell-quote via Object-Token Line Terminator Parsing Defect

A technical breakdown of the OS command injection vulnerability in the shell-quote NPM package (CVE-2026-9277 / GHSA-w7jw-789q-3m8p). The bug resides in the character-by-character backslash-escaping logic applied to the .op field of object-tokens within the quote() function, which fails to match and escape line terminators due to a regex matching oversight in JavaScript. This allows unauthenticated remote attackers to execute arbitrary shell commands if they can control inputs processed by this library.

Alon Barad
Alon Barad
7 views•6 min read
•about 14 hours ago•CVE-2026-50751
9.3

CVE-2026-50751: Authentication Bypass in Check Point Security Gateway IKEv1 Legacy Validation

An improper authentication vulnerability (CWE-287) exists in the legacy, deprecated Internet Key Exchange version 1 (IKEv1) key exchange protocol implementation in Check Point Security Gateways. The vulnerability is caused by a logic flow weakness during the certificate validation process for Remote Access VPN and Mobile Access (SSL VPN) connections. An unauthenticated remote attacker can exploit this weakness to bypass user authentication entirely, establishing a fully functional Remote Access VPN connection without a valid password.

Alon Barad
Alon Barad
67 views•6 min read
•1 day ago•CVE-2026-39922
6.3

CVE-2026-39922: Server-Side Request Forgery in GeoNode Service Registration Endpoint

GeoNode versions prior to 4.4.5 and 5.0.2 are vulnerable to Server-Side Request Forgery (SSRF) in the service registration endpoint. Authenticated attackers with low privileges can exploit insufficient input validation in the Web Map Service (WMS) registration module to force the application server to make outbound network queries to loopback addresses, private RFC1918 subnets, link-local scopes, and cloud metadata endpoints. This technical report details the mechanics of the vulnerability, the underlying architectural flaw, and how to effectively remediate and mitigate the associated security risks.

Alon Barad
Alon Barad
4 views•7 min read
•1 day ago•CVE-2022-0492
7.8

CVE-2022-0492: Privilege Escalation and Container Escape via cgroups v1 release_agent

CVE-2022-0492 is a high-severity missing authorization vulnerability in the Linux kernel's Control Groups (cgroups) v1 implementation. The flaw resides within the cgroup_release_agent_write function in kernel/cgroup/cgroup-v1.c, where the kernel fails to validate if the process writing to the release_agent file possesses administrative capabilities in the initial user namespace. This allows a local attacker inside a container with root privileges (UID 0) to abuse user namespaces, mount a cgroups v1 directory, modify the release_agent parameter, and execute arbitrary commands on the host system as host root, effectively achieving a complete container escape.

Amit Schendel
Amit Schendel
12 views•7 min read
•3 days ago•GHSA-G72G-R7M4-9X4G
6.3

GHSA-G72G-R7M4-9X4G: Insufficient Session Expiration of OAuth Tokens in NocoDB

NocoDB is subject to an insufficient session expiration vulnerability where OAuth access and refresh tokens are not invalidated or revoked during security-sensitive actions such as password changes, forgot-password requests, or password resets. This allows an attacker possessing an active OAuth token to maintain unauthorized persistence.

Amit Schendel
Amit Schendel
12 views•6 min read