Security Vulnerability Report
中文
CVE-2026-47310 CVSS 7.8 HIGH

CVE-2026-47310

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

Description

Use after free vulnerability in Samsung Open Source Escargot allows Pointer Manipulation. This issue affects Escargot: 590345cc6258317c5da850d846ce6baaf2afc2d3.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Escargot (commit 590345cc6258317c5da850d846ce6baaf2afc2d3)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// Conceptual Proof of Concept for UAF in Escargot // This code demonstrates the logic of a Use After Free vulnerability. #include <iostream> #include <cstring> class VulnerableObject { public: void print() { std::cout << "Object is active." << std::endl; } ~VulnerableableObject() { std::cout << "Object destroyed." << std::endl; } }; int main() { // Step 1: Allocate object VulnerableObject* obj = new VulnerableObject(); obj->print(); // Step 2: Free the object (Simulating the vulnerability trigger) delete obj; // Step 3: Use after free (Pointer Manipulation) // In a real exploit, this memory might be controlled by an attacker memset(obj, 0x41, sizeof(VulnerableObject)); // Attempting to use the dangling pointer leads to exploitation // obj->print(); // This would crash or execute arbitrary code return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-47310", "sourceIdentifier": "[email protected]", "published": "2026-05-19T07:16:29.953", "lastModified": "2026-05-19T14:25:40.320", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Use after free vulnerability in Samsung Open Source Escargot allows Pointer Manipulation.\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:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-416"}]}], "references": [{"url": "https://github.com/Samsung/escargot/pull/1565", "source": "[email protected]"}]}}