CVE-2026-6973 Microsoft Sentinel · KQL

Detect CVE-2026-6973: Ivanti EPMM Improper Input Validation Exploitation in Microsoft Sentinel

Detects exploitation attempts targeting CVE-2026-6973, an improper input validation vulnerability in Ivanti Endpoint Manager Mobile (EPMM). This vulnerability is actively exploited in the wild (CISA KEV) and may allow attackers to bypass authentication or execute unauthorized actions against the EPMM management interface.

MITRE ATT&CK

Tactic
Initial Access Persistence Privilege Escalation

KQL Detection Query

Microsoft Sentinel (KQL)
kusto
union isfuzzy=true
(
  CommonSecurityLog
  | where DeviceVendor == "Ivanti" or DeviceProduct has_any ("EPMM", "MobileIron")
  | where RequestURL has_any ("/mifs/", "/api/v1/", "/api/v2/", "/admin/")
  | where Activity has_any ("400", "422", "500") or AdditionalExtensions has "malformed"
  | project TimeGenerated, DeviceVendor, DeviceProduct, SourceIP, DestinationIP, RequestURL, Activity, AdditionalExtensions
),
(
  W3CIISLog
  | where csUriStem has_any ("/mifs/", "/api/v1/", "/api/v2/")
  | where scStatus in ("400", "422", "500") or csUriQuery matches regex @"[\x00-\x1f%00-%1f]"
  | project TimeGenerated, cIP, csUriStem, csUriQuery, scStatus, csUserAgent
),
(
  AzureDiagnostics
  | where ResourceType == "APPLICATIONGATEWAYS"
  | where requestUri_s has_any ("/mifs/", "/api/v1/", "/api/v2/")
  | where httpStatus_d in (400, 422, 500)
  | project TimeGenerated, clientIP_s, requestUri_s, httpStatus_d, userAgent_s
)
| extend AccountCustomEntity = iff(isnotempty(SourceIP), SourceIP, cIP)
| extend IPCustomEntity = iff(isnotempty(SourceIP), SourceIP, cIP)
critical severity medium confidence

Detects anomalous or malformed HTTP requests targeting Ivanti EPMM API and admin endpoints, which may indicate exploitation of CVE-2026-6973 improper input validation. Looks for error responses and suspicious request patterns across IIS logs, common security logs, and Azure Application Gateway diagnostics.

Data Sources

CommonSecurityLogW3CIISLogAzureDiagnostics

Required Tables

CommonSecurityLogW3CIISLogAzureDiagnostics

False Positives & Tuning

  • Legitimate automated scanners or vulnerability assessment tools probing the EPMM interface
  • Misconfigured MDM clients sending malformed enrollment requests resulting in 400/422 errors
  • Load balancer health checks generating unexpected HTTP response codes
  • Administrative API calls with unusual but valid payloads during migration or upgrade activities

Other platforms for CVE-2026-6973


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 1CVE-2026-6973 EPMM Input Validation Probe — Null Byte Injection

    Expected signal: HTTP 400 or 422 responses from EPMM server for null-byte payloads; web server access log entries with %00 in the URL; WAF alert if WAF is present

  2. Test 2CVE-2026-6973 EPMM API Endpoint Fuzzing — Oversized Input

    Expected signal: HTTP 400 or 500 response; web server log entry with large Content-Length header; potential application error log entry on EPMM server

  3. Test 3CVE-2026-6973 EPMM Admin API Unauthorized Access Attempt — CRLF Injection

    Expected signal: HTTP 400/422 responses; EPMM access log entries with CRLF sequences in headers; potential WAF alert on header injection attempt

  4. Test 4CVE-2026-6973 Post-Exploitation — EPMM Unauthorized Admin Enumeration

    Expected signal: Successful HTTP 200 responses to admin API endpoints (if token is valid); authentication/authorization log entries in EPMM audit log; network flow records showing enumeration pattern

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections