Security researchers have revealed that two critical use-after-free (UAF) vulnerabilities in Google Chrome’s Browser process were actively exploited in the wild, exposing users to potential sandbox escapes and arbitrary code execution.
However, Google’s deployment of the MiraclePtr defense mechanism ensures these flaws are no longer exploitable, marking a significant milestone in browser security.
According to the official report from SSD Labs, the vulnerabilities resided in Chrome versions 133.0.6835.0 to 135.0.7016.0.
The bugs originated from the improper handling of callbacks bound to raw pointers and WeakPtr, specifically within the synchronisation services.
Consider the following example from components/sync/service/sync_service_impl.cc:
void SyncServiceImpl::GetLocalDataDescriptions(... DataTypeSet types,
base::OnceCallback<void(std::map<DataType, LocalDataDescription>)> callback) {
base::SequencedTaskRunner::GetCurrentDefault()->PostTask(
FROM_HERE,
base::BindOnce(&SyncServiceImpl::GetLocalDataDescriptionsImpl,
weak_factory_.GetWeakPtr(), types, std::move(callback)));
}
The vulnerability is triggered if the bound callback’s instance is destroyed while the posted task is still executing, resulting in a UAF condition.
How It Works:
Proofs of Concept and Exploit Attempts
Demonstrations showed that opening certain Chrome pages and quickly closing the associated window could trigger the vulnerable code paths, previously leading to a crash and possible exploitation.
However, with MiraclePtr enabled, these attempts only cause a crash, not a security breach.
The rapid discovery and containment of these UAF vulnerabilities, thanks to Chrome’s proactive mitigation, highlight the evolving arms race in browser security.
While the vulnerabilities were technically “actively exploited in the wild,” Chrome’s MiraclePtr has effectively closed off this attack vector for now.
Security experts urge all Chrome users to ensure their browsers are updated to stay protected against similar threats.
The ongoing rollout and improvements to MiraclePtr technology underline Google’s commitment to defending its vast user base against even the most sophisticated attacks.
Find this News Interesting! Follow us on Google News, LinkedIn, & X to Get Instant Updates!
DocuSign has emerged as a cornerstone for over 1.6 million customers worldwide, including 95% of…
In a landmark initiative, international cybersecurity agencies have released a comprehensive series of publications to…
A severe security flaw has been identified in the TI WooCommerce Wishlist plugin, a widely…
Microsoft Threat Intelligence Center (MSTIC) has issued a critical warning about a cluster of global…
A recent investigation by security analysts has uncovered a persistent phishing campaign targeting Italian and…
Threat actors have exploited a critical Remote Code Execution (RCE) vulnerability, identified as CVE-2025-32432, in…