Object corruption in V8 in Google Chrome prior to 146.0.7680.178 allowed a remote attacker to execute arbitrary code inside a sandbox via a crafted HTML page. (Chromium security severity: High)
cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Google Chrome < 146.0.7680.178
PoC / Exploit Code
⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- PoC for CVE-2026-5279 -->
<html>
<head><title>PoC</title></head>
<body>
<script>
// This script attempts to trigger the object corruption in V8
// Specific vulnerability trigger requires deep knowledge of V8 internals
function trigger_v8_bug() {
let arr = [1.1, 2.2, 3.3];
// Simulate memory corruption pattern
arr[0] = {};
arr[1] = 1.1;
// Attempt to confuse type systems
console.log(arr);
}
trigger_v8_bug();
</script>
</body>
</html>