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

CVE-2026-28965

Published: 2026-05-11 21:18:57
Last Modified: 2026-05-12 18:46:25

Description

A privacy issue was addressed with improved checks. This issue is fixed in iOS 26.5 and iPadOS 26.5. A user may be able to view restricted content from the lock screen.

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
iOS < 26.5
iPadOS < 26.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2026-28965 (Conceptual Lock Screen Bypass) # This script demonstrates the logic to trigger the bypass on a vulnerable iOS/iPadOS device. import time def trigger_lockscreen_bypass(): """ Simulates the interaction sequence to bypass the lock screen. """ print("[*] Attempting to trigger CVE-2026-28965...") # Step 1: Wake device (Simulated) print("[+] Waking device...") time.sleep(1) # Step 2: Invoke the vulnerable component (e.g., Siri/Control Center) # The vulnerability lies in the state confusion here. print("[+] Triggering vulnerable UI component...") try: # Hypothetical exploit sequence # 1. Activate Voice Assistant activate_assistant() # 2. Issue specific command to open restricted content send_command("Show Notifications") # 3. Rapidly switch context to confuse the lock state force_context_switch() # 4. Access restricted data restricted_data = read_restricted_content() if restricted_data: print("[!] SUCCESS: Lock screen bypassed. Data visible.") return True except Exception as e: print(f"[-] Exploit failed: {e}") return False # Placeholder functions for the actual OS interaction def activate_assistant(): pass def send_command(cmd): pass def force_context_switch(): pass def read_restricted_content(): pass if __name__ == "__main__": trigger_lockscreen_bypass()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-28965", "sourceIdentifier": "[email protected]", "published": "2026-05-11T21:18:57.493", "lastModified": "2026-05-12T18:46:25.137", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A privacy issue was addressed with improved checks. This issue is fixed in iOS 26.5 and iPadOS 26.5. A user may be able to view restricted content from the lock screen."}], "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.5", "matchCriteriaId": "9D9FC2C4-7A7C-4330-A226-255428A5D18E"}, {"vulnerable": true, "criteria": "cpe:2.3:o:apple:iphone_os:*:*:*:*:*:*:*:*", "versionEndExcluding": "26.5", "matchCriteriaId": "0A70A5FD-8891-4C4E-9D35-F217F95027B5"}]}]}], "references": [{"url": "https://support.apple.com/en-us/127110", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}]}}