1. Executive summary
Unit 42 has published details of a persistent cyberespionage campaign (tracked as CL-STA-1114) actively targeting unpatched Zimbra Collaboration Suite (ZCS) webmail servers via CVE-2025-66376. The activity cluster overlaps with Russian threat actor tracking names "Void Blizzard" and "LAUNDRY BEAR"; however, as no MITRE ATT&CK profile exists for this attribution in the verified reference data, it must be treated as unconfirmed. The campaign has targeted government, defense, transportation, and financial organizations across NATO member states, Ukraine, CIS countries, and Africa since July 2025. The zero-click exploit injects a malicious JavaScript payload that exfiltrates credentials, 2FA scratch codes, and 90 days of email and search history, posing a direct credential-theft and data-exfiltration risk to EMEA financial services running ZCS.
2. Regulatory framing
| Article | Trigger (the fact in this item) | Practical impact |
|---|---|---|
| DORA Art. 19: reporting of major ICT-related incidents to competent authorities | Credential theft and exfiltration of 90 days of email archives from a ZCS webmail server, including 2FA scratch codes, constitutes a major ICT-related incident if it impacts a financial entity's operations or data. | Clients running ZCS who detect exploitation must assess whether the incident meets the classification threshold under Art. 18 and triggers reporting obligations under Art. 19. |
| DORA Art. 24: digital operational resilience testing — general requirements | Active exploitation of CVE-2025-66376 against unpatched ZCS instances indicates that vulnerability scanning and patch management for internet-facing mail platforms must be current. | Clients should verify that ZCS and other internet-facing collaboration platforms are included in resilience testing programmes and that patch levels are validated. |
3. Technical analysis & attack chain
Attribution caveat: Unit 42 reports overlap between CL-STA-1114 and the Russian threat actor labels "Void Blizzard" and "LAUNDRY BEAR." The verified reference data contains no MITRE ATT&CK profile for "Russian cyberespionage," so this attribution is unconfirmed. The following analysis is single-sourced from the Unit 42 report; verify before enforcement.
Attack chain
- Initial access — zero-click phishing email: The attacker sends a phishing email containing either an HTML attachment or embedded HTML in the message body. The lure uses news headlines to catch the recipient's attention. The exploit requires no recipient interaction (zero-click) and leverages CVE-2025-66376 in the ZCS webmail platform.
- Payload delivery — obfuscated HTML/SVG mechanism: The HTML text contains an obfuscated
<div>element with a Base64-encoded script. Upon loading, this creates an invisible SVG element that decodes the Base64-encoded script into a JavaScript payload and injects it into the victim's browser within the ZCS webmail context. - Data exfiltration — hard-coded C2: The JavaScript payload exfiltrates the following data to a hard-coded C2 server: - CSRF tokens - Email address and password - Two-factor authentication (2FA) scratch codes - System and environment details - The victim's last 90 days of email and search history
- C2 infrastructure: Over the course of the campaign, Unit 42 observed at least nine IP addresses and nine domains used for C2 servers. C2 servers were active for an average of 35.4 days. The JavaScript payload has shown minimal changes throughout the campaign, indicating operational stability and low need for iteration.
Campaign timeline: CL-STA-1114 has been active since at least 2024; the ZCS-targeting campaign component began in July 2025.
Targeting scope: Governments, defense, transportation, and financial organizations across NATO member states, Ukraine, CIS countries, and Africa.
4. Mitigation & containment
P1 — within 24 hours
- Identify all internet-facing Zimbra Collaboration Suite (ZCS) instances in the estate. Inventory versions and patch levels.
- Patch all ZCS instances against CVE-2025-66376 immediately. Threat actors are actively targeting unpatched instances.
- Block the nine known C2 IP addresses and nine C2 domains (see §5) at perimeter firewall, proxy, and DNS resolver layers.
- Search mail logs and webmail access logs for evidence of exploitation: look for HTML attachments or embedded HTML in inbound emails matching the lure description, and anomalous outbound connections from ZCS servers to known C2 infrastructure.
- If exploitation is confirmed: rotate all credentials for affected ZCS accounts, invalidate all 2FA scratch codes, and force re-enrollment of 2FA. Review the 90-day email exfiltration window for sensitive communications.
P2 — within 72 hours
- Deploy email gateway rules to quarantine or sandbox inbound emails containing HTML attachments with Base64-encoded
<div>elements and embedded SVG elements. Palo Alto Networks Cortex Advanced Email Security routes suspicious HTML attachments to Advanced WildFire for static and dynamic analysis — clients using this stack should confirm the module is enabled. - Enable Advanced URL Filtering and Advanced DNS Security (or equivalent) to block known malicious domains and URLs associated with CL-STA-1114.
- Review ZCS webmail logs for the period since July 2025 for indicators of prior compromise, including unusual authentication patterns, access from unexpected IPs, and large data transfers.
P3 — within 7 days
- Validate that ZCS and all internet-facing collaboration platforms are included in the organisation's vulnerability scanning and digital operational resilience testing programme (DORA Art. 24).
- Assess whether any detected exploitation meets the classification and reporting thresholds under DORA Arts. 18–19.
- Brief mail and identity teams on the zero-click nature of this exploit — user awareness training alone is insufficient because no user interaction is required.
5. Indicators of compromise
The Unit 42 report states that at least nine IP addresses and nine domains were used as C2 servers, but the specific indicator values are not included in the provided source material. The report references an IoC section, but the actual values were not present in the fetched content.
No indicators of compromise available in the source material. The source references but does not enumerate the specific IP addresses, domains, file hashes, or other atomic indicators. Clients should retrieve the full IoC list directly from the Unit 42 report at https://unit42.paloaltonetworks.com/russian-webmail-espionage/.
Behavioural indicators
| Behaviour | Where to observe | Confidence |
|---|---|---|
Inbound email containing HTML attachment or embedded HTML with Base64-encoded <div> and invisible SVG element |
Email gateway / mail server logs | High — single-sourced (Unit 42) |
| JavaScript injection into ZCS webmail session in victim browser | ZCS webmail application logs, browser telemetry | High — single-sourced (Unit 42) |
| Outbound connections from ZCS server or user browser to hard-coded C2 server (9 IPs, 9 domains; avg 35.4 days active) | Network firewall logs, proxy logs, DNS logs | High — single-sourced (Unit 42) |
| Exfiltration of CSRF tokens, credentials, 2FA scratch codes, and 90 days of email/search history | ZCS server logs, network egress monitoring | High — single-sourced (Unit 42) |
6. Detection
rule CL_STA_1114_Zimbra_JS_Payload {
meta:
author = "Adverse Trace"
date = "2026-07-23"
reference = "https://unit42.paloaltonetworks.com/russian-webmail-espionage/"
description = "Detects obfuscated HTML/SVG delivery mechanism used in CL-STA-1114 Zimbra webmail espionage campaign"
strings:
$b64_div = "base64" nocase
$svg_element = "<svg" nocase
$invisible_svg = "visibility=\"hidden\"" nocase
$csrf = "CSRF" nocase
$scratch = "scratch" nocase
$zimbra = "zimbra" nocase
condition:
$b64_div and $svg_element and ($invisible_svg or $csrf or $scratch) and $zimbra
}
Detection caveat: This YARA rule is constructed from behavioural artefacts described in the source (Base64-encoded script in an obfuscated div, invisible SVG element, CSRF token and 2FA scratch code exfiltration in a Zimbra context). The rule should be validated against confirmed malicious samples from the full Unit 42 report before production deployment. No file hashes or exact payload strings were available in the provided source material.
7. Sources
- Palo Alto Networks Unit 42, "Russian Global Webmail Espionage," https://unit42.paloaltonetworks.com/russian-webmail-espionage/, published 2026-07-23.
8. Adverse Trace position
This is an active, persistent cyberespionage campaign directly targeting financial organizations in EMEA-relevant regions using a zero-click exploit against Zimbra Collaboration Suite. The severity is elevated by the zero-click delivery mechanism (no user interaction required), the breadth of exfiltrated data (credentials, 2FA scratch codes, 90 days of email), and the ongoing active exploitation of unpatched instances. Attribution to a Russian state-sponsored actor is unconfirmed — the verified reference data contains no MITRE ATT&CK profile, and the analysis is single-sourced from Unit 42. EMEA financial services clients running ZCS should treat this as an immediate patching priority and conduct retrospective log review back to July 2025. Adverse Trace will update this advisory if the full IoC set becomes available or if additional sources corroborate the attribution.
Published via PulseTrace — Adverse Trace threat intelligence.