CVE-2026-34910 IBM QRadar · QRadar

Detect Ubiquiti UniFi OS Improper Input Validation Vulnerability (CVE-2026-34910) in IBM QRadar

Detects exploitation attempts targeting CVE-2026-34910, an improper input validation vulnerability in Ubiquiti UniFi OS. This vulnerability is listed on CISA's Known Exploited Vulnerabilities catalog and allows attackers to send malformed or unexpected input to UniFi OS network management interfaces, potentially leading to unauthorized access, command execution, or device compromise. UniFi OS powers a wide range of Ubiquiti network devices including Dream Machines, Cloud Keys, and network switches used in enterprise and SMB environments.

MITRE ATT&CK

Tactic
Initial Access Execution Lateral Movement

QRadar Detection Query

IBM QRadar (QRadar)
sql
SELECT sourceip, destinationip, destinationport, URL, "HTTP Method", "HTTP Response Code", LOGSOURCENAME(logsourceid) AS log_source, COUNT(*) AS attempt_count
FROM events
WHERE LOGSOURCETYPENAME(devicetype) IN ('Palo Alto PA Series', 'Juniper SRX', 'Check Point FireWall-1', 'Snort', 'Suricata')
AND destinationport IN (443, 8443, 8080, 80)
AND (
  URL ILIKE '%../%'
  OR URL ILIKE '%..%2f%'
  OR URL ILIKE '%..%2F%'
  OR URL ILIKE '%cmd=%'
  OR URL ILIKE '%command=%'
  OR URL ILIKE '%union%select%'
  OR URL ILIKE '%exec(%'
  OR URL ILIKE '%eval(%'
  OR URL ILIKE '%wget %'
  OR URL ILIKE '%curl %'
  OR URL ILIKE '%%00%'
)
AND LOGSOURCENAME(logsourceid) ILIKE '%unifi%'
OR (
  destinationip IN (SELECT destinationip FROM events WHERE LOGSOURCENAME(logsourceid) ILIKE '%ubiquiti%' LAST 7 DAYS)
)
GROUP BY sourceip, destinationip, destinationport, URL, "HTTP Method", "HTTP Response Code", log_source
HAVING attempt_count > 3
ORDER BY attempt_count DESC
LAST 24 HOURS
critical severity medium confidence

QRadar AQL query to detect suspicious HTTP requests against Ubiquiti UniFi OS devices by correlating input validation bypass patterns against known UniFi management ports and device identifiers.

Data Sources

QRadar Network ActivityFirewall LogsIDS Events

Required Tables

events

False Positives & Tuning

  • Authorized penetration tests logged by SIEM during scheduled assessment windows
  • Security information management tools aggregating device API data with complex query strings
  • Network performance monitoring solutions that probe device interfaces with parameter-heavy requests
  • Backup and configuration management tools accessing UniFi APIs with encoded credentials

Other platforms for CVE-2026-34910


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 1CVE-2026-34910 Path Traversal Probe Against UniFi OS API

    Expected signal: HTTP requests with path traversal sequences ('../', '%2f') in URL paths to port 443 should appear in web proxy logs, firewall logs, and IDS/IPS alerts

  2. Test 2CVE-2026-34910 Command Injection Parameter Fuzzing

    Expected signal: HTTP GET requests containing command injection strings (cmd=, command=, exec(), eval()) in query parameters to port 8443 visible in network logs

  3. Test 3CVE-2026-34910 Authenticated API Manipulation with Malformed Input

    Expected signal: POST/PUT requests with SQL injection and command injection strings in JSON body fields to UniFi OS API endpoints; authentication attempts with malformed username fields

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections