CVE-2026-34908 CrowdStrike LogScale · LogScale

Detect CVE-2026-34908 — Ubiquiti UniFi OS Improper Access Control Exploitation in CrowdStrike LogScale

Detects exploitation attempts targeting CVE-2026-34908, an improper access control vulnerability (CWE-284) in Ubiquiti UniFi OS. This vulnerability is listed on the CISA Known Exploited Vulnerabilities catalog and allows attackers to bypass access controls on UniFi OS devices. Detection focuses on unauthorized API access, anomalous management plane requests, and lateral movement patterns consistent with UniFi controller compromise.

MITRE ATT&CK

Tactic
Initial Access Privilege Escalation Defense Evasion Lateral Movement

LogScale Detection Query

CrowdStrike LogScale (LogScale)
cql
#event_simpleName=NetworkConnectIP4 OR #event_simpleName=NetworkReceiveAcceptIP4
| $TargetPort in (443, 8443, 80, 8080)
| $RemoteAddressIP4 != "127.0.0.1"
| $LocalAddressIP4 != "127.0.0.1"
| groupby([aid, ComputerName, UserName, RemoteAddressIP4, LocalAddressIP4], function=[count(aid, as=ConnectionCount), min(timestamp, as=FirstSeen), max(timestamp, as=LastSeen)])
| $ConnectionCount >= 3
| join(type=inner, field=ComputerName,
    [#event_simpleName=ProcessRollup2
     | $ImageFileName matches "*unifi*"
     | groupby([ComputerName, UserName, ImageFileName, CommandLine], function=count(aid))
    ]
  )
| eval CVE = "CVE-2026-34908"
| eval Vendor = "Ubiquiti"
| eval Product = "UniFi OS"
| sort(ConnectionCount, order=desc, limit=200)
| select([FirstSeen, LastSeen, ComputerName, UserName, RemoteAddressIP4, LocalAddressIP4, ConnectionCount, ImageFileName, CommandLine, CVE, Vendor, Product])
high severity low confidence

CrowdStrike CQL detection joining network connection events with process activity to identify hosts running UniFi software exhibiting unusual inbound connection volumes. Surfaces potential attacker-controlled UniFi OS instances or compromised controllers receiving exploit traffic.

Data Sources

CrowdStrike Falcon Network EventsCrowdStrike Process EventsEDR Telemetry

Required Tables

NetworkConnectIP4NetworkReceiveAcceptIP4ProcessRollup2

False Positives & Tuning

  • UniFi controller software running on endpoint hosts receiving high legitimate management traffic
  • Developers or IT staff running UniFi OS locally for testing receiving multiple connection attempts
  • Cloud key or gateway devices enrolled in Falcon with active UniFi management sessions
  • Automated testing infrastructure exercising UniFi APIs as part of QA pipelines

Other platforms for CVE-2026-34908


Testing Methodology

Validate this detection against 3 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 1Unauthenticated UniFi OS Admin API Enumeration

    Expected signal: Network logs showing HTTP GET requests to multiple /api/ paths on the target UniFi controller IP, returning HTTP status codes that vary by endpoint accessibility.

  2. Test 2Unauthorized UniFi OS Command Endpoint Access

    Expected signal: Network logs showing a POST request to /api/s/default/cmd/stamgr on the target IP with a JSON body. A 200 response with an action response body indicates the access control bypass is exploitable.

  3. Test 3UniFi OS New Admin User Creation via API Bypass

    Expected signal: Network logs showing a POST to /api/s/default/rest/admin with a 200 or 201 response. UniFi controller audit log should record a new admin creation event without a corresponding login event from the source IP.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections