Security Vulnerability Report
中文
CVE-2026-28914 CVSS 5.5 MEDIUM

CVE-2026-28914

Published: 2026-05-11 21:18:54
Last Modified: 2026-05-14 14:02:17

Description

A logic issue was addressed with improved file handling. This issue is fixed in macOS Tahoe 26.5. A maliciously crafted ZIP archive may bypass Gatekeeper checks.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:* - VULNERABLE
macOS Tahoe < 26.5

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import zipfile import os # Create a malicious ZIP archive concept for PoC # This script creates a ZIP containing a dummy executable # In a real exploit, specific internal structures would be modified def create_malicious_zip(output_path): with zipfile.ZipFile(output_path, 'w') as zf: # Simulate a payload file payload_content = b'#!/bin/bash\necho "Gatekeeper Bypass POC"' zf.writestr('malicious_app.app/Contents/MacOS/script', payload_content) # Note: Actual CVE-2026-28914 exploitation would require specific # file handling logic abuse in macOS Tahoe < 26.5 print(f'Created {output_path}') if __name__ == '__main__': create_malicious_zip('bypass_poc.zip')

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-28914", "sourceIdentifier": "[email protected]", "published": "2026-05-11T21:18:53.903", "lastModified": "2026-05-14T14:02:16.887", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A logic issue was addressed with improved file handling. This issue is fixed in macOS Tahoe 26.5. A maliciously crafted ZIP archive may bypass Gatekeeper checks."}], "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:N/I:H/A:N", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-358"}, {"lang": "en", "value": "CWE-693"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:o:apple:macos:*:*:*:*:*:*:*:*", "versionStartIncluding": "26.0", "versionEndExcluding": "26.5", "matchCriteriaId": "6CB91417-90A8-4A9B-A1D0-1D94B80EF837"}]}]}], "references": [{"url": "https://support.apple.com/en-us/127115", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}]}}