Reference material — not professional advice. Test in staging, back up first, verify against your specific version. Use your own judgment for your environment.
● Medium · CVSS 6.7 ⚠ ACTIVELY EXPLOITED — CISA KEV

How to Fix CVE-2026-34926: Relative Path Traversal in TrendAI Apex One

By Sai Kiran Pandrala

⚡ At a glance
SeverityCVSS 6.7 - Medium
Actively exploited?Yes, listed in CISA KEV (added 2026-05-21)
AffectedTrendAI Apex One 2019 (14.0) up to (excluding) 14.0.0.17079; TrendAI Apex One as a Service SaaS up to (excluding) 14.0.20731
Fixed in14.0.0.17079, 14.0.20731
Type (CWE)CWE-23: Relative Path Traversal

Patch immediately. CISA added CVE-2026-34926 to the Known Exploited Vulnerabilities catalog on 2026-05-21. Federal civilian agencies must remediate by 2026-06-04. Treat every internet-reachable instance as a priority patch.

What is CVE-2026-34926?

CVE-2026-34926 is a Relative Path Traversal flaw in Trend Micro, Inc. TrendAI Apex One. It carries a CVSS base score of 6.7 (medium). CISA confirmed real-world exploitation by adding it to the Known Exploited Vulnerabilities catalog on 2026-05-21.

From the source record: A directory traversal vulnerability in the Apex One (on-premise) server could allow a pre-authenticated local attacker to modify a key table on the server to inject malicious code to deploy to agents on affected installations.

This vulnerability is only exploitable on the on-premise version of Apex One and a potential attacker must have access to the Apex One Server and already obtained administrative credentials to the server via some other method to exploit this vulnerability.

Why it matters in practice: KEV-listed CVEs draw continuous internet-wide scanning. Any unpatched, internet-reachable installation is on borrowed time. The blast radius depends on how the affected service is exposed. An internet-facing instance with no compensating controls is the highest-risk configuration.

Am I affected?

You are affected if your installation of TrendAI Apex One matches a version listed in the Affected row above.

Check the installed version of TrendAI Apex One against the Affected row above. If the version sits at or below the affected range and the vendor patch has not been applied, you are vulnerable.

How to fix CVE-2026-34926

Apply the vendor patch. Target a build at or above: 14.0.0.17079, 14.0.20731. The runnable command set below covers the most common deployment patterns for TrendAI Apex One.

Generic upgrade path


# Debian / Ubuntu
sudo apt-get update && sudo apt-get install --only-upgrade trendai
# RHEL / Rocky / Alma
sudo dnf upgrade --security -y
# Windows
# PowerShell:
#   winget upgrade --all --silent --accept-package-agreements --accept-source-agreements
# macOS
sudo softwareupdate -i -a -R

After applying the patch

  1. Restart the service or device so the patched binary loads.
  2. Confirm the running version matches the Fixed in row using the verification command below.
  3. Rotate credentials and API keys that the affected service could access if the asset was exposed during the disclosure window.

If you can't patch immediately

Until the patch lands, narrow the attack surface with these runnable controls.

Reduce the attack surface

Restrict network reach to the affected service to the smallest set of hosts that must access it. On Linux:


# Vendor advisory: https://success.trendmicro.com/en-US/solution/KA-0023430
sudo iptables -A INPUT -p tcp --dport <service-port> -s 10.10.10.0/24 -j ACCEPT
sudo iptables -A INPUT -p tcp --dport <service-port> -j DROP

On Windows:


# Vendor advisory: https://success.trendmicro.com/en-US/solution/KA-0023430
New-NetFirewallRule -DisplayName "Block CVE-2026-34926 inbound" -Direction Inbound -Action Block -Protocol TCP -LocalPort <service-port>

Mitigations are temporary. Apply the vendor patch as soon as a maintenance window opens.

How to verify the fix worked

Confirm the patched build is the one actually running.

Run the product's --version or about command and compare against the Fixed in row (14.0.0.17079, 14.0.20731). Re-run an authenticated vulnerability scan and confirm the scanner no longer flags CVE-2026-34926.

Also worth doing: pull recent log windows for any indicators of compromise listed in the vendor advisory, and re-run an authenticated vulnerability scan with up-to-date signatures.

Frequently asked questions

Other vulnerabilities in the same area that are worth patching alongside this one:

Is CVE-2026-34926 being exploited in the wild?

Yes. CISA added CVE-2026-34926 to the Known Exploited Vulnerabilities catalog on 2026-05-21. KEV listing means at least one confirmed real-world exploitation report exists.

Do I have to take downtime to patch?

For most Trend Micro, Inc. TrendAI Apex One deployments, the patched build needs a service restart or device reboot. HA pairs and clusters can roll the upgrade by patching the standby first, failing over, then patching the former primary.

Will a WAF or IDS rule alone close CVE-2026-34926?

No. Network filters cut down opportunistic scans but they do not remove the flaw. The vendor patch is the only durable fix.

How quickly should I act on CVE-2026-34926?

Within the standard patch cycle if the asset is internal-only. Inside one to two weeks for any internet-facing instance, sooner if compensating controls are not in place.

References


*Assembled from the official vendor advisory, the NVD record, and the CISA KEV listing on 2026-05-25. Always confirm against the vendor advisory before applying changes in production.*