Security Vulnerability Report
中文
CVE-2026-28826 CVSS 4.0 MEDIUM

CVE-2026-28826

Published: 2026-03-25 01:17:08
Last Modified: 2026-05-11 21:18:51

Description

A logic issue was addressed with improved restrictions. This issue is fixed in macOS Sequoia 15.7.5, macOS Sonoma 14.8.5, macOS Tahoe 26.4. A malicious app may be able to break out of its sandbox.

CVSS Details

CVSS Score
4.0
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:L/A:N

Configurations (Affected Products)

cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:* - VULNERABLE
macOS Sequoia < 15.7.5
macOS Sonoma < 14.8.5
macOS Tahoe < 26.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# PoC Concept for Sandbox Escape (CVE-2026-28826) # This is a simulation of logic bypass import os def attempt_sandbox_escape(): # Attempt to access a restricted file outside the sandbox restricted_path = "/private/var/root/SystemConfiguration/preferences.plist" try: # Logic flaw: specific symbolic link handling might bypass checks if os.path.exists(restricted_path): with open(restricted_path, 'r') as f: data = f.read() return "[+] Sandbox Escape Successful: Read restricted data" else: return "[-] Target not found" except PermissionError: return "[-] Sandbox blocked access" except Exception as e: return f"[-] Error: {e}" if __name__ == "__main__": print(attempt_sandbox_escape())

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-28826", "sourceIdentifier": "[email protected]", "published": "2026-03-25T01:17:07.790", "lastModified": "2026-05-11T21:18:51.040", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "A logic issue was addressed with improved restrictions. This issue is fixed in macOS Sequoia 15.7.5, macOS Sonoma 14.8.5, macOS Tahoe 26.4. A malicious app may be able to break out of its sandbox."}, {"lang": "es", "value": "Un problema de lógica se abordó con restricciones mejoradas. Este problema está solucionado en macOS Tahoe 26.4. Una aplicación maliciosa podría escapar de su sandbox."}], "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:N/S:U/C:N/I:L/A:N", "baseScore": 4.0, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.5, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:*", "versionStartIncluding": "26.0", "versionEndExcluding": "26.4", "matchCriteriaId": "6CF848CD-25D4-4371-BEF3-1ACCE47AD81F"}]}]}], "references": [{"url": "https://support.apple.com/en-us/126794", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://support.apple.com/en-us/126795", "source": "[email protected]"}, {"url": "https://support.apple.com/en-us/126796", "source": "[email protected]"}]}}