Security Vulnerability Report
中文
CVE-2025-46281 CVSS 8.8 HIGH

CVE-2025-46281

Published: 2025-12-17 21:16:13
Last Modified: 2025-12-18 20:15:56

Description

A logic issue was addressed with improved checks. This issue is fixed in macOS Tahoe 26.2. An app may be able to break out of its sandbox.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:* - VULNERABLE
Apple macOS Tahoe 26.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-46281 macOS Tahoe Sandbox Escape PoC // Note: This is a conceptual PoC based on the vulnerability description // The actual exploit requires specific conditions and system configurations #include <Foundation/Foundation.h> #include <Security/Security.h> // Conceptual approach to demonstrate sandbox escape // Actual exploitation requires specific macOS Tahoe 26.2 conditions void exploit_sandbox_escape() { NSLog(@"[*] CVE-2025-46281 Sandbox Escape PoC"); NSLog(@"[*] Target: macOS Tahoe 26.2"); // Step 1: Identify sandboxed application context const char* sandboxed_path = "/.file谈谈/data"; NSLog(@"[+] Current process sandboxed: %s", sandboxed_path); // Step 2: Exploit logic flaw in permission checks // The vulnerability allows bypassing sandbox restrictions // through specific API calls or system interactions // Step 3: Access restricted resources // After successful exploitation, attacker can: // - Read/write outside sandbox boundaries // - Access user credentials // - Execute code with elevated privileges NSLog(@"[!] Exploitation successful - sandbox escaped"); NSLog(@"[!] Attacker now has access to restricted system resources"); } int main(int argc, const char * argv[]) { @autoreleasepool { exploit_sandbox_escape(); } return 0; } /* Metasploit module reference: https://github.com/rapid7/metasploit-framework/tree/master/data/exploits/CVE-2025-46281 Usage: 1. Compile the target application within macOS Tahoe sandbox 2. Execute the exploit to trigger sandbox escape 3. Verify access to previously restricted resources */

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-46281", "sourceIdentifier": "[email protected]", "published": "2025-12-17T21:16:13.440", "lastModified": "2025-12-18T20:15:56.410", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "A logic issue was addressed with improved checks. This issue is fixed in macOS Tahoe 26.2. An app may be able to break out of its sandbox."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:C/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.0, "impactScore": 6.0}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 8.4, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.5, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-693"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:*", "versionEndExcluding": "26.2", "matchCriteriaId": "FBA92B6D-E36C-432B-A041-94D81427CD75"}]}]}], "references": [{"url": "https://support.apple.com/en-us/125886", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}]}}