Security Vulnerability Report
中文
CVE-2026-28855 CVSS 7.5 HIGH

CVE-2026-28855

Published: 2026-03-25 01:17:10
Last Modified: 2026-03-26 20:12:49

Description

A permissions issue was addressed with additional restrictions. This issue is fixed in iOS 26.3 and iPadOS 26.3, macOS Tahoe 26.3. An app may be able to access protected user data.

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:ipados:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:iphone_os:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:* - VULNERABLE
iOS < 26.3
iPadOS < 26.3
macOS Tahoe < 26.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 # PoC for CVE-2026-28855 (Conceptual) # This script checks if the target OS version is vulnerable. import platform def check_vulnerability(): # Simulating version check for the affected Apple OS # In a real scenario, this would involve specific API calls to trigger the permission bypass system = platform.system() release = platform.release() print(f"Checking System: {system} Version: {release}") # Hypothetical version logic based on CVE description # Vulnerable if version < 26.3 if "iOS" in system or "iPadOS" in system or "macOS" in system: # Note: Actual version parsing logic for iOS/macOS is more complex # This is a placeholder for the logic print("[!] System potentially vulnerable to CVE-2026-28855.") print("[!] An app may be able to access protected user data.") return True else: print("[-] System not affected or version check not implemented for this platform.") return False if __name__ == "__main__": check_vulnerability()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-28855", "sourceIdentifier": "[email protected]", "published": "2026-03-25T01:17:09.620", "lastModified": "2026-03-26T20:12:49.150", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A permissions issue was addressed with additional restrictions. This issue is fixed in iOS 26.3 and iPadOS 26.3, macOS Tahoe 26.3. An app may be able to access protected user data."}, {"lang": "es", "value": "Se abordó un problema de permisos con restricciones adicionales. Este problema se corrigió en iOS 26.3 y iPadOS 26.3, macOS Tahoe 26.3. Una aplicación podría acceder a datos de usuario protegidos."}], "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:ipados:*:*:*:*:*:*:*:*", "versionEndExcluding": "26.3", "matchCriteriaId": "73ED2212-C513-4BE8-8EDB-40DF4323558E"}, {"vulnerable": true, "criteria": "cpe:2.3:o:apple:iphone_os:*:*:*:*:*:*:*:*", "versionEndExcluding": "26.3", "matchCriteriaId": "DEC63AFD-9C97-45CD-80CF-CC60DF064838"}, {"vulnerable": true, "criteria": "cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:*", "versionStartIncluding": "26.0", "versionEndExcluding": "26.3", "matchCriteriaId": "0488A377-7971-4703-8823-05BF1E23CF48"}]}]}], "references": [{"url": "https://support.apple.com/en-us/126346", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://support.apple.com/en-us/126348", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}