CVE-2025-66644 Google Chronicle · YARA-L

Detect Array Networks ArrayOS AG OS Command Injection (CVE-2025-66644) in Google Chronicle

Detects exploitation of CVE-2025-66644, an OS command injection vulnerability in Array Networks ArrayOS AG. This vulnerability allows remote attackers to execute arbitrary operating system commands through the Array Networks SSL VPN/ZTNA gateway. The flaw is tracked by CISA as a Known Exploited Vulnerability (KEV), indicating active in-the-wild exploitation. Attackers may leverage this to gain initial access, establish persistence, or pivot laterally within the network.

MITRE ATT&CK

Tactic
Initial Access Execution Lateral Movement

YARA-L Detection Query

Google Chronicle (YARA-L)
yaral
rule cve_2025_66644_array_networks_cmd_injection {
  meta:
    author = "df00tech Detection Engineering"
    description = "Detects CVE-2025-66644 OS command injection exploitation against Array Networks ArrayOS AG"
    severity = "CRITICAL"
    priority = "HIGH"
    reference = "https://nvd.nist.gov/vuln/detail/CVE-2025-66644"

  events:
    (
      $e.metadata.event_type = "NETWORK_CONNECTION"
      or $e.metadata.event_type = "STATUS_UPDATE"
    )
    and (
      $e.principal.application = "ArrayOS AG"
      or $e.target.application = "ArrayOS AG"
      or re.regex($e.principal.hostname, `(?i)array`)
      or re.regex($e.target.hostname, `(?i)array`)
    )
    and re.regex($e.metadata.description,
      `(?i)(wget|curl|chmod|/bin/bash|/bin/sh|/tmp/|/dev/shm|whoami|base64|python|perl|\bnc\b|ncat|&&|\|\|)`
    )

  condition:
    $e
}
critical severity medium confidence

Chronicle YARA-L rule detecting CVE-2025-66644 exploitation patterns in network events and status updates associated with Array Networks ArrayOS AG devices.

Data Sources

Chronicle SIEMNetwork telemetryUDM events

Required Tables

UDM events (NETWORK_CONNECTION, STATUS_UPDATE)

False Positives & Tuning

  • Legitimate administrative operations on Array Networks appliances that reference shell utilities
  • Automated network monitoring tools generating similar connection patterns
  • Authorized penetration testing activities targeting the VPN gateway
  • Software update pipelines invoking system utilities on the appliance

Other platforms for CVE-2025-66644


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 1Simulate Array Networks OS Command Injection via HTTP Request

    Expected signal: Web access log entry on the target appliance showing POST request to /cgi-bin/login with URL-encoded shell metacharacters (';id;') in the username parameter

  2. Test 2Spawn Reverse Shell from Simulated Compromised Array Gateway Process

    Expected signal: Endpoint process telemetry showing bash process with parent matching gateway daemon, network telemetry showing outbound TCP connection to ATTACKER_IP:4444 from the gateway host

  3. Test 3Download and Execute Payload via Injected wget Command

    Expected signal: Process telemetry showing wget execution with external URL argument spawned from a gateway-related parent process; DNS query for ATTACKER_IP hostname; outbound HTTP connection to ATTACKER_IP:8080

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections