CVE-2026-24061 Sumo Logic CSE · Sumo

Detect GNU InetUtils Argument Injection Vulnerability (CVE-2026-24061) in Sumo Logic CSE

CVE-2026-24061 is an argument injection vulnerability (CWE-88) in GNU InetUtils affecting utilities such as telnet, ftp, rsh, rcp, and related tools. An attacker who can control arguments passed to InetUtils binaries may inject additional command-line options, potentially enabling unauthorized network access, privilege escalation, or lateral movement. This vulnerability is listed on the CISA Known Exploited Vulnerabilities catalog, indicating active exploitation in the wild.

MITRE ATT&CK

Tactic
Lateral Movement Command and Control Privilege Escalation

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
_sourceCategory=linux/auditd OR _sourceCategory=syslog OR _sourceCategory=windows/security
| where _raw matches /(?i)(telnet|ftp|rsh|rcp|rlogin|tftp)/
| parse regex field=_raw "(?P<cmd_line>(?:telnet|ftp|rsh|rcp|rlogin|tftp)\\s+[^\\n]+)" nodrop
| where cmd_line matches /(?i)(-[a-zA-Z]{1,3}=|%0[aAdD]|\\\\n|\\\\r|;\\s*(bash|sh|nc|curl|wget|python|perl))/
| eval risk=if(cmd_line matches /(?i)(bash|sh|nc|curl|wget)/, "critical", if(cmd_line matches /%0[aAdD]/, "high", "medium"))
| count by _sourceHost, cmd_line, risk
| order by risk, _count desc
high severity medium confidence

Sumo Logic query identifying GNU InetUtils argument injection attempts by parsing command-line strings from Linux audit, syslog, and Windows security event sources for known injection patterns.

Data Sources

Linux AuditdSyslogWindows Security Events

Required Tables

_sourceCategory=linux/auditd_sourceCategory=syslog

False Positives & Tuning

  • Automated network health checks using InetUtils with non-standard flags
  • Legacy shell scripts that pass concatenated arguments to ftp or rcp
  • Vulnerability scanners exercising InetUtils argument parsing on test systems

Other platforms for CVE-2026-24061


Testing Methodology

Validate this detection against 3 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 1InetUtils telnet argument injection via newline encoding

    Expected signal: Auditd EXECVE record showing argv[1] containing a newline character followed by '-l root'; process event logs capturing the raw command-line string with embedded newline.

  2. Test 2InetUtils ftp option-value injection via concatenated argument

    Expected signal: Process execution event showing ftp launched with argument '-o-p', captured by auditd EXECVE or EDR process telemetry.

  3. Test 3InetUtils rsh argument injection leading to shell spawning

    Expected signal: Process launch event for rsh with semicolon-delimited command in arguments; potential child process event for shell spawned to execute 'id'; file creation event for /tmp/argus_injection_test.txt.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections