CVE-2026-24061 Google Chronicle · YARA-L

Detect GNU InetUtils Argument Injection Vulnerability (CVE-2026-24061) in Google Chronicle

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

YARA-L Detection Query

Google Chronicle (YARA-L)
yaral
rule cve_2026_24061_inetutils_arg_injection {
  meta:
    author = "df00tech Detection Engineering"
    description = "Detects GNU InetUtils argument injection (CVE-2026-24061)"
    severity = "HIGH"
    priority = "HIGH"
    reference = "https://nvd.nist.gov/vuln/detail/CVE-2026-24061"

  events:
    $e.metadata.event_type = "PROCESS_LAUNCH"
    $e.principal.process.file.full_path = /(?i)(telnet|ftp|rsh|rcp|rlogin|tftp)$/
    (
      $e.principal.process.command_line = /(?i)-[a-zA-Z]{1,3}=/ or
      $e.principal.process.command_line = /(?i)%0[aAdD]/ or
      $e.principal.process.command_line = /(?i);\s*(bash|sh|nc|curl|wget|python|perl)/ or
      $e.principal.process.command_line = /\\n|\\r/
    )

  condition:
    $e
}
high severity medium confidence

Chronicle YARA-L rule detecting process launch events for GNU InetUtils binaries with argument injection indicators that may indicate CVE-2026-24061 exploitation.

Data Sources

Google Chronicle UDMEndpoint telemetry

Required Tables

UDM Events

False Positives & Tuning

  • Automated network scripts using InetUtils with complex argument construction
  • Security testing frameworks that probe InetUtils argument handling
  • Legacy administrative scripts using rsh or rcp with concatenated option strings

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