CISA KEV Adds Actively Exploited Zimbra & MLflow Flaws
CISA adds critical zero-days in Zimbra and MLflow to the Known Exploited Vulnerabilities catalog in August 2026, ordering urgent remediation.

The addition of critical Zimbra and MLflow vulnerabilities to the CISA KEV (Known Exploited Vulnerabilities) catalog in August 2026 highlights an evolving threat landscape. The Cybersecurity and Infrastructure Security Agency (CISA) issued a mandatory binding directive following confirmed in-the-wild exploitation of CVE-2026-73570 (Zimbra authentication spoofing) and CVE-2026-64849 (MLflow remote code execution).
The intersection between enterprise messaging systems and machine learning infrastructure has become the primary initial access vector for ransomware syndicates.
In-Depth Vulnerability Analysis
1. Zimbra SOAP Authentication Bypass (CVE-2026-73570)
The flaw within Zimbra stems from improper validation of cross-session authentication headers during SOAP request routing. Remote unauthenticated adversaries can forge header metadata to access executive mailboxes and exfiltrate confidential corporate correspondence.
To analyze email headers and verify SPF, DKIM, and DMARC alignment against spoofing campaigns, use our Email Header Analyzer.
2. Insecure Model Deserialization in MLflow (CVE-2026-64849)
Within MLflow Tracking Servers, artifact staging endpoints process serialized model files (including Pickle and PyTorch checkpoints) without cryptographic origin verification. Remote attackers with network access can upload weaponized models that execute arbitrary commands across GPU training clusters.
CISA KEV Vulnerability Matrix (August 2026)
| CVE Identifier | Target Platform | Vulnerability Mechanism | CVSS v3.1 | Remediation Window |
|---|---|---|---|---|
| CVE-2026-73570 | Zimbra Collaboration Suite | SOAP Authentication Spoofing | 9.1 (Critical) | 7 Business Days |
| CVE-2026-64849 | MLflow Tracking Server | Remote Code Execution (RCE) | 9.8 (Critical) | 7 Business Days |
| CVE-2026-61209 | VMware vCenter Server | Local Privilege Escalation | 8.4 (High) | 14 Business Days |
| CVE-2026-58311 | Microsoft IKE Extensions | IPsec Buffer Overflow | 8.8 (High) | 14 Business Days |
Mathematical Verification of MLflow Artifact Integrity
Preventing model tampering requires strict cryptographic signature verification:
$$ ext{Integrity} = \mathcal{H}{ ext{SHA256}}( ext{Artifact}) \stackrel{?}{=} ext{Signed}{ ext{Registry}}( ext{Digest})$$
Python MLflow Exposed API Audit Script
import requests
import urllib3
urllib3.disable_warnings(urllib3.exceptions.InsecureRequestWarning)
def audit_mlflow_instance(base_url: str) -> dict:
try:
endpoint = f"{base_url.rstrip('/')}/api/2.0/mlflow/experiments/list"
response = requests.get(endpoint, timeout=8, verify=False)
if response.status_code == 200:
return {
"url": base_url,
"is_vulnerable_exposed": True,
"status": "CRITICAL: Unauthenticated MLflow REST API exposed",
"experiments_count": len(response.json().get("experiments", []))
}
else:
return {"url": base_url, "is_vulnerable_exposed": False, "status": f"Protected (HTTP {response.status_code})"}
except Exception as e:
return {"url": base_url, "is_vulnerable_exposed": False, "error": str(e)}
Emergency DevSecOps Remediation Steps
- Isolate MLflow Endpoints: Restrict tracking server ports behind enterprise VPNs and enforce Zero Trust B2B Architecture Controls.
- Apply Zimbra Hotfixes: Update Zimbra servers immediately or deploy WAF rules to inspect SOAP traffic according to HTTP Cookie and Security Header Guidelines.
- Audit Compromised Credentials: Check corporate identities against breach databases using our Data Breach Checker.
Summary
The CISA KEV catalog additions underscore that attackers target communication infrastructure and AI development platforms simultaneously. Strict API access controls and rapid patch deployment remain the most effective defenses against active cyber exploitation.
References:
- CISA Known Exploited Vulnerabilities Catalog Official Release.
- Zimbra Security Response Center Advisories.
- MLflow Security Bulletins.


