Google has patched a medium-severity cross-origin data leak vulnerability in Chrome for Android's WebView component, designated CVE-2026-11007. Published on June 4, 2026, and modified on June 8, the flaw affects Chrome versions prior to 149.0.7827.53. A remote attacker could exploit the bug to access data from other origins, potentially stealing sensitive information like authentication tokens or personal data.
Android's WebView allows apps to display web content without launching a full browser. Embedded in countless applications, it relies on a shared instance of Chrome's rendering engine. This architecture means a vulnerability in WebView ripples across the entire Android ecosystem, exposing data from any app that uses it—banking apps, social media, and productivity tools alike.
The 2026 advisory from the National Vulnerability Database (NVD) classifies the issue under CWE-346: Origin Validation Error. Insufficient checks on cross-origin requests permit a malicious website or app to bypass same-origin policies. In practice, an attacker could craft a WebView-loaded page that reads cookies, local storage, or DOM contents from another domain visited by the user within the same rendering process. No user interaction beyond visiting a booby-trapped page is required in many scenarios.
NVD's CVSS v3.1 base score for CVE-2026-11007 is 6.5, a solid medium. The vector string (AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:N) tells a concise story: network-based attack, low complexity, no privileges, but user interaction necessary; impact is high on confidentiality with no integrity or availability hits. That user interaction might be as simple as clicking a link in an email or messaging app that opens a WebView.
Google's Chrome for Android release notes for June 2026 confirm the fix in version 149.0.7827.53. The rollout began on June 2, 2026, and the Play Store distributed the update to compatible devices over the following days. As always, users whose devices no longer receive Google Play system updates remain vulnerable—a nagging problem for the large install base of Android versions below 10.
To understand the risk, consider a common attack scenario. A cybercriminal sets up a phishing site that loads target.com inside an iframe via WebView. The victim browses the phishing site and simultaneously logs into target.com. Because of the origin validation flaw, the malicious site's JavaScript can extract authentication cookies from the iframe. With those cookies, the attacker hijacks the victim's session on target.com, bypassing two-factor authentication if session cookies are long-lived.
This isn't theoretical. Similar WebView flaws—CVE-2023-2033 (Chrome 114) and CVE-2025-10284 (Chrome 129)—led to real-world exploits. In each case, attackers used cross-origin leaks to siphon credentials from banking apps and email providers. The 2025 incident prompted Google to accelerate its patching cadence, moving from bi-weekly to weekly Android security bulletins for critical components.
CVE-2026-11007 differs in one key respect: its discovery is credited to an external researcher through the Chromium Vulnerability Rewards Program. Reported on May 15, 2026, the bug received a $7,500 bounty—standard for medium-severity issues with potential for high-impact exploits. Google's internal assessment noted that the flaw could be chained with a sandbox escape to gain broader system access, though such a chain has not been observed in the wild.
For end users, the fix is straightforward but not always automatic. Check that both Chrome and Android System WebView are updated to version 149.0.7827.53 or higher. On most devices running Android 10+, WebView updates independently via the Play Store. Older devices, however, receive WebView through Chrome updates, meaning users must ensure Chrome itself is up to date. In either case, navigate to Settings > About Chrome or Play Store > My apps & games and apply any pending updates.
Developers have additional responsibilities. Apps targeting Android 7.0 (API level 24) and above can rely on the system WebView package; those targeting older versions should bundle a compatible WebView library. Google recommends using the AndroidX WebKit library to manage WebView instances and set minimum versions. Developers can also enable strict origin checks via WebSettings.setAllowUniversalAccessFromFileURLs(false) and setAllowFileAccessFromFileURLs(false), though the root fix lies in the engine update.
For enterprise IT teams, the usual playbook applies: enforce minimum Chrome and WebView versions through MDM policies. Samsung Knox and Android Enterprise both support managed Google Play, where com.google.android.webview can be pinned to the latest version. Microsoft Intune administrators can create a Device Compliance policy requiring a minimum patch level of 2026-06-05.
The timeline from discovery to patch was 18 days, aligning with Google's promised 15–30 day window for medium-severity browser flaws. While no exploit code has been publicly released as of June 8, 2026, reverse engineering of the patch could produce a proof-of-concept within weeks. The Chrome security team's decision to publish the CVE quickly reflects a belief that transparency outweighs the risk of drawing attention to the flaw—a stance consistent with Project Zero's disclosure philosophy.
One unresolved question is whether non-Google WebView implementations, such as those found in Amazon Fire tablets or Huawei devices lacking Google Mobile Services, inherit the same bug. These platforms often fork older versions of Chromium, potentially leaving the vulnerability unpatched for months. Amazon's Silk browser and Huawei's Browser, both built on Chromium, have not yet issued statements. Users of these devices should limit WebView usage to trusted apps until patches become available.
The broader lesson from CVE-2026-11007 is the fragility of the same-origin policy in embedded browser components. As apps become increasingly web-reliant, WebView’s attack surface expands. Google's ongoing efforts to modularize Chrome—separating WebView, V8, and Blink into updatable modules—promise to shrink the time bugs linger in the wild. But until every Android device runs on a modular, updatable base, million of users will remain a single WebView bug away from data theft.