Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
Tools/GitHubGitHub/fevar54/cve-2026-7473---arista-eos-tunnel-decapsulation-bypass
Vulnerability AnalysisExploitationConfiguration AuditingNetwork SecurityPenetration TestingLearning & Education
GitHubfevar54/cve-2026-7473---arista-eos-tunnel-decapsulation-bypass

CVE-2026-7473---Arista-EOS-Tunnel-Decapsulation-Bypass

Vulnerability: On affected Arista EOS platforms with tunnel decapsulation

View Repository
133 months agoNot yet reviewed

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

README.md markdown

CVE-2026-7473 - Arista EOS Tunnel Decapsulation Bypass

Security Rating CVSS CISA KEV

⚠️ WARNING

This code is ONLY for educational purposes and authorized security testing.

📋 Description

CVE-2026-7473 is a vulnerability in Arista EOS where a switch configured as a tunnel endpoint (VXLAN, GRE, decap-groups) incorrectly decapsulates and forwards unexpected tunneled packets whose destination IP matches the configured decapsulation IP. This occurs because the switch does not check the tunnel protocol type (CWE-1023).

Technical Details

FieldValue
CVECVE-2026-7473
CVSS v3.15.8 (Medium)
CVSS v4.06.8
VectorAV:N/AC:L/PR:N/UI:N/S:C/C:N/I:L/A:N
CWE1023 - Incomplete Comparison with Missing Factors

🎯 Affected Versions and Platforms

Vulnerable EOS Versions

TrainStatus
4.36.xVulnerable
4.35.xVulnerable
4.34.xVulnerable
4.33.xVulnerable
4.32.xVulnerable
4.31.xVulnerable
4.30.xVulnerable
< 4.30.xVulnerable

Affected Platforms

SeriesExposure
7020R SeriesCompletely affected
7280R/R2 SeriesCompletely affected
7500R/R2 SeriesCompletely affected
7280R3 SeriesLimited exposure (IP-in-IPv6, GUEv6)
7500R3 SeriesLimited exposure (IP-in-IPv6, GUEv6)
7800R3 SeriesLimited exposure (IP-in-IPv6, GUEv6)

🔧 Required Configuration for Exploitation

The device is vulnerable if it meets:

  1. Configured as a tunnel endpoint with decapsulation IP
  2. Has VXLAN VTEP, GRE tunnel endpoint, or ip decap-group

Verify vulnerable configuration

root@kitploit:~
# Verificar VXLAN VTEP
show interfaces vxlan 1

# Verificar GRE tunnel
show interfaces Tunnel0

# Verificar decap-groups
show ip decap-group
🚀 Usage
Installation
bash
git clone https://github.com/username/CVE-2026-7473-Arista-EOS-Tunnel-Bypass
cd CVE-2026-7473-Arista-EOS-Tunnel-Bypass
pip install -r requirements.txt
Scan vulnerable configuration
bash
python3 arista_tunnel_bypass.py -t 10.1.1.1 -d 192.168.1.100 --check-config
Send GRE to switch with VXLAN
bash
python3 arista_tunnel_bypass.py -t 10.1.1.1 -d 192.168.1.100 --exploit vxlan-gre
Send VXLAN to switch with GRE
bash
python3 arista_tunnel_bypass.py -t 10.1.1.1 -d 192.168.1.100 --exploit gre-vxlan
Send all bypass types
bash
python3 arista_tunnel_bypass.py -t 10.1.1.1 -d 192.168.1.100 --exploit all
📊 Exploitation Matrix
Configuration	Unexpected Traffic	Decapsulates?
VXLAN IPv4	GRE	✅ Yes
VXLAN IPv4	IPoIP	✅ Yes
GRE IPv4	VXLAN	✅ Yes
GRE IPv4	IPoIP	✅ Yes
GRE Decap Group	IPoIP	✅ Yes
GUE Decap Group	GRE, IPoIP	✅ Yes
IP-in-IP Decap Group	GRE, NVGRE, VXLAN	✅ Yes
🔍 Indicators of Compromise (IOCs)
Monitor on switch
bash
# Verificar ACL counters
show mac access-lists bar

# Buscar tráfico inesperado
show log | grep -E "GRE|VXLAN|GUE|unexpected"
On network
- Tunneled traffic appearing in unexpected internal segments
- GRE packets when only VXLAN is configured
- VXLAN packets when only GRE is configured

🛡️ Mitigation
Option 1 - ACL on upstream switches (RECOMMENDED)
bash
# Ejemplo: Permitir solo VXLAN
ip access-list foo
   counters per-entry
   1 permit udp any host <vxlan-decap-ip> eq 4789
   2 deny ip any host <decap-ip>
   3 permit ip any any
Option 2 - ACL on decapsulating switch (complex)
- Requires TCAM profile update
- Contact Arista TAC for assistance

📚 References
- Arista Security Advisory 0137
- NVD - CVE-2026-7473
- CISA KEV Catalog

⚖️ Disclaimer
This software is provided "as is". The author is not responsible for misuse. Use it only on authorized systems.
Download Tool