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-27892: Arista EOS OpenConfig gNMI Set Bypass (CVSS 9.6)
CVE-2024-27892: Arista EOS OpenConfig gNMI Set Bypass (CVSS 9.6)

Critical Security Alert

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

SECURITYCRITICALCVE-2024-27892

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…

Dylan H.

Security Team

June 5, 2026
4 min read

Affected Products

  • Arista EOS (with OpenConfig enabled)

Executive Summary

A second critical vulnerability (CVE-2024-27892) has been disclosed in Arista EOS affecting platforms running OpenConfig. Similar to CVE-2024-27890, this flaw allows gNMI Set requests that should be rejected to be processed by the switch, resulting in unauthorized configuration being applied. The CVSS score of 9.6 reflects the severe impact on network infrastructure integrity.

Organizations using Arista EOS with OpenConfig for network automation and telemetry should immediately review both CVE-2024-27890 and CVE-2024-27892 and apply patches.


Vulnerability Overview

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

Technical Details

CVE-2024-27892 represents a distinct bypass condition in Arista EOS's gNMI authorization layer. When an attacker sends a crafted gNMI Set request targeting specific configuration paths, the EOS authorization check fails to reject the request as expected, and the switch processes and applies the configuration change.

The vulnerability is closely related to CVE-2024-27890 but affects a different code path or configuration scenario. Both should be treated as separate issues requiring individual remediation confirmation.

Attack scenario:

1. Attacker scans for Arista EOS switches with OpenConfig/gNMI exposed
2. gNMI port (TCP 6030) identified on reachable switch
3. Crafted gNMI Set request sent targeting sensitive config path
4. Authorization check bypassed — Set request executes
5. Unexpected configuration applied to network device
6. Attacker achieves persistent network misconfiguration

Why This Matters

Enterprise networks increasingly use OpenConfig and gNMI for network-as-code automation pipelines. Compromising gNMI authorization means an attacker can silently manipulate the network fabric in ways that may not be immediately visible in traditional monitoring — making detection difficult and dwell time long.


Affected Versions

Consult the Arista Security Advisory for CVE-2024-27892 for the comprehensive list of affected EOS versions and recommended upgrade targets.


Impact

AreaImpact
Configuration IntegrityUnauthorized changes applied without detection
Network RoutingRoute manipulation, traffic redirection
Access ControlsACL and policy override
Automation PipelinesNetwork-as-code pipelines may trust compromised state
ConfidentialityTraffic interception via route hijacking
AvailabilityMisconfiguration leading to network outages

Remediation

Step 1: Patch to Fixed EOS Version

Apply the patched EOS version as specified in Arista's advisory for CVE-2024-27892. This should be applied alongside the patch for CVE-2024-27890.

Step 2: Harden gNMI Access Controls

# Restrict gNMI to management hosts only
ip access-list MGMT-ONLY
   permit tcp 10.0.0.0/8 any eq 6030
   deny   tcp any any eq 6030
!
management api gnmi
   transport grpc default
      ip access-group MGMT-ONLY in
!

Step 3: Enable gNMI Audit Logging

Ensure all gNMI operations are logged for post-incident review:

# On Arista EOS — enable management API logging
management api gnmi
   audit log enable
!

Step 4: Configuration Drift Detection

Deploy baseline comparison tooling to catch unauthorized changes:

# Use CVP (CloudVision Portal) or custom scripts to detect config drift
# Compare running config against version-controlled golden baseline
 
# Example with napalm (Python)
from napalm import get_network_driver
driver = get_network_driver("eos")
device = driver("switch.example.com", "admin", "password")
device.open()
diffs = device.compare_config()
if diffs:
    print("Configuration drift detected!")
    print(diffs)

Relationship to CVE-2024-27890

AttributeCVE-2024-27890CVE-2024-27892
CVSS9.69.6
TypegNMI Auth BypassgNMI Auth Bypass
Code PathPrimary bypassSecondary bypass
OpenConfig RequiredYesYes
RemediationSame patch cycleSame patch cycle

Both vulnerabilities require the same remediation: upgrade to the patched EOS version and harden gNMI access controls.


References

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

Related Reading

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

Related Articles

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…

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