This is a trapdoor inside the panic room: useless until the intruder is already inside, but very bad once they are
CVE-2026-10908 is a use-after-free in Chrome FullScreen on Windows. The affected population is Google Chrome on Windows prior to 149.0.7827.53; Google’s stable desktop release moved Windows/Mac to 149.0.7827.53/54 on 2026-06-02. The key detail is the precondition in the description: the attacker must have already compromised the renderer process and then use this bug to try to cross the browser sandbox boundary.
Google’s HIGH 8.3 is technically fair in Chromium’s own taxonomy because renderer sandbox escapes are high severity by design, but for patch-priority reality this is not a one-click internet-to-host compromise. The attacker needs a prior memory-corruption or logic bug in renderer-reachable content first, which is strong downward pressure; the reason this still lands HIGH instead of MEDIUM is that Chrome is ubiquitous on Windows and sandbox-escape primitives are exactly what turns a renderer foothold into real device impact.
4 steps from start to impact.
Land code execution in the renderer
- Victim uses Chrome on Windows below 149.0.7827.53
- Attacker can get the user to render malicious web content
- A separate exploit exists to obtain renderer code execution
- This bug is not directly reachable as unauthenticated remote device compromise
- Modern Chrome hardening, site isolation, CFG/ASLR, and Windows mitigations complicate stage-one reliability
- No public exploit chain or in-the-wild evidence was found
Pivot from sandboxed renderer into FullScreen bug
- Renderer process already compromised
- Attack path can reach the vulnerable FullScreen code path on Windows
- Browser-side state, timing, and object lifetime bugs are typically brittle across versions
- The bug is Windows-only per the supplied description
Corrupt memory across the sandbox boundary
- The FullScreen UAF can be made reliable enough for cross-process impact
- Windows mitigations do not stop the chosen exploit path
- Browser-process exploitation is materially harder than causing a renderer crash
- Exploit reliability varies by Windows build, hardware, and mitigation state
Convert browser escape into user-level impact
- Successful sandbox escape
- Victim user context has valuable local data or enterprise access
- EDR, application control, and browser auto-update reduce dwell time
- Many real campaigns still need another step for persistence or elevated privileges
The supporting signals.
| In-the-wild status | No public evidence of active exploitation found and not listed in CISA KEV as checked against the KEV catalog on 2026-06-05. |
|---|---|
| Public PoC | No public PoC located. The upstream Chromium bug is referenced as issue 505045913 but details remain restricted, which is normal for fresh Chrome security fixes. |
| EPSS | 0.00068 from the user-supplied intel, which is very low and argues against mass exploitation pressure right now. Percentile was not confirmed from an authoritative source during this review. |
| KEV status | No. There is no KEV entry for CVE-2026-10908 in the current CISA Known Exploited Vulnerabilities Catalog. |
| CVSS vector reality check | CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:C/C:H/I:H/A:H captures that exploitation is remote and can be severe, but it still understates the practical prerequisite: you need a compromised renderer first, which is a major real-world friction point. |
| Affected versions | Google Chrome on Windows prior to 149.0.7827.53 per the supplied description and the June 2026 Chrome 149 desktop release train. |
| Fixed versions | Google promoted desktop stable to 149.0.7827.53/54 for Windows/Mac on 2026-06-02. For enterprises on managed channels, verify that any version pinning or Extended Stable policy is not keeping Windows endpoints below the fixed build. |
| Scanning and exposure data | Shodan/Censys/FOFA/GreyNoise are weak signals here because Chrome desktop is client software, not a normally internet-listening service. Use EDR/SCCM/Intune/Chrome Enterprise inventory to measure exposure, not internet surface scans. |
| Disclosure timing | There are two dates that matter: Google’s stable desktop fix shipped on 2026-06-02, while the user-supplied disclosure date is 2026-06-04. Treat 2026-06-02 as the operational patch-availability date. |
| Reporter | Reported by Mihnea Nicolau on 2026-04-21, per the Chrome 149 stable release notes. |
noisgate verdict.
The single decisive factor is that this bug requires a pre-existing renderer compromise, so it is not an initial-access vulnerability and should not be treated like a one-bug drive-by RCE. It stays HIGH because Chrome on Windows is everywhere, and sandbox escapes are the exact second-stage primitive attackers need to turn a browser foothold into meaningful endpoint impact.
Why this verdict
- Big downgrade factor: prior compromise required — the attacker position is effectively *post-exploitation inside a renderer*, which implies they already burned or bought another bug first.
- Exposure is huge, but reachable population is narrower than CVSS implies — Chrome is universal, yet only Windows builds below 149.0.7827.53 are relevant and only after a renderer foothold.
- Modern controls should break stage one more often than stage two — browser hardening, EDR exploit protections, and rapid Chrome auto-updates put friction on the full chain even if this individual bug is serious.
Why not higher?
It is not higher because the vulnerability does not directly give an unauthenticated remote attacker code execution on the host. The exploit chain must already be inside the renderer sandbox, which is a material prerequisite that sharply reduces who can use it and how often it will be used at scale.
Why not lower?
It is not lower because a Chrome sandbox escape on Windows is still a high-value chain component in a massively deployed target. Once stage one exists, this class of bug can convert a contained browser exploit into genuine endpoint impact, which is too important for backlog-only treatment.
What to do — in priority order.
- Force Chrome Stable auto-update — Ensure Windows endpoints are not pinned below 149.0.7827.53 and that Google Update or your managed deployment channel is allowed to move forward. For a HIGH verdict, deploy this control within 30 days if patch rollout is not already automatic.
- Remove risky version pinning — Review
Target version prefix, rollback policies, and Extended Stable exceptions that strand users on older Windows builds. This matters most in large estates where the browser looks 'managed' but is quietly held below the fixed build; fix the policy within 30 days. - Isolate unpatchable browsing tiers — For kiosks, regulated systems, or brittle app stacks that cannot move immediately, place high-risk users behind remote browser isolation, VDI, or equivalent containment. Use this as a temporary brake on exploit-chain risk and deploy it within 30 days.
- Hunt for suspicious Chrome child activity — Tune EDR detections for
chrome.exespawning script hosts, LOLBins, unexpected file writes, or credential-store access attempts. This will not stop the bug, but it will shorten dwell time if someone successfully chains a renderer exploit with this sandbox escape; implement within 30 days.
- A WAF or network IPS will not save you here; this is client-side browser exploitation, not a server-side parser exposed on your edge.
- Internet exposure scanners like Shodan/Censys/FOFA are the wrong instrument because Chrome desktop is not an internet-listening asset you can enumerate meaningfully.
- MFA is not a mitigating control for the bug itself; once a browser process is compromised, the attacker is abusing the local user context, not trying to log in through your identity perimeter.
Crowdsourced verification payload.
Run this on the target Windows endpoint or through your EDR/RMM as a local inventory check. Invoke with powershell.exe -ExecutionPolicy Bypass -File .\check-chrome-cve-2026-10908.ps1; standard user is usually enough because it only reads file metadata from common Chrome install paths and user profile locations.
# check-chrome-cve-2026-10908.ps1
# Outputs: VULNERABLE / PATCHED / UNKNOWN
# Exit codes: 1 = vulnerable, 0 = patched, 2 = unknown
$ErrorActionPreference = 'SilentlyContinue'
$fixedVersion = [version]'149.0.7827.53'
$paths = @(
"$env:ProgramFiles\Google\Chrome\Application\chrome.exe",
"$env:ProgramFiles(x86)\Google\Chrome\Application\chrome.exe",
"$env:LocalAppData\Google\Chrome\Application\chrome.exe"
) | Select-Object -Unique
$found = @()
foreach ($p in $paths) {
if (Test-Path $p) {
try {
$fv = (Get-Item $p).VersionInfo.FileVersion
if ($fv) {
$ver = [version]($fv.Split(' ')[0])
$found += [pscustomobject]@{
Path = $p
Version = $ver
}
}
} catch {
}
}
}
if (-not $found -or $found.Count -eq 0) {
Write-Output 'UNKNOWN - Chrome executable not found in standard install paths'
exit 2
}
$vuln = $found | Where-Object { $_.Version -lt $fixedVersion }
$patched = $found | Where-Object { $_.Version -ge $fixedVersion }
if ($vuln.Count -gt 0) {
$details = ($vuln | ForEach-Object { "$($_.Path) [$($_.Version)]" }) -join '; '
Write-Output "VULNERABLE - Found Chrome for Windows below $fixedVersion : $details"
exit 1
}
if ($patched.Count -gt 0) {
$details = ($patched | ForEach-Object { "$($_.Path) [$($_.Version)]" }) -join '; '
Write-Output "PATCHED - All discovered Chrome installs are at or above $fixedVersion : $details"
exit 0
}
Write-Output 'UNKNOWN - Unable to determine Chrome version state'
exit 2
If you remember one thing.
chrome.exe below 149.0.7827.53`, then remove any policy pinning or channel configuration that keeps them there. This is a HIGH chain component, not an all-hands zero-day: if some systems cannot move immediately, apply containment such as browser isolation or tighter browsing restrictions for those users within the noisgate mitigation SLA of 30 days; complete rollout of the vendor-fixed Chrome build within the noisgate remediation SLA of 180 days**.Sources
- Chrome Releases - Stable Channel Update for Desktop (Chrome 149)
- Chrome Releases - Early Stable Update for Desktop
- Chromium - chrome://sandbox Diagnostics for Windows
- Chromium - Severity Guidelines for Security Issues
- CISA Known Exploited Vulnerabilities Catalog
- FIRST EPSS API endpoint for this CVE
- Chrome Enterprise - Manage Chrome updates (Windows)
- Chromium issue referenced by the Chrome 149 advisory
What defenders are saying.
Crowdsourced verification outputs.
Results submitted by users who ran the verification payload against their environment.