CVE-2025-67038 CrowdStrike LogScale · LogScale

Detect CVE-2025-67038 Lantronix EDS5000 Code Injection Exploitation in CrowdStrike LogScale

Detects exploitation attempts targeting CVE-2025-67038, a code injection vulnerability (CWE-78/CWE-94) in Lantronix EDS5000 series device servers. This vulnerability is listed in CISA's Known Exploited Vulnerabilities catalog and allows attackers to inject OS commands or code through the device management interface. The EDS5000 series includes EDS5008, EDS5016, and EDS5032 models commonly deployed as serial-to-network device servers in industrial and enterprise environments.

MITRE ATT&CK

Tactic
Initial Access Execution Lateral Movement

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=NetworkConnectIP4
| dest_port_number in [80, 443, 8080, 9999, 30718]
| join type=inner
  [
    #event_simpleName=ProcessRollup2
    | CommandLine = /(?i)(wget|curl|nc|ncat|bash|sh|python|perl).*(?:lantronix|eds5000|\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})/
    | eval is_suspicious_process = 1
  ]
  [aid, TargetProcessId]
| union
  [
    #event_simpleName=NetworkConnectIP4
    | dest_port_number in [80, 443, 8080, 9999, 30718]
    | LocalAddressIP4 = /\d+\.\d+\.\d+\.\d+/
    | eval connection_count = count(dest_port_number)
    | where connection_count > 10
  ]
| fields aid, ComputerName, UserName, LocalAddressIP4, RemoteAddressIP4, dest_port_number, FileName, CommandLine, timestamp
| sort timestamp desc
critical severity medium confidence

CrowdStrike Falcon Query Language detection correlating network connections to Lantronix EDS5000 management ports with suspicious process executions indicative of CVE-2025-67038 post-exploitation activity on compromised hosts.

Data Sources

CrowdStrike Falcon EDRCrowdStrike Network ContainmentFalcon Data Replicator

Required Tables

NetworkConnectIP4ProcessRollup2

False Positives & Tuning

  • IT administrators using curl/wget for legitimate EDS5000 firmware management
  • Automated configuration management tools connecting to device management ports
  • Network monitoring daemons performing regular connectivity checks
  • DevOps pipelines interacting with device APIs using command-line HTTP tools

Other platforms for CVE-2025-67038


Testing Methodology

Validate this detection against 4 adversary techniques from Atomic Red Team. Each test below lists the behaviour to exercise and the telemetry you should expect to see. Executable commands and cleanup steps are available with Pro.

  1. Test 1CVE-2025-67038 GET-based OS command injection probe

    Expected signal: HTTP request to port 80 with URI containing '/cgi-bin/config.cgi' and query string containing ';id' should appear in firewall, proxy, or web server logs

  2. Test 2CVE-2025-67038 URL-encoded command injection bypass attempt

    Expected signal: HTTP GET request to port 80 containing '%3B' in the query string targeting an admin management path

  3. Test 3CVE-2025-67038 POST-body code injection simulation

    Expected signal: HTTP POST request to port 80 targeting '/manage/apply.cgi' with POST body containing ';wget' command injection — captured in proxy or WAF logs if POST body inspection is enabled

  4. Test 4CVE-2025-67038 path traversal combined with injection

    Expected signal: HTTP GET request containing '../' path traversal sequences combined with 'cmd=id' injection parameter targeting EDS5000 management port

Unlock Pro Content

Get the full detection package for CVE-2025-67038 including response playbook, investigation guide, and atomic red team tests.

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections