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

CVE-2025-43378

Published: 2025-11-04 02:15:45
Last Modified: 2025-12-17 21:15:56

Description

A permissions issue was addressed with additional restrictions. This issue is fixed in macOS Sequoia 15.7.2, macOS Tahoe 26.1. An app may be able to access sensitive user data.

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:macos:*:*:*:*:*:*:*:* - VULNERABLE
macOS Sequoia 15.7.2之前的所有版本
macOS Tahoe 26.1之前的所有版本
其他未修复的macOS版本可能受影响

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-43378 PoC Concept (Educational Purpose Only) // This is a conceptual demonstration of the vulnerability pattern // Actual exploitation requires specific macOS environment and version // Simulated malicious application behavior class SensitiveDataAccess { // Attempt to access protected user data directories static func exploitVulnerability() { // Target sensitive directories let sensitivePaths = [ "~/Library/Application Support/", "~/Library/Personal/", "/Library/Application Support/", "~/Documents/Sensitive/" ] // Attempt to bypass permission checks for path in sensitivePaths { // In vulnerable versions, this may succeed without proper authorization let data = readProtectedData(path: path) if data != nil { // Successfully accessed sensitive data exfiltrateData(data) } } } static func readProtectedData(path: String) -> Data? { // Bypass mechanism exploiting CVE-2025-43378 // The actual exploit would use specific macOS API abuse return nil } static func exfiltrateData(_ data: Data) { // Data exfiltration logic // Would send sensitive data to attacker-controlled server } } // Attack execution requires: // 1. User interaction to install the malicious app // 2. macOS version prior to security update // 3. Social engineering to gain user trust

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-43378", "sourceIdentifier": "[email protected]", "published": "2025-11-04T02:15:44.910", "lastModified": "2025-12-17T21:15:56.387", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "A permissions issue was addressed with additional restrictions. This issue is fixed in macOS Sequoia 15.7.2, macOS Tahoe 26.1. An app may be able to access sensitive user data."}], "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:macos:*:*:*:*:*:*:*:*", "versionEndExcluding": "15.7.2", "matchCriteriaId": "DD6E8540-AC8B-40E0-945A-8D4C465E8471"}]}]}], "references": [{"url": "https://support.apple.com/en-us/125634", "source": "[email protected]"}, {"url": "https://support.apple.com/en-us/125635", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}]}}