CVE-2025-59374 Google Chronicle · YARA-L

Detect ASUS Live Update Embedded Malicious Code (CVE-2025-59374) in Google Chronicle

Detects indicators of compromise related to CVE-2025-59374, a supply chain attack where ASUS Live Update software contained embedded malicious code (CWE-506). This mirrors the ShadowHammer operation pattern where threat actors compromised the ASUS software update infrastructure to deliver backdoored updates to endpoints. Detection focuses on suspicious child processes spawned by ASUS Live Update, anomalous network connections, and staging activity consistent with backdoor execution.

MITRE ATT&CK

Tactic
Initial Access Execution Persistence Lateral Movement Command and Control

YARA-L Detection Query

Google Chronicle (YARA-L)
yaral
rule asus_live_update_malicious_child_process {
  meta:
    author = "df00tech Detection Engineering"
    description = "Detects ASUS Live Update spawning suspicious child processes - CVE-2025-59374"
    severity = "CRITICAL"
    priority = "HIGH"

  events:
    $proc.metadata.event_type = "PROCESS_LAUNCH"
    $proc.principal.process.file.full_path = /(?i)(LiveUpdate|LivaUpdate|AsusLiveUpdate)\.exe/
    $proc.target.process.file.full_path = /(?i)(cmd|powershell|wscript|cscript|mshta|rundll32|regsvr32|certutil|bitsadmin|wmic|schtasks|sc)\.exe/

  condition:
    $proc
}
critical severity high confidence

Chronicle YARA-L rule detecting ASUS Live Update processes spawning LOLBINs or suspicious interpreters, a key indicator of CVE-2025-59374 supply chain backdoor execution.

Data Sources

Google ChronicleUDM Process Events

Required Tables

udm_events

False Positives & Tuning

  • Legitimate ASUS software update child process launches during patch cycles
  • Enterprise deployment tools using ASUS update wrappers
  • Security product hooks on ASUS update process that trigger system binary calls

Other platforms for CVE-2025-59374


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 ASUS Live Update Spawning CMD Child Process

    Expected signal: Sysmon Event ID 1 showing LiveUpdate.exe as parent of cmd.exe; DeviceProcessEvents in MDE showing the parent-child relationship with command-line arguments

  2. Test 2Simulate ASUS Live Update Network Beacon

    Expected signal: Sysmon Event ID 3 or DeviceNetworkEvents showing LiveUpdate.exe initiating outbound HTTP connection to external IP; DNS query logs for associated domain lookups

  3. Test 3Simulate ASUS Live Update Dropping Payload to Temp

    Expected signal: Sysmon Event ID 11 (FileCreate) showing executable written to TEMP directory; DeviceFileEvents in MDE capturing the file drop with SHA256 hash

Last updated: 2026-06-19 Research depth: standard
References (2)

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections