Security Vulnerability Report
中文
CVE-2026-25206 CVSS 6.7 MEDIUM

CVE-2026-25206

Published: 2026-04-13 05:16:03
Last Modified: 2026-04-28 21:05:54

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.7
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:L/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H

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 Out-of-bounds read in Escargot // This script attempts to read beyond the allocated array boundaries function trigger_oob_read() { // Allocate a buffer var buffer = new ArrayBuffer(64); var view = new DataView(buffer); // Initialize buffer with known data for (var i = 0; i < 64; i++) { view.setUint8(i, 0x41); } // The vulnerability allows reading beyond the buffer size // Attempting to read at index 100 (Out-of-bounds) try { // Hypothetical vulnerable API call var leaked = view.getUint8(100); console.log("Leaked byte: 0x" + leaked.toString(16)); } catch (e) { console.log("Error: " + e.message); } } trigger_oob_read();

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25206", "sourceIdentifier": "[email protected]", "published": "2026-04-13T05:16:02.540", "lastModified": "2026-04-28T21:05:54.413", "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:L/AC:H/PR:N/UI:N/S:U/C:H/I:N/A:H", "baseScore": 6.7, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.4, "impactScore": 5.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"]}]}}