Originally published on CyberNetSec.
Executive Summary
A critical zero-day vulnerability, identified as CVE-2026-16812, is being actively exploited in on-premises instances of Arista Networks' VeloCloud Orchestrator (VCO). This unauthenticated OS command injection flaw carries a CVSS score of 10.0, allowing remote attackers to execute arbitrary code with privileges on the VCO host. Successful exploitation grants attackers full control over the SD-WAN control plane, enabling them to intercept traffic, modify network policies, and pivot into connected corporate networks. Arista Networks has released security patches, and the U.S. Cybersecurity and Infrastructure Security Agency (CISA) has added the vulnerability to its Known Exploited Vulnerabilities (KEV) catalog, requiring federal agencies to patch by July 30, 2026.
Vulnerability Details
CVE-2026-16812 is an unauthenticated OS command injection vulnerability affecting the web-based management interface of the Arista VeloCloud Orchestrator. The flaw exists in a privileged internal function that was not intended to be remotely accessible. An unauthenticated attacker can send a specially crafted request to the VCO appliance to trigger this flaw, allowing them to execute arbitrary commands on the underlying operating system. The commands are executed with the privileges of the VCO application, which could lead to a full system compromise.
The attack complexity is low, and it requires no user interaction, making it highly wormable and dangerous for any internet-exposed VCO instances. The vulnerability compromises the confidentiality, integrity, and availability of the orchestrator and the entire SD-WAN fabric it manages.
Affected Systems
Affected products are on-premises (self-hosted) installations of the Arista VeloCloud Orchestrator. Cloud-hosted and dedicated instances managed by Arista were patched prior to the advisory's release. The specific vulnerable versions are:
- 5.2.x releases before 5.2.3.14
- 6.1.x releases before 6.1.3.4
- 6.4.x releases before 6.4.2.4
- 7.0.x releases before 7.0.0.1
Exploitation Status
Arista Networks and CISA have confirmed that CVE-2026-16812 is being actively exploited in the wild. Details about the threat actors behind these attacks and the scale of exploitation have not been publicly disclosed. However, Arista has released three IP addresses associated with observed attacks. The addition to the CISA KEV catalog indicates observed, real-world exploitation and elevates the urgency for all organizations to apply patches.
Impact Assessment
A compromised VeloCloud Orchestrator represents a catastrophic failure of network security. As the centralized control and management plane for an organization's SD-WAN, an attacker with control over the VCO can:
- Monitor and Intercept Traffic: View all unencrypted traffic passing through the SD-WAN fabric.
- Modify Network Policies: Reroute traffic, block access to critical services, or create backdoors into the network.
- Lateral Movement: Use the VCO as a pivot point to attack all connected branch offices and data centers managed by the SD-WAN.
- Deploy Malware: Push malicious configurations or software to SD-WAN edge devices across the entire enterprise. The business impact includes widespread operational disruption, significant data breaches, and a complete loss of trust in the corporate network infrastructure. Recovery would be complex, requiring a full audit of all network devices and configurations.
IOCs — Directly from Articles
Arista has published the following IP addresses as being linked to active exploitation campaigns.
| Type | Value | Description |
|---|---|---|
ip_address_v4 |
8.19.75.217 |
Attacker Infrastructure |
ip_address_v4 |
206.72.242.124 |
Attacker Infrastructure |
ip_address_v4 |
206.72.242.162 |
Attacker Infrastructure |
Cyber Observables — Hunting Hints
Security teams may want to hunt for the following patterns which could indicate related activity:
-
Web Logs: Look for unusual or malformed requests to the VeloCloud Orchestrator web interface, particularly from unknown or untrusted IP addresses. Pay close attention to requests containing shell metacharacters like
;,|,&,$(, or`. -
Process Execution: On the VCO appliance, monitor for unexpected child processes spawned by the main web application service. Look for shells (
/bin/sh,bash) or common reconnaissance commands (whoami,id,uname,ifconfig). - Network Traffic: Analyze network flows from the VCO appliance. Any outbound connections to unexpected IP addresses, especially the IOCs listed above, are highly suspicious. Monitor for traffic on non-standard ports or protocols that could indicate a reverse shell.
Detection & Response
- Log Analysis: Immediately search web server access logs on the VCO appliance for connections from the IOCs provided by Arista. Expand the search to include any suspicious POST requests that do not align with normal administrative activity. Use SIEM queries to correlate web logs with process execution logs on the host.
- Network Monitoring: Implement monitoring rules to detect and alert on any network connections originating from the VCO appliance to the internet, especially to the known malicious IPs. A properly configured VCO should have very limited and predictable outbound traffic patterns. This is a key D3FEND technique:
D3-NTA: Network Traffic Analysis. - Endpoint Detection and Response (EDR): If an EDR agent is deployed on the VCO host, hunt for suspicious process chains. A web server process spawning a shell is a definitive sign of compromise. This maps to
D3-PA: Process Analysis. - Incident Response: If compromise is suspected, immediately isolate the VCO appliance from the network to prevent further lateral movement. Preserve logs, memory, and disk images for forensic analysis. Assume all connected edge devices and networks may be compromised and initiate a broader incident response plan.
Mitigation
- Patch Immediately: The primary mitigation is to apply the security updates provided by Arista to all on-premises VCO instances. This is the most effective way to eliminate the vulnerability. This aligns with the D3FEND technique
D3-SU: Software Update. - Restrict Access: If patching is not immediately possible, implement strict access control lists (ACLs) on firewalls to restrict access to the VCO's management interface. Access should only be permitted from a dedicated, trusted administrative network or jump host. Do not expose the VCO management interface to the public internet.
- Network Segmentation: Ensure the VCO appliance is in a properly segmented network zone, separate from general user and server networks. This can help contain the blast radius if the appliance is compromised. This is a form of D3FEND's
D3-NI: Network Isolation. - Web Application Firewall (WAF): Deploy a WAF in front of the VCO management interface to inspect incoming traffic for malicious patterns, such as command injection attempts. This provides an additional layer of defense.
Top comments (0)