CVE-2026-22719 IBM QRadar · QRadar

Detect CVE-2026-22719: VMware Aria Operations Command Injection in IBM QRadar

Detects exploitation of CVE-2026-22719, a command injection vulnerability (CWE-77) in Broadcom VMware Aria Operations. This KEV-listed vulnerability allows attackers to inject and execute arbitrary OS commands through unsanitized input, potentially leading to full host compromise, lateral movement, and persistence within virtualized environments.

MITRE ATT&CK

Tactic
Initial Access Execution Persistence Lateral Movement

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') AS event_time,
       sourceip, destinationip, username,
       "Process Name" AS process_name,
       "Parent Process Name" AS parent_process,
       "Command" AS command_line
FROM events
WHERE LOGSOURCETYPENAME(logsourceid) IN ('Linux OS', 'VMware vRealize Operations Manager', 'Universal DSM')
  AND (LOWER("Parent Process Name") IMATCHES '.*(?:vrops|vcops|vmware-vcops|casa|aria).*')
  AND (LOWER("Process Name") IMATCHES '.*(bash|sh|python|perl|curl|wget|ncat|netcat|whoami|id|uname).*')
  AND starttime > NOW() - 3600000
ORDER BY starttime DESC
LIMIT 500
critical severity medium confidence

AQL query correlating VMware Aria Operations parent processes with suspicious child process execution on Linux systems to identify command injection exploitation.

Data Sources

QRadar Linux OS DSMVMware vRealize Operations DSMUniversal DSM

Required Tables

events

False Positives & Tuning

  • Scheduled tasks configured within Aria Operations that legitimately invoke shell utilities
  • Integration with external systems via scripts run under the Aria Operations service account
  • VMware-signed diagnostic utilities launched during support-assisted troubleshooting

Other platforms for CVE-2026-22719


Testing Methodology

Validate this detection against 4 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 1Simulated Aria Operations Command Injection via curl

    Expected signal: Linux audit log EXECVE record for 'id' with ppid matching an Aria Operations web service process; file creation event in /tmp/ by the service account.

  2. Test 2Post-Exploitation Reverse Shell Staging from Aria Operations Context

    Expected signal: Audit log EXECVE for bash and curl with parent 'sudo'; network connection from host to attacker-lab.internal on port 80; file creation event for /tmp/.aria_agent.

  3. Test 3Recon Execution Simulating Aria Operations Command Injection Output

    Expected signal: Linux audit EXECVE records for id, whoami, uname, cat, ss all with uid matching the vmware service account; all spawned as children of bash.

  4. Test 4Persistence via Cron Injection Simulating Post-Exploitation

    Expected signal: Audit log records for bash and crontab execution under vmware service account; file write to vmware user crontab spool (/var/spool/cron/crontabs/vmware).

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections