Security Vulnerability Report
中文
CVE-2024-44250 CVSS 8.2 HIGH

CVE-2024-44250

Published: 2026-04-02 19:18:29
Last Modified: 2026-04-03 17:54:38

Description

A permissions issue was addressed with additional restrictions. This issue is fixed in macOS Sequoia 15.1. An app may be able to execute arbitrary code out of its sandbox or with certain elevated privileges.

CVSS Details

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

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
#include <stdio.h> #include <stdlib.h> /* * Conceptual PoC for CVE-2024-44250 * This code simulates the logic of exploiting a permissions issue to escape the sandbox. * Note: Actual exploitation requires specific vulnerable macOS API interactions. */ int main() { printf("[*] CVE-2024-44250 PoC: Attempting Sandbox Escape...\n"); // Simulate checking for the vulnerability condition // In a real scenario, this involves specific API calls that bypass permission checks int is_vulnerable = 1; if (is_vulnerable) { printf("[+] Vulnerability detected. Bypassing sandbox restrictions...\n"); // Simulate execution of code outside sandbox with elevated privileges // e.g., accessing a protected file or executing a system command system("echo '[+] Executing arbitrary code with elevated privileges.'"); printf("[+] Sandbox escape successful.\n"); } else { printf("[-] Target is patched or not vulnerable.\n"); } return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44250", "sourceIdentifier": "[email protected]", "published": "2026-04-02T19:18:28.527", "lastModified": "2026-04-03T17:54:38.027", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A permissions issue was addressed with additional restrictions. This issue is fixed in macOS Sequoia 15.1. An app may be able to execute arbitrary code out of its sandbox or with certain elevated privileges."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:H/UI:N/S:C/C:H/I:H/A:H", "baseScore": 8.2, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "HIGH", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.5, "impactScore": 6.0}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-269"}]}], "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"]}]}}