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

CVE-2025-13632

Published: 2025-12-02 19:15:48
Last Modified: 2025-12-04 19:55:25

Description

Inappropriate implementation in DevTools in Google Chrome prior to 143.0.7499.41 allowed an attacker who convinced a user to install a malicious extension to potentially perform a sandbox escape via a crafted Chrome Extension. (Chromium security severity: High)

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:N/A:L

Configurations (Affected Products)

cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Google Chrome < 143.0.7499.41

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-13632 PoC - Malicious Chrome Extension for Sandbox Escape // Note: This PoC is for educational and research purposes only // manifest.json { "manifest_version": 3, "name": "CVE-2025-13632 PoC", "version": "1.0", "permissions": ["activeTab", "scripting"], "host_permissions": ["<all_urls>"], "action": { "default_popup": "popup.html" } } // background.js chrome.runtime.onInstalled.addListener(() => { console.log('Malicious extension installed - CVE-2025-13632'); }); // popup.html /* <!DOCTYPE html> <html> <head> <title>CVE-2025-13632 PoC</title> </head> <body> <h1>CVE-2025-13632 PoC</h1> <p>This demonstrates the DevTools sandbox escape vulnerability.</p> <button id="exploit">Trigger Exploit</button> <script src="popup.js"></script> </body> </html> */ // popup.js document.getElementById('exploit').addEventListener('click', function() { // Attempt to exploit DevTools implementation flaw // This would leverage Chrome DevTools protocol to escape sandbox chrome.scripting.executeScript({ target: { tabId: chrome.tabs.TAB_ID_NONE }, func: function() { // Exploit code would go here // Leveraging DevTools protocol to bypass security restrictions console.log('Attempting sandbox escape via DevTools...'); } }); });

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13632", "sourceIdentifier": "[email protected]", "published": "2025-12-02T19:15:47.780", "lastModified": "2025-12-04T19:55:24.710", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Inappropriate implementation in DevTools in Google Chrome prior to 143.0.7499.41 allowed an attacker who convinced a user to install a malicious extension to potentially perform a sandbox escape via a crafted Chrome Extension. (Chromium security severity: High)"}, {"lang": "es", "value": "Implementación inapropiada en DevTools en Google Chrome Versiones anteriores a 143.0.7499.41 permitió a un atacante que convenció a un usuario de instalar una extensión maliciosa realizar potencialmente un escape de sandbox a través de una extensión de Chrome diseñada maliciosamente. (Gravedad de seguridad de Chromium: Alta)"}], "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:N/A:L", "baseScore": 5.4, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-194"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "143.0.7499.40", "matchCriteriaId": "28874374-C1B5-4638-BCCD-0AC4F1DAA6EC"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:*", "matchCriteriaId": "703AF700-7A70-47E2-BC3A-7FD03B3CA9C1"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "143.0.7499.40", "matchCriteriaId": "28874374-C1B5-4638-BCCD-0AC4F1DAA6EC"}]}, {"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:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://chromereleases.googleblog.com/2025/12/stable-channel-update-for-desktop.html", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://issues.chromium.org/issues/439058242", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}