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.

1577+ Articles
153+ 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-2025-67038: Lantronix EDS5000 OS Command Injection Vulnerability
CVE-2025-67038: Lantronix EDS5000 OS Command Injection Vulnerability

Critical Security Alert

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

SECURITYCRITICALCVE-2025-67038

CVE-2025-67038: Lantronix EDS5000 OS Command Injection Vulnerability

A critical OS command injection flaw in the Lantronix EDS5000 serial device server allows unauthenticated attackers to inject arbitrary commands via the username parameter, executing them with root privileges. Added to CISA's Known Exploited Vulnerabilities catalog.

Dylan H.

Security Team

June 23, 2026
4 min read

Affected Products

  • Lantronix EDS5000

Overview

A critical OS command injection vulnerability (CVE-2025-67038) has been identified in the Lantronix EDS5000 series serial device server. The flaw allows attackers to inject arbitrary operating system commands through the username parameter during authentication, with all injected commands executing under root privileges — giving an attacker complete control of the affected device.

The vulnerability has been added to CISA's Known Exploited Vulnerabilities (KEV) catalog, indicating it is being actively leveraged in real-world attacks.


Vulnerability Details

FieldValue
CVE IDCVE-2025-67038
VendorLantronix
ProductEDS5000 Series
Vulnerability TypeOS Command Injection (CWE-78)
Attack VectorNetwork
Privileges RequiredNone
User InteractionNone
CISA KEV ListedYes — June 23, 2026
Execution ContextRoot

What is the Lantronix EDS5000?

The EDS5000 is an industrial serial device server used to connect legacy RS-232/422/485 serial equipment to modern TCP/IP networks. These devices are widely deployed in:

  • Manufacturing and industrial control systems (ICS)
  • Building automation and SCADA environments
  • Healthcare and medical device networks
  • Utilities and energy infrastructure

Because EDS5000 units often sit in critical OT (operational technology) environments and are rarely updated, vulnerabilities in these devices carry significant operational risk.


Technical Description

The vulnerability exists in the authentication handling code of the EDS5000's web management interface. The username field fails to sanitize user input before passing it to a shell interpreter, enabling classic OS command injection:

username=admin; <malicious_command>; #

Because the underlying process runs as root, injected commands inherit full system privileges. An attacker can exploit this without any prior credentials, making it a zero-authentication, network-accessible RCE.

Attack Primitives Enabled

  • Remote command execution as root
  • Persistence mechanisms (cron jobs, modified startup scripts)
  • Lateral movement from OT network to IT network
  • Configuration extraction (credentials, network maps)
  • Device bricking or disruption of connected serial equipment

CISA KEV Listing

CISA added CVE-2025-67038 to the Known Exploited Vulnerabilities catalog on June 23, 2026, confirming active exploitation in the wild. Federal agencies operating under BOD 22-01 are required to remediate this vulnerability by the CISA-mandated deadline.

Organizations using Lantronix EDS5000 devices should treat this as an emergency remediation priority, regardless of sector.


Affected Versions

Lantronix EDS5000 devices running firmware versions prior to the vendor's patch release are affected. Consult the Lantronix security advisories page for specific version details and patched firmware.


Remediation

Immediate Actions

  1. Apply the vendor firmware patch as soon as it becomes available from Lantronix
  2. Restrict network access — Place EDS5000 devices behind a firewall or VPN; block direct internet exposure
  3. Disable the web management interface if not actively needed
  4. Audit authentication logs for anomalous login attempts with unusual username strings
  5. Segment OT/IT networks to limit blast radius if a device is compromised

Detection

Look for HTTP POST requests to the EDS5000 management interface where the username parameter contains shell metacharacters: ;, |, &&, `, $().

POST /auth HTTP/1.1
Host: <device-ip>
Content-Type: application/x-www-form-urlencoded

username=admin%3B+id%3B+%23&password=anything

Network Controls

# Block EDS5000 management ports (80/443) from untrusted networks
iptables -A INPUT -p tcp --dport 80 -s <trusted_mgmt_subnet> -j ACCEPT
iptables -A INPUT -p tcp --dport 80 -j DROP

Risk Assessment

Risk FactorAssessment
ExploitabilityHigh — no auth, network-accessible
ImpactCritical — root RCE on OT device
ExposureMedium — typically internal, but internet-exposed deployments exist
PatchabilityDepends on vendor firmware availability
Compensating ControlsNetwork segmentation, web UI disable

Recommendations

  • Federal agencies: Patch per CISA BOD 22-01 deadline
  • Industrial/OT operators: Treat as P1 — emergency network isolation if patch unavailable
  • Security teams: Scan for internet-exposed EDS5000 devices using Shodan or equivalent; audit firewall rules for serial device servers

Sources

  • CISA Known Exploited Vulnerabilities — CVE-2025-67038
  • NVD — CVE-2025-67038
  • Lantronix Product Security

Related Advisories

  • WinRAR Path Traversal CVE-2025-8088 Actively Exploited
  • Critical Telnetd Flaw CVE-2026-32746 Enables Unauthenticated Root RCE
#CVE#CISA KEV#Command Injection#Lantronix#Industrial#IoT

Related Articles

CVE-2026-7037: Unauthenticated OS Command Injection in Totolink A8000RU

A critical CVSS 9.8 OS command injection vulnerability in the Totolink A8000RU router allows unauthenticated remote attackers to execute arbitrary...

5 min read

CVE-2025-29635: D-Link DIR-823X Command Injection

A command injection flaw in end-of-life D-Link DIR-823X routers allows authenticated remote attackers to execute arbitrary OS commands. CISA has added...

3 min read

CVE-2026-6112: Totolink A7100RU OS Command Injection via setRadvdCfg

A critical OS command injection vulnerability (CVSS 9.8) in Totolink A7100RU firmware allows unauthenticated remote attackers to execute arbitrary...

3 min read
Back to all Security Alerts