CVE-2026-34926 Sumo Logic CSE · Sumo

Detect Trend Micro Apex One Directory Traversal Exploitation (CVE-2026-34926) in Sumo Logic CSE

Detects exploitation attempts targeting CVE-2026-34926, a directory traversal vulnerability (CWE-23) in Trend Micro Apex One (On-Premise). This KEV-listed vulnerability allows unauthenticated or low-privileged attackers to traverse directory boundaries via crafted HTTP requests to the Apex One management server, potentially enabling arbitrary file read or write operations. Active exploitation has been observed in the wild.

MITRE ATT&CK

Tactic
Initial Access Defense Evasion Credential Access

Sumo Detection Query

Sumo Logic CSE (Sumo)
sql
_sourceCategory=web/iis OR _sourceCategory=web/apache OR _sourceCategory=security/apex_one
| parse regex "(?<client_ip>\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}).*?(?<method>GET|POST|PUT|DELETE|HEAD|OPTIONS)\s+(?<uri>\S+)\s+HTTP" nodrop
| where (uri matches "*..%2F*" or uri matches "*..%5C*" or uri matches "*%2e%2e%2f*" or uri matches "*%252e*") and (uri matches "*officescan*" or uri matches "*apex_one*" or uri matches "*OfficeScan*" or uri matches "*widget*" or uri matches "*ServerMigration*")
| count as attempt_count by client_ip, uri, method
| where attempt_count >= 2
| sort by attempt_count desc
| fields client_ip, uri, method, attempt_count
critical severity medium confidence

Sumo Logic query for detecting Trend Micro Apex One directory traversal exploitation via IIS and Apache access logs, filtering on known Apex One URL patterns with encoded traversal sequences.

Data Sources

IIS access logsApache access logsApex One server logs

Required Tables

web/iisweb/apachesecurity/apex_one

False Positives & Tuning

  • Vulnerability scanners (OpenVAS, Nexpose) running scheduled authenticated scans
  • Browser clients with unusual URL encoding due to locale or proxy configuration
  • Apex One internal health check mechanisms that generate diagnostic URL requests

Other platforms for CVE-2026-34926


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 1Basic Directory Traversal Probe Against Apex One CGI Endpoint

    Expected signal: IIS access log entry with traversal sequence in cs-uri-query field, HTTP response code indicating success (200) or path not found (404). Network connection event from test host to Apex One server on port 4343.

  2. Test 2Double-Encoded Traversal Bypass Attempt

    Expected signal: Multiple IIS access log entries with different traversal encoding variants. Possible WAF alert if WAF is deployed. Network events showing rapid sequential HTTP requests to Apex One from the same source IP.

  3. Test 3Windows Apex One Traversal Simulation via PowerShell

    Expected signal: Windows Security Event Log entry for PowerShell execution (Event ID 4688 or Sysmon Event ID 1). Network connection events from the Windows test host to Apex One server port 4343. IIS access log entries on Apex One server matching traversal patterns.

Unlock Pro Content

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

Response PlaybookInvestigation GuideHunting QueriesAtomic Red Team TestsTuning Guidance

Related Detections