CVE-2026-34910 is a command injection vulnerability in UniFi OS with a CVSS 10.0 severity rating. The vulnerability stems from improper input validation that allows untrusted input to reach shell execution contexts within the UniFi controller. This is being actively exploited and is listed in CISA's Known Exploited Vulnerabilities catalog.

What you should do right now:

First, determine your exposure. This vulnerability affects the UniFi controller — if your controller is internet-facing or accessible via untrusted networks, you face immediate risk. Even behind authentication, this vulnerability is severe because it allows any authenticated user (including compromised credentials) to execute arbitrary commands on the host system. Do not treat authentication as a sufficient mitigating control.

Second, patch immediately. Ubiquiti has released a fix. If you cannot patch immediately, restrict network access to the UniFi controller to a minimal set of trusted IP addresses and disable any API access that isn't strictly necessary. Treat the controller as a high-value asset with network-level isolation.

Third, audit for compromise. Because this vulnerability is being actively exploited, check for unexpected processes, new user accounts, or suspicious scheduled tasks on your UniFi OS hosts. Review authentication logs for the controller for commands or inputs that look like injection payloads.

The broader architectural concern: command injection in 2026 indicates that untrusted input is reaching shell execution contexts in this codebase. This is a well-understood vulnerability class with straightforward mitigations (parameterized commands, input allowlists, avoiding shell invocation entirely). Finding one at CVSS 10 in a mature enterprise product suggests input validation is handled locally by developers rather than enforced through automated tooling. Other injection vulnerabilities of this type may exist in the codebase — treat this patch as a signal to audit other command execution paths in your Ubiquiti deployment for similar patterns.