CVE-2025-59374 IBM QRadar · QRadar

Detect ASUS Live Update Embedded Malicious Code (CVE-2025-59374) in IBM QRadar

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

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT DATEFORMAT(devicetime, 'yyyy-MM-dd HH:mm:ss') AS event_time,
       sourceip, destinationip, destinationport,
       "Process Name" AS process_name,
       "Parent Process Name" AS parent_process_name,
       username, QIDNAME(qid) AS event_name,
       "Command" AS command_line
FROM events
WHERE LOGSOURCETYPENAME(logsourceid) IN ('Microsoft Windows Security Event Log', 'Sysmon')
  AND (
    (LOWER("Parent Process Name") LIKE '%liveupdate%' OR LOWER("Parent Process Name") LIKE '%asusliveupdate%')
    AND LOWER("Process Name") IN ('cmd.exe', 'powershell.exe', 'wscript.exe', 'cscript.exe', 'mshta.exe',
                                   'rundll32.exe', 'regsvr32.exe', 'certutil.exe', 'bitsadmin.exe',
                                   'wmic.exe', 'schtasks.exe', 'sc.exe')
  )
LAST 7 DAYS
ORDER BY event_time DESC
critical severity medium confidence

QRadar AQL query identifying ASUS Live Update parent processes spawning known living-off-the-land binaries associated with CVE-2025-59374 malicious code execution.

Data Sources

QRadarWindows Event LogSysmon

Required Tables

events

False Positives & Tuning

  • Legitimate ASUS Live Update child processes during scheduled update cycles
  • IT automation that wraps ASUS update execution in scripted workflows
  • Security scanner processes triggered by ASUS update execution

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