CVE-2021-22054 CrowdStrike LogScale · LogScale

Detect Omnissa Workspace ONE UEM Server-Side Request Forgery (CVE-2021-22054) in CrowdStrike LogScale

Detects exploitation of CVE-2021-22054, a Server-Side Request Forgery (SSRF) vulnerability in Omnissa (formerly VMware) Workspace ONE UEM. An unauthenticated attacker can send crafted HTTP requests to the UEM server, causing it to make arbitrary outbound HTTP/HTTPS requests to internal or external resources. This can be leveraged to scan internal networks, access cloud metadata services (e.g., AWS IMDS), or pivot to internal services not directly reachable by the attacker. The vulnerability is listed in CISA's Known Exploited Vulnerabilities catalog.

MITRE ATT&CK

Tactic
Reconnaissance Discovery Lateral Movement

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=NetworkConnectIP4 OR #event_simpleName=NetworkConnectIP6 OR #event_simpleName=ProcessRollup2
| ImageFileName = /(?i)(airwatch|awapi|uem|workspaceone)/
| RemoteAddressIP4 IN ("169.254.169.254", "127.0.0.1")
  OR RemoteAddressIP6 = "::1"
  OR RemotePort IN (80, 443, 8080, 8443)
    AND (HttpUri = /(?i)(169\.254\.169\.254|metadata\.google\.internal|100\.100\.100\.200|localhost|127\.0\.0\.1)/
         OR HttpUri = /(?i)\/DeviceManagement\/.*(url=|redirect=|target=)/)
| groupby([aid, ComputerName, ImageFileName, RemoteAddressIP4, RemotePort, HttpUri])
| rename aid as AgentId, ComputerName as Hostname
| eval CVE = "CVE-2021-22054"
| eval AlertSeverity = "high"
| sort -count()
high severity medium confidence

CrowdStrike Falcon CQL detecting network connections from Workspace ONE UEM-related processes to internal metadata IPs or loopback addresses, and HTTP requests with SSRF-indicative URI patterns.

Data Sources

CrowdStrike Falcon EDR network eventsCrowdStrike process telemetry

Required Tables

NetworkConnectIP4NetworkConnectIP6ProcessRollup2

False Positives & Tuning

  • Legitimate UEM agent self-checks or local API calls generating loopback connections
  • Authorized penetration testing tools running on Workspace ONE hosts
  • Cloud-native UEM deployments querying IMDS for legitimate instance configuration
  • Container-based UEM deployments where sidecar services communicate over loopback

Other platforms for CVE-2021-22054


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 1SSRF via Workspace ONE UEM Unauthenticated Endpoint to IMDS

    Expected signal: IIS access log entry for /DeviceManagement/enrollment with url= parameter containing 169.254.169.254; outbound network connection from UEM server to 169.254.169.254:80

  2. Test 2SSRF Internal Network Port Scan via Workspace ONE UEM

    Expected signal: Multiple IIS log entries within seconds for /AirWatch/ paths with url= parameters containing RFC1918 addresses on varying ports; timing differences in responses reveal open vs closed ports

  3. Test 3SSRF to Internal Administrative Interface via Redirect Parameter

    Expected signal: IIS log entry with redirect= parameter pointing to internal host; potential Windows Defender firewall log showing outbound connection from UEM process to internal admin host; Sysmon Event ID 3 network connection from IIS worker process (w3wp.exe) to internal IP

  4. Test 4SSRF File URI Scheme Attempt for Local File Read

    Expected signal: IIS log entry with file:// URI in URL parameter; absence of outbound network connection (file read is local); potential application error log entries if file:// is rejected by URL validation

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections