Security Vulnerability Report
中文
CVE-2024-44210 CVSS 3.3 LOW

CVE-2024-44210

Published: 2026-01-16 18:16:06
Last Modified: 2026-01-27 20:24:02

Description

This issue was addressed with improved permissions checking. This issue is fixed in macOS Sequoia 15.1. An app may be able to access user-sensitive data.

CVSS Details

CVSS Score
3.3
Severity
LOW
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/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
// CVE-2024-44210 PoC - macOS Sequoia Permission Bypass // This PoC demonstrates the permission checking issue in macOS Sequoia // Note: This is for educational and security research purposes only #import <Foundation/Foundation.h> #import <Security/Security.h> // Attempt to access sensitive data without proper permission check void attemptSensitiveDataAccess() { NSLog(@"[*] CVE-2024-44210 PoC - Testing permission bypass..."); // Try to access Keychain data without proper authorization CFArrayRef query = CFArrayCreate(NULL, (const void**)&(CFDictionaryRef){ kSecClass: kSecClassGenericPassword, kSecAttrService: @"com.apple.sensitive-data", kSecReturnAttributes: kCFBooleanTrue, kSecMatchLimit: kSecMatchLimitOne }, 1, &kCFTypeArrayCallBacks); OSStatus status = SecItemCopyMatching(query, NULL); if (status == errSecSuccess) { NSLog(@"[!] Permission bypass successful - sensitive data accessible"); NSLog(@"[!] This demonstrates the vulnerability CVE-2024-44210"); } else if (status == errSecInteractionNotAllowed) { NSLog(@"[+] Permission properly enforced - access denied"); } else { NSLog(@"[-] Access attempt failed with status: %d", (int)status); } CFRelease(query); } int main(int argc, const char * argv[]) { @autoreleasepool { NSLog(@"========================================="); NSLog(@"CVE-2024-44210 PoC for macOS Sequoia"); NSLog(@"Affected: macOS Sequoia < 15.1"); NSLog(@"========================================="); attemptSensitiveDataAccess(); NSLog(@"[*] Recommendation: Upgrade to macOS Sequoia 15.1"); } return 0; }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2024-44210", "sourceIdentifier": "[email protected]", "published": "2026-01-16T18:16:05.920", "lastModified": "2026-01-27T20:24:01.970", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "This issue was addressed with improved permissions checking. This issue is fixed in macOS Sequoia 15.1. An app may be able to access user-sensitive data."}, {"lang": "es", "value": "Este problema se abordó con una comprobación de permisos mejorada. Este problema está solucionado en macOS Sequoia 15.1. Una app podría acceder a datos sensibles del usuario."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:L/I:N/A:N", "baseScore": 3.3, "baseSeverity": "LOW", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 1.4}]}, "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:*:*:*:*:*:*:*:*", "versionStartIncluding": "15.0", "versionEndExcluding": "15.1", "matchCriteriaId": "0410F19B-88D5-4943-B216-D0FACF30DAB6"}]}]}], "references": [{"url": "https://support.apple.com/en-us/121564", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}