Skip to main content
COSMICBYTEZLABS
NewsSecurityHOWTOsToolsTraining
StudyProjectsNewsletterHire MeAbout
Subscribe

Press Enter to search or Esc to close

News
Security
HOWTOs
Tools
Training
Study
Projects
Newsletter
Hire Me
About
RSS Feed
Reading List
Subscribe

Stay in the Loop

Get the latest security alerts, tutorials, and tech insights delivered to your inbox.

Subscribe NowFree forever. No spam.
COSMICBYTEZLABS

Your trusted source for IT intelligence, cybersecurity insights, and hands-on technical guides.

1371+ Articles
150+ Guides

CONTENT

  • Latest News
  • Security Alerts
  • HOWTOs
  • Checklists
  • Projects
  • Exam Prep

RESOURCES

  • Search
  • Browse Tags
  • Newsletter Archive
  • Reading List
  • RSS Feed

COMPANY

  • About Us
  • Contact
  • Privacy Policy
  • Terms of Service

© 2026 CosmicBytez Labs. All rights reserved.

System Status: Operational
  1. Home
  2. Security
  3. CVE-2024-27890: Arista EOS OpenConfig gNMI Authorization Bypass (CVSS 9.6)
CVE-2024-27890: Arista EOS OpenConfig gNMI Authorization Bypass (CVSS 9.6)

Critical Security Alert

This vulnerability is actively being exploited. Immediate action is recommended.

SECURITYCRITICALCVE-2024-27890

CVE-2024-27890: Arista EOS OpenConfig gNMI Authorization Bypass (CVSS 9.6)

Arista EOS platforms with OpenConfig configured are vulnerable to unauthorized gNMI Set requests that should have been rejected, allowing attackers to apply…

Dylan H.

Security Team

June 5, 2026
4 min read

Affected Products

  • Arista EOS (with OpenConfig enabled)

Executive Summary

A critical authorization bypass vulnerability (CVE-2024-27890) has been disclosed in Arista EOS affecting platforms with OpenConfig configured. The flaw allows gNMI Set requests that should have been rejected to execute successfully, enabling an attacker with network access to the gNMI interface to apply unexpected or malicious configuration to affected switches.

With a CVSS score of 9.6, this vulnerability poses a severe risk to network infrastructure environments running Arista EOS with telemetry management via OpenConfig.


Vulnerability Overview

AttributeValue
CVE IDCVE-2024-27890
CVSS Score9.6 (Critical)
VendorArista Networks
ProductEOS (Extensible Operating System)
ComponentOpenConfig / gNMI interface
TypeAuthorization Bypass
Attack VectorNetwork
ConditionOpenConfig must be enabled

Technical Details

gNMI (gRPC Network Management Interface) is a network management protocol used by OpenConfig-enabled devices for streaming telemetry and configuration. In affected versions of Arista EOS, certain gNMI Set operations — which should fail authorization checks and be rejected — are instead executed without the expected validation.

This means an attacker who can reach the gNMI port of an affected switch can push unauthorized configuration changes, potentially:

  • Modifying routing tables and BGP policies
  • Altering access control lists (ACLs)
  • Changing VLAN configurations
  • Disabling or reconfiguring monitoring and logging
  • Pivoting deeper into the network environment
Attack Flow:
1. Attacker identifies Arista EOS switch with OpenConfig/gNMI enabled
2. Attacker connects to gNMI port (typically TCP 6030)
3. Attacker sends crafted gNMI Set request that should be rejected
4. EOS processes the request due to missing authorization check
5. Switch applies attacker-controlled configuration
6. Network behavior altered — routing, ACLs, monitoring impacted

Affected Versions

Consult the official Arista Security Advisory for the full list of affected EOS versions. This vulnerability affects platforms running EOS with the OpenConfig feature enabled.


Impact

AreaImpact
Network InfrastructureUnauthorized configuration of core network switches
Routing IntegrityBGP, OSPF, or static route manipulation
Security ControlsACL and firewall policy override
MonitoringLogging and telemetry configuration altered
ConfidentialityTraffic redirection enabling man-in-the-middle attacks
AvailabilityMisconfiguration causing network outages

Remediation

Step 1: Apply Arista EOS Patch

Upgrade to the fixed EOS version as specified in the Arista Security Advisory for CVE-2024-27890.

Step 2: Restrict gNMI Port Access

If OpenConfig is required, apply strict network-level access controls to the gNMI port:

# Example — restrict gNMI access to authorized management hosts only
# On Arista EOS:
ip access-list GNMI-ALLOW
   permit tcp 192.168.100.0/24 any eq 6030
!
management api gnmi
   transport grpc default
      ip access-group GNMI-ALLOW in
!

Step 3: Disable OpenConfig If Not Required

# On Arista EOS — disable OpenConfig if not actively used
no management api gnmi

Step 4: Audit Recent gNMI Activity

Review gNMI audit logs and switch configuration history for unauthorized changes:

# Check EOS configuration change history
show archive log all | grep "gNMI"
 
# Review running config against known-good baseline
show running-config | diff - /mnt/flash/baseline-config.txt

Detection Indicators

IndicatorDescription
Unexpected configuration changesAuthorization-bypassed gNMI Set operations
gNMI connections from non-management IPsUnauthorized management access
Routing anomaliesBGP/OSPF table changes from gNMI
Missing or altered ACL entriesSecurity policy modification

References

  • NIST NVD — CVE-2024-27890
  • Arista Security Advisory for CVE-2024-27890 (consult Arista support portal)

Related Reading

  • CVE-2024-27892: Arista EOS OpenConfig gNMI Set Bypass (CVSS 9.6)
  • CVE-2026-28318: SolarWinds Serv-U Uncontrolled Resource Consumption
#Arista#EOS#Network#gNMI#OpenConfig#CVE-2024-27890

Related Articles

CVE-2024-27892: Arista EOS OpenConfig gNMI Set Bypass (CVSS 9.6)

A second critical OpenConfig authorization bypass in Arista EOS allows gNMI Set requests that should be rejected to execute, enabling unauthorized network…

4 min read

CVE-2026-11334: SQL Injection in College Management System

A high-severity SQL injection vulnerability (CVSS 7.3) in CollegeManagementSystem allows attackers to manipulate the department_code parameter in…

4 min read

CVE-2026-21029: Samsung Galaxy Editing Service Privilege Escalation

A high-severity vulnerability in Samsung's Galaxy Editing Service allows local attackers to execute privileged operations due to improper export of Android…

4 min read
Back to all Security Alerts