How to Fix CVE-2019-6223: Security vulnerability in Apple macOS
| Severity | 7.5 (High) |
|---|---|
| Actively exploited? | Yes, listed in CISA KEV (added 2021-11-03) |
| Affected | Apple iOS; Apple macOS |
| Fixed in | See vendor advisory |
| Type (CWE) | Not verified — see official advisory |
WARNING: This vulnerability is on the CISA Known Exploited Vulnerabilities catalog (added 2021-11-03). Federal civilian agencies must remediate by 2022-05-03. Treat it as active exploitation, not theoretical.
What is CVE-2019-6223?
A logic issue existed in the handling of Group FaceTime calls. The issue was addressed with improved state management. This issue is fixed in iOS 12.1.4, macOS Mojave 10.14.3 Supplemental Update. The initiator of a Group FaceTime call may be able to cause the recipient to answer.
Am I affected?
Run the version check that matches your platform:
# macOS
sw_vers
brew list --versions ios 2>/dev/null
Compare what you see against the Affected row above (Apple iOS; Apple macOS). If your build sits inside that range, you are exposed and should patch.
How to fix CVE-2019-6223
The primary fix is to upgrade Apple macOS to the patched build. Use the commands for your platform below; the patched version listed in the vendor advisory is: See vendor advisory.
macOS
# System updates (Apple-issued patches)
softwareupdate --list
sudo softwareupdate --install --all --restart
# For third-party tools managed by Homebrew
brew update
brew upgrade
Complete macOS / iOS remediation script
#!/usr/bin/env bash
# CVE-2019-6223 fix script for iOS
# Run on each affected Mac. iOS / iPadOS / watchOS / tvOS devices update via Settings.
set -euo pipefail
LOG="$HOME/Library/Logs/cve-2019-6223-fix-$(date +%Y%m%d-%H%M%S).log"
exec > >(tee -a "$LOG") 2>&1
echo "[1/4] Current OS version"
sw_vers
echo "[2/4] Listing available Apple updates"
softwareupdate --list || true
echo "[3/4] Installing all pending Apple security updates"
sudo softwareupdate --install --all --restart
echo "[4/4] Verifying"
sw_vers
echo "For iPhone / iPad: Settings -> General -> Software Update."
echo "For Apple Watch: Watch app -> General -> Software Update."
echo "For Apple TV: Settings -> System -> Software Updates -> Update Software."
If you can't patch immediately
If you cannot apply the patched version today, restrict exposure with one of the following runnable controls. None replace the patch.
Service-level fallback
# If the affected feature is optional, stop the service until the patch is applied
sudo systemctl stop ios
sudo systemctl disable ios
How to verify the fix worked
# Linux
ios --version 2>/dev/null || dpkg -s ios | grep -i version
rpm -q ios 2>/dev/null || true
# Windows
winget list | findstr /I "ios"
Get-HotFix | Sort-Object InstalledOn -Descending | Select-Object -First 5
Expected: the reported version is at or above the patched build documented in the advisory. Restart any services that loaded the old library (systemctl restart <service> on Linux, restart the Windows service or reboot when prompted). For network appliances, run show version on the device and confirm the build matches the patched release.
Frequently asked questions
Related fixes
Other vulnerabilities in the same area that are worth patching alongside this one:
- How to Fix CVE-2019-8526: Use After Free in Macos — Use After Free in Macos
- How to Fix CVE-2019-8605: Use After Free in Ios , Use After Free in Ios
- How to Fix CVE-2019-7287: Out-of-Bounds Write in Apple iOS , Out-of-Bounds Write in Apple iOS
- How to Fix CVE-2019-7286: Out-of-Bounds Write in Apple Multiple Products , Out-of-Bounds Write in Apple Multiple Products
- How to Fix CVE-2019-8506: Type Confusion in Apple Multiple Products , Type Confusion in Apple Multiple Products
Is CVE-2019-6223 actually being exploited?
According to the data sources above, yes, CISA has it listed as actively exploited. Either way, the fix is the same: apply the vendor patch.
Do I need to reboot after patching?
For OS or kernel updates, yes. For most userland packages a systemctl restart <service> is enough. Any process that loaded the old shared library keeps using it until restarted, so when in doubt, reboot.
What is the CVSS score?
7.5 (high). Refer to the vendor advisory for the exact vector string.
Where is the official advisory?
See the References section at the bottom of this page; the vendor's URL is the authoritative source for affected builds and patched versions.
References
- Official vendor advisory: https://support.apple.com/HT209521
- NVD: https://nvd.nist.gov/vuln/detail/CVE-2019-6223
- CISA KEV catalog entry: https://www.cisa.gov/known-exploited-vulnerabilities-catalog
- https://support.apple.com/HT209520
- https://www.cisa.gov/known-exploited-vulnerabilities-catalog?field_cve=CVE-2019-6223
*Written by Sai Kiran Pandrala. Assembled from the official vendor advisory, NVD record, and CISA KEV listing on 2026-05-25. Always confirm against the vendor's advisory before applying changes in production.*