Google Chrome CVE-2026-85046 Zero-Day Patch Details

Google Patches Actively Exploited Chrome V8 Zero-Day Flaw

CRITICAL
September 4, 2026
5m read
VulnerabilityPatch Management

Related Entities

Organizations

Products & Tech

Other

Salvatore Gulizia

CVE Identifiers

CVE-2026-85046
HIGH
CVSS:8.8

Full Report

Executive Summary

On September 4, 2026, Google released an emergency security update for its Chrome web browser to address a critical zero-day vulnerability tracked as CVE-2026-85046. This high-severity flaw, with a CVSS score of 8.8, is a type confusion bug in the V8 JavaScript engine and is being actively exploited in the wild. Successful exploitation allows a remote attacker to execute arbitrary code by luring a user to a malicious website. This marks the sixth Chrome zero-day patched in 2026, underscoring the persistent threat to browser security. All users are strongly advised to update their Chrome instances to the latest version immediately.


Vulnerability Details

The vulnerability CVE-2026-85046 is a type confusion weakness within the V8 JavaScript and WebAssembly engine. According to the discoverer, security researcher Salvatore Gulizia, the bug occurs in the V8 compilers. It can cause an array with PACKED_ELEMENTS to incorrectly receive the PACKED_SMI_ELEMENTS map. This state confusion can be leveraged by a threat actor to achieve arbitrary read and write capabilities on the JavaScript heap, which is a powerful primitive for developing a reliable remote code execution (RCE) exploit. The attack vector requires tricking a victim into navigating to a specially crafted HTML page, after which the attacker could execute code within the context of the browser's sandboxed process.

Affected Systems

The vulnerability affects the following Google Chrome versions:

  • Versions prior to 152.0.7977.82/.83 for Windows and macOS.
  • Versions prior to 152.0.7977.82 for Linux.

Exploitation Status

Google has confirmed that an exploit for CVE-2026-85046 exists in the wild. This indicates that threat actors are actively using this vulnerability in attacks. As is standard procedure to prevent wider abuse, Google has restricted access to bug details and links. The flaw was responsibly disclosed by Salvatore Gulizia on August 4, 2026.

Impact Assessment

Given Chrome's vast user base, a publicly exploited zero-day vulnerability poses a significant global risk. Successful exploitation could lead to a full compromise of the browser process. While attacks are contained within the browser sandbox, they are often chained with a separate sandbox escape vulnerability to gain full control over the underlying operating system. Potential impacts include theft of sensitive data (cookies, passwords, browsing history), injection of malicious scripts, installation of persistent malware or spyware, and using the compromised machine as a pivot point for further network intrusions.

IOCs — Directly from Articles

No specific Indicators of Compromise (IOCs) such as IP addresses, domains, or file hashes were provided in the source articles.

Cyber Observables — Hunting Hints

Security teams can hunt for potential exploitation activity by monitoring for the following patterns:

Type
Process Analysis
Value
chrome.exe or msedge.exe spawning unexpected child processes like cmd.exe, powershell.exe, or wscript.exe.
Description
This could indicate a successful sandbox escape post-exploitation.
Type
Log Analysis
Value
Spikes in browser crash reports related to the V8 engine.
Description
May indicate failed or successful exploitation attempts.
Type
Network Monitoring
Value
Outbound connections from browser processes to unusual or newly registered domains.
Description
Could be a sign of C2 communication or payload download.

Detection & Response

Defenders should focus on both endpoint and network-level detection.

  1. Endpoint Detection and Response (EDR):

    • Monitor browser processes for anomalous behavior, such as writing executable files to disk or initiating suspicious child processes. This aligns with D3FEND techniques like Process Analysis.
    • Implement rules to detect command-line parameters often associated with post-exploitation activities originating from a browser.
  2. Network Monitoring:

    • Analyze web proxy and DNS logs for connections to known malicious or uncategorized domains. While specific IOCs are not public, traffic to non-standard ports or domains with low reputation originating from user workstations should be investigated.
    • Utilize D3FEND's Network Traffic Analysis to baseline normal browser traffic and alert on deviations.
  3. Threat Hunting:

    • Proactively hunt for evidence of exploitation using the cyber observables listed above. Search for patterns of V8 engine crashes across the environment that may correlate with visits to specific websites.

Mitigation

Immediate patching is the primary mitigation.

  1. Patch Management:

    • Prioritize the deployment of Chrome versions 152.0.7977.82/.83 (Windows/macOS) and 152.0.7977.82 (Linux) to all systems. This is a direct application of the D3FEND countermeasure Software Update.
    • Ensure auto-update features for Chrome and other browsers are enabled and functioning correctly across the enterprise.
  2. Defense in Depth:

    • Employ web filtering and email security gateways to block access to malicious websites and prevent users from receiving links to exploit pages. This relates to D3FEND's Inbound Traffic Filtering.
    • Use endpoint security solutions with exploit protection and behavioral analysis capabilities to detect and block the execution of shellcode even if the vulnerability is triggered.
    • Enforce the principle of least privilege for user accounts to limit the impact of a successful sandbox escape.

Timeline of Events

1
August 4, 2026
Security researcher Salvatore Gulizia discovers and reports the vulnerability to Google.
2
September 4, 2026
Google releases emergency security updates for Chrome to patch CVE-2026-85046.
3
September 4, 2026
This article was published

MITRE ATT&CK Mitigations

Applying the latest security patches from Google is the most effective way to prevent exploitation of this vulnerability.

Mapped D3FEND Techniques:

Utilizing browser and endpoint security features that mitigate memory corruption exploits can help prevent or disrupt exploitation.

Mapped D3FEND Techniques:

Using web filters to block access to known malicious or untrusted websites can prevent users from reaching the exploit page.

Mapped D3FEND Techniques:

D3FEND Defensive Countermeasures

The primary and most critical countermeasure is to apply the security update provided by Google immediately. For CVE-2026-85046, this means updating Chrome to version 152.0.7977.82/.83 for Windows/macOS or 152.0.7977.82 for Linux. Organizations should leverage centralized patch management systems to enforce this update across all corporate devices. For unmanaged devices (BYOD), security teams should issue clear communications instructing users on how to manually trigger the update via 'Help' -> 'About Google Chrome'. Given that this is an actively exploited zero-day, the patch should be treated as an emergency change and deployed within 24-48 hours. Verifying successful deployment through asset inventory and vulnerability scanning tools is crucial to ensure the attack surface is closed.

To detect potential post-exploitation activity from a compromised browser, security teams must implement robust process analysis on endpoints. Configure EDR solutions to monitor for chrome.exe (or other browser processes) spawning anomalous child processes, particularly command-line interpreters like cmd.exe and powershell.exe, or scripting engines like wscript.exe. Establish a baseline of normal browser behavior and create high-fidelity alerts for deviations. For this specific threat, an alert should trigger if chrome.exe initiates a process that attempts to download further payloads (e.g., using bitsadmin or curl), modify registry keys for persistence, or access sensitive local files. This technique acts as a crucial secondary control, catching the attack even if the initial exploit succeeds, thereby preventing the threat actor from achieving their ultimate objectives.

Inbound traffic filtering, implemented via secure web gateways or DNS filtering services, provides a proactive defense by blocking access to the malicious web pages hosting the exploit for CVE-2026-85046. Organizations should ensure their web filtering policies block access to uncategorized and newly registered domains, as these are frequently used in zero-day campaigns. Integrating threat intelligence feeds that provide indicators of compromise for exploit kits and malicious infrastructure can further enhance this control. Even without specific IOCs for this campaign, this broad filtering strategy significantly reduces the likelihood that a user will be able to navigate to the exploit delivery page, effectively neutralizing the threat before the vulnerability can be triggered. This is a vital layer of defense that protects unpatched or slow-to-patch systems.

Timeline of Events

1
August 4, 2026

Security researcher Salvatore Gulizia discovers and reports the vulnerability to Google.

2
September 4, 2026

Google releases emergency security updates for Chrome to patch CVE-2026-85046.

Sources & References

Google patches actively exploited Chrome zero-day (CVE-2026-85046)
Help Net Security (helpnetsecurity.com) September 4, 2026
Google Releases Chrome Update to Patch Actively Exploited V8 Zero-Day
The Hacker News (thehackernews.com) September 4, 2026
Google warns of new Chrome zero-day flaw exploited in attacks
BleepingComputer (bleepingcomputer.com) September 4, 2026

Article Author

Jason Gomes

Jason Gomes

• Cybersecurity Practitioner

Cybersecurity professional with over 10 years of specialized experience in security operations, threat intelligence, incident response, and security automation. Expertise spans SOAR/XSOAR orchestration, threat intelligence platforms, SIEM/UEBA analytics, and building cyber fusion centers. Background includes technical enablement, solution architecture for enterprise and government clients, and implementing security automation workflows across IR, TIP, and SOC use cases.

Threat Intelligence & AnalysisSecurity Orchestration (SOAR/XSOAR)Incident Response & Digital ForensicsSecurity Operations Center (SOC)SIEM & Security AnalyticsCyber Fusion & Threat SharingSecurity Automation & IntegrationManaged Detection & Response (MDR)

Editorial Standards & Analyst Review

CyberNetSec.io uses automation to assist source monitoring, deduplication, observable extraction, and structured intelligence generation. Published analysis follows human-defined editorial standards and adds defensive context including MITRE ATT&CK, D3FEND, STIX, and Sigma where applicable. Read our editorial policy.

Tags

zero-daybrowser securityRCEV8type confusionGoogle Chrome

📢 Share This Article

Help others stay informed about cybersecurity threats

🎯 MITRE ATT&CK Mapped

Every tactic, technique, and sub-technique used in this threat has been identified and mapped to the MITRE ATT&CK framework for consistent, actionable threat language.

🧠 Enriched & Analyzed

Observables and indicators of compromise (IOCs) have been extracted and cataloged. Risk has been assessed and correlated with known threat actors and historical campaigns.

🛡️ Actionable Guidance

Detection rules, incident response steps, and D3FEND-aligned mitigation strategies are included so your team can act on this intelligence immediately.

🔗 STIX Visualizer

Structured threat data is packaged as a STIX 2.1 bundle and can be visualized as an interactive graph — relationships between actors, malware, techniques, and indicators.

Sigma Generator

Sigma detection rules are derived from the threat techniques in this article and can be converted for deployment across any major SIEM or EDR platform.