Arista CloudVision Exchange (CVX) Cluster Privilege Escalation via MCS Redis Session

Summary

CVECVE-2025-5088
StatePUBLISHED
AssignerArista
Source PriorityCVE Program / NVD first with legacy fallback
Published2026-06-05 17:16:29 UTC
Updated2026-06-05 19:03:48 UTC
DescriptionAn authenticated Redis session could be used to obtain full root access to all servers in the CVX cluster. Note that this would require an attacker to have both network access to the Redis service on a CVX server and the Redis password. Please note that all Redis communication, including authentication, occurs over plaintext in the present day. TLS support is tracked under RFE1294850.

Risk And Classification

Primary CVSS: v4.0 8.7 HIGH from [email protected]

CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X

EPSS: 0.000310000 probability, percentile 0.096230000 (date 2026-06-11)

Problem Types: CWE-269 | CWE-269 CWE-269: Improper Privilege Management


VersionSourceTypeScoreSeverityVector
4.0[email protected]Secondary8.7HIGHCVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:L/SC:N/SI:N/SA:N/E:X/C...
4.0CNACVSS8.7HIGHCVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:L/SC:N/SI:N/SA:N
3.1[email protected]Secondary8.3HIGHCVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L
3.1CNACVSS8.3HIGHCVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L

CVSS v4.0 Breakdown

Attack Vector
Network
Attack Complexity
Low
Attack Requirements
None
Privileges Required
Low
User Interaction
None
Confidentiality
High
Integrity
High
Availability
Low
Sub Conf.
None
Sub Integrity
None
Sub Availability
None

CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:H/VA:L/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X

CVSS v3.1 Breakdown

Attack Vector
Network
Attack Complexity
Low
Privileges Required
Low
User Interaction
None
Scope
Unchanged
Confidentiality
High
Integrity
High
Availability
Low

CVSS:3.1/AV:N/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:L

Vendor Declared Affected Products

SourceVendorProductVersionPlatforms
CNA Arista Networks EOS / CloudVision EXchange CVX affected 4.34.0F 4.34.1F custom CloudVision eXchange, virtual or physical appliance
CNA Arista Networks EOS / CloudVision EXchange CVX affected 4.33.0M 4.33.4M custom CloudVision eXchange, virtual or physical appliance
CNA Arista Networks EOS / CloudVision EXchange CVX affected 4.32.0M 4.32.6M custom CloudVision eXchange, virtual or physical appliance
CNA Arista Networks EOS / CloudVision EXchange CVX affected 4.31.0M 4.31.8M custom CloudVision eXchange, virtual or physical appliance
CNA Arista Networks EOS / CloudVision EXchange CVX affected 4.30.0 4.31.0 custom CloudVision eXchange, virtual or physical appliance

References

ReferenceSourceLinkTags
www.arista.com/en/support/advisories-notices/security-advisory/22868-securit... [email protected] www.arista.com
CVE Program record CVE.ORG www.cve.org canonical
NVD vulnerability detail NVD nvd.nist.gov canonical, analysis

Additional Advisory Data

Solutions

CNA: The recommended resolution is to upgrade to a remediated software version at your earliest convenience. Arista recommends customers move to the latest version of each release that contains all the fixes listed below. For more information about upgrading see EOS User Manual: Upgrades and Downgrades https://www.arista.com/en/um-eos/eos-upgrades-and-downgrades CVE-2025-5088 has been fixed in the following releases: * 4.34.2F and later releases in the 4.34.x train * 4.33.5M and later releases in the 4.33.x train * 4.32.7M and later releases in the 4.32.x train * 4.31.9M and later releases in the 4.31.x train

Workarounds

CNA: To run the redis-server as a dedicated "redis" user and group on the CVX server, follow these steps, ensuring all changes are applied correctly and the service restarts smoothly. This approach enhances security by isolating the Redis process with its own user and group permissions. Please ensure that these mitigation steps are tested thoroughly in a non-production environment prior to production deployment. Log in to the CVX Server Access your CVX server (e.g. using SSH) using the appropriate credentials. This is the initial point of access for all subsequent configuration changes. Stop Redis Before Applying Changes It is crucial to stop Redis to prevent data corruption or conflicts while modifying its configuration. This is achieved by unconfiguring the Redis password on the MCS service. Executing no redis password stops the Redis service by removing its authentication credentials, which prevents it from running. cvx>enable cvx#config cvx(config)#cvx cvx(config-cvx)#service mcs cvx(config-cvx-mcs)#no redis password cvx(config-cvx-mcs)# Edit the redis.service Systemd Service File This step involves modifying the systemd service file for Redis to specify the dedicated user and group under which Redis will run. First, transition to bash mode from the CVX configuration prompt: cvx(config-cvx-mcs)#bash Once in bash, use sudo nano to edit the redis.service file: [cvx ~]$sudo nano /etc/systemd/system/redis.service Add 'User' and 'Group' Directives to the [Service] Section Within the redis.service file, locate the [Service] section and add the following lines: [Service] User=redis Group=redis This modification ensures that when the redis-server starts, it will execute under the context of the redis user and redis group, thereby enforcing stricter access controls and enhancing system security. Save and exit the editor. Change Ownership of the Redis Log File To ensure the redis user has appropriate write permissions for its log file, change the ownership of /var/log/redis/redis.log to the redis user and group. [cvx ~]$sudo chown redis:redis /var/log/redis/redis.log This step is required for the Redis server to be able to write logs once it restarts under the new user and group. Restart the Redis with New Changes After making all necessary modifications, restart the Redis to apply the new configuration. This is done by reconfiguring the Redis password, which will bring the service back online. First, exit bash mode: [cvx ~]$exit Then, reconfigure the Redis password: cvx(config-cvx-mcs)#redis password <secret> Replace <secret> with your actual Redis password. This action will re-enable the Redis, and it will now run with the specified redis user and redis group. NOTE: Following a CVX server reload or power cycle, all previously mentioned steps must be repeated.

© CVE.report 2026

Use of this information constitutes acceptance for use in an AS IS condition. There are NO warranties, implied or otherwise, with regard to this information or its use. Any use of this information is at the user's risk. It is the responsibility of user to evaluate the accuracy, completeness or usefulness of any information, opinion, advice or other content. EACH USER WILL BE SOLELY RESPONSIBLE FOR ANY consequences of his or her direct or indirect use of this web site. ALL WARRANTIES OF ANY KIND ARE EXPRESSLY DISCLAIMED. This site will NOT BE LIABLE FOR ANY DIRECT, INDIRECT or any other kind of loss.

CVE, CWE, and OVAL are registred trademarks of The MITRE Corporation and the authoritative source of CVE content is MITRE's CVE web site. This site includes MITRE data granted under the following license.

Free CVE JSON API cve.report/api

CVE.report and Source URL Uptime Status status.cve.report