Detect GNU InetUtils Argument Injection Vulnerability (CVE-2026-24061) in CrowdStrike LogScale
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
LogScale Detection Query
#event_simpleName=ProcessRollup2
| ImageFileName = /(?i)(telnet|ftp|rsh|rcp|rlogin|tftp)$/
| CommandLine = /(?i)(-[a-zA-Z]{1,3}=|%0[aAdD]|\\n|\\r|;\s*(bash|sh|nc|curl|wget|python|perl))/
| eval InjectionType=case(
CommandLine =~ /(?i)(bash|sh|nc)/, "shell_spawn",
CommandLine =~ /(?i)(curl|wget)/, "http_exfil",
CommandLine =~ /%0[aAdD]/, "newline_injection",
CommandLine =~ /-[a-zA-Z]{1,3}=/, "option_injection",
true(), "unknown"
)
| table _time, ComputerName, UserName, ImageFileName, CommandLine, InjectionType, ParentProcessId
| sort _time desc CrowdStrike Falcon CQL query using process rollup events to detect GNU InetUtils binary execution with argument injection patterns consistent with CVE-2026-24061 exploitation.
Data Sources
Required Tables
False Positives & Tuning
- Legitimate administrative use of InetUtils with complex flags in managed environments
- Red team exercises involving InetUtils argument handling tests
- Automated network provisioning tools passing structured arguments to FTP or Telnet
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.
- 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.
- 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.
- 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.