Security Vulnerability Report
中文
CVE-2026-25209 CVSS 6.5 MEDIUM

CVE-2026-25209

Published: 2026-04-13 05:16:03
Last Modified: 2026-04-28 20:46:41

Description

Out-of-bounds read vulnerability in Samsung Open Source Escargot allows Resource Leak Exposure.This issue affects Escargot: 97e8115ab1110bc502b4b5e4a0c689a71520d335.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:samsung:escargot:2026-03-26:*:*:*:*:*:*:* - VULNERABLE
Samsung Escargot (Commit 97e8115ab1110bc502b4b5e4a0c689a71520d335)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// Conceptual PoC for CVE-2026-25209: Out-of-bounds Read in Samsung Escargot // This script demonstrates a generic method to trigger memory read issues in JS engines. // Specific payload requires fuzzing based on the vulnerable commit. function triggerVulnerability() { try { // Attempt to manipulate memory layout let arr = new Array(0x100); // Malicious input designed to hit the specific OOB read offset let payload = "A".repeat(0x1000); // In a real scenario, this would involve specific Escargot API calls // that lead to the vulnerable state described in CVE-2026-25209. arr.fill(payload); // Accessing out of bounds to trigger the read console.log(arr[0x10000]); } catch (e) { console.log("[!] Exception caught: " + e.message); } } triggerVulnerability();

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25209", "sourceIdentifier": "[email protected]", "published": "2026-04-13T05:16:02.927", "lastModified": "2026-04-28T20:46:41.467", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Out-of-bounds read vulnerability in Samsung Open Source Escargot allows Resource Leak Exposure.This issue affects Escargot: 97e8115ab1110bc502b4b5e4a0c689a71520d335."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:L", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.2, "impactScore": 4.2}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:N/A:H", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-125"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:samsung:escargot:2026-03-26:*:*:*:*:*:*:*", "matchCriteriaId": "E56434D9-B453-4690-8092-5F07D266E58D"}]}]}], "references": [{"url": "https://github.com/Samsung/escargot/pull/1554", "source": "[email protected]", "tags": ["Issue Tracking", "Patch"]}]}}