Detect Omnissa Workspace ONE UEM Server-Side Request Forgery (CVE-2021-22054) in Sumo Logic CSE
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
Sumo Detection Query
_sourceCategory=web/iis OR _sourceCategory=network/proxy OR _sourceCategory=vmware/uem
| where (%"cs-uri-stem" matches "/DeviceManagement/*" or %"cs-uri-stem" matches "/AirWatch/*" or %"cs-uri-stem" matches "/API/mdm/*")
or %"url" matches "*169.254.169.254*"
or %"url" matches "*metadata.google.internal*"
or %"url" matches "*127.0.0.1*"
or %"url" matches "*localhost*"
| parse regex field=url "(?<ssrf_target>169\.254\.169\.254|metadata\.google\.internal|127\.0\.0\.1|localhost|::1)" nodrop
| where !isNull(ssrf_target) or (%"sc-status" in ("200","301","302") and (%"cs-uri-query" matches "*url=*" or %"cs-uri-query" matches "*redirect=*"))
| count as attempt_count by _sourceHost, ssrf_target, %"c-ip", %"cs-uri-stem"
| where attempt_count > 0
| sort by attempt_count desc Sumo Logic query detecting SSRF exploitation attempts against Workspace ONE UEM by identifying requests to UEM API paths containing server-side request targets pointing to internal or metadata IP ranges.
Data Sources
Required Tables
False Positives & Tuning
- Automated UEM policy sync operations that include internal callback URLs
- Third-party MDM connector health checks using internal addresses
- Authorized security assessments generating SSRF payloads against the UEM endpoint
- Reverse proxy configurations that rewrite URLs to appear as internal addresses
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.
- 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
- 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
- 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
- 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.