Security Vulnerability Report
中文
CVE-2024-44303 CVSS 7.5 HIGH

CVE-2024-44303

Published: 2026-04-02 19:18:39
Last Modified: 2026-04-03 17:53:39

Description

The issue was addressed with improved checks. This issue is fixed in macOS Sequoia 15.1. A malicious application may be able to modify protected parts of the file system.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:* - VULNERABLE
macOS Sequoia < 15.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import os # Conceptual PoC for CVE-2024-44303 # This script simulates an attempt to modify a protected part of the file system. # On a vulnerable macOS Sequoia (< 15.1), the sandbox check might be bypassed. def exploit_cve_2024_44303(): # Targeting a protected system directory (example) target_path = "/System/Library/Extensions/" malicious_file = "vuln_check.txt" full_path = os.path.join(target_path, malicious_file) print(f"[*] Attempting to bypass sandbox and write to: {full_path}") try: # In a real exploit scenario, specific API calls or race conditions # would be triggered here to bypass the improved checks. # This is a simulation of the write operation. with open(full_path, 'w') as f: f.write("CVE-2024-44303 PoC Execution") print("[+] Success: File written to protected directory.") print("[+] System is vulnerable.") return True except PermissionError: print("[-] Failed: Permission denied.") print("[-] System may be patched or sandbox is effective.") return False except Exception as e: print(f"[-] Error: {e}") return False if __name__ == "__main__": exploit_cve_2024_44303()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44303", "sourceIdentifier": "[email protected]", "published": "2026-04-02T19:18:38.960", "lastModified": "2026-04-03T17:53:39.037", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "The issue was addressed with improved checks. This issue is fixed in macOS Sequoia 15.1. A malicious application may be able to modify protected parts of the file system."}], "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:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-284"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:*", "versionEndExcluding": "15.1", "matchCriteriaId": "1D298E1D-DD23-4D35-9DE4-E3F5999F97AA"}]}]}], "references": [{"url": "https://support.apple.com/en-us/121564", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}]}}