CVE-2026-1281 IBM QRadar · QRadar

Detect CVE-2026-1281 — Ivanti EPMM Code Injection Exploitation in IBM QRadar

Detects exploitation of CVE-2026-1281, a code injection vulnerability (CWE-94) in Ivanti Endpoint Manager Mobile (EPMM). This KEV-listed vulnerability allows remote attackers to inject and execute arbitrary code via the EPMM management interface. Detection focuses on anomalous process execution, suspicious web shell activity, and unexpected outbound connections from EPMM server infrastructure.

MITRE ATT&CK

Tactic
Initial Access Execution Persistence

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT DATEFORMAT(starttime, 'YYYY-MM-dd HH:mm:ss') as event_time,
       sourceip, destinationip, username,
       "processname", "parentprocessname", "commandline",
       logsourcename(logsourceid) as log_source
FROM events
WHERE LOGSOURCETYPENAME(devicetype) IN ('Linux OS', 'Microsoft Windows Security Event Log', 'CrowdStrike Falcon')
  AND (LOWER("parentprocessname") ILIKE '%java%'
    OR LOWER("parentprocessname") ILIKE '%tomcat%'
    OR LOWER("parentprocessname") ILIKE '%mi-dm%'
    OR LOWER("parentprocessname") ILIKE '%mics%')
  AND (LOWER("processname") ILIKE '%bash%'
    OR LOWER("processname") ILIKE '%sh%'
    OR LOWER("processname") ILIKE '%curl%'
    OR LOWER("processname") ILIKE '%wget%'
    OR LOWER("processname") ILIKE '%python%'
    OR LOWER("processname") ILIKE '%perl%')
ORDER BY starttime DESC
LAST 7 DAYS
critical severity medium confidence

QRadar AQL query identifying EPMM-related parent processes spawning interpreter or download utilities, consistent with CVE-2026-1281 code injection payloads.

Data Sources

QRadar SIEMLinux OS DSMWindows Security Event Log DSMCrowdStrike Falcon DSM

Required Tables

events

False Positives & Tuning

  • Authorized administrator running diagnostics via the EPMM console that invokes shell commands
  • EPMM plugin or extension legitimately invoking Python scripts for automation
  • Third-party MDM integrations that spawn curl for webhook notifications

Other platforms for CVE-2026-1281


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 1Simulate EPMM Code Injection via Curl to Local Test Endpoint

    Expected signal: Network logs showing POST request to EPMM endpoint; if exploitable, process execution logs for id/whoami/uname commands spawned by Java process.

  2. Test 2Emulate Post-Exploitation Child Process Spawn from Java Parent

    Expected signal: Process creation events showing bash/sh spawned from a process named java_epmm_sim; command line includes id, whoami, hostname.

  3. Test 3Simulate Web Shell Drop and Execution via EPMM Webapps Directory

    Expected signal: File creation event in Tomcat webapps directory for a .jsp file; auditd SYSCALL write/open record pointing to webapps path.

  4. Test 4Simulate Outbound C2 Beacon from EPMM Server Context

    Expected signal: Network connection event from EPMM host to external IP on port 4444; process initiating the connection is curl with parent process in EPMM service context.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections