Trend Micro Apex One CVE-2026-34926: KEV Server Build Exposure
CISA added Trend Micro Apex One CVE-2026-34926 to KEV on 2026-05-21. Trend Micro reports at least one in-the-wild attempt and fixed builds 17079, 18012, and 14.0.20731; this article provides build-export and agent-deployment audit scripts.
On this page 0% read
Executive Summary
CISA added CVE-2026-34926 to KEV on 2026-05-21 with a due date of 2026-06-04 CISA KEV. Trend Micro states that the issue affects Apex One on-premise servers and can allow a pre-authenticated local attacker with server access and administrative credentials to modify a key table and inject code deployed to agents Trend Micro.
Trend Micro also states it observed at least one attempt to exploit CVE-2026-34926 in the wild Trend Micro.
Key Facts
cve: "CVE-2026-34926"
vendor: "Trend Micro"
product: "Apex One on-premise"
kev_added: "2026-05-21"
kev_due: "2026-06-04"
vulnerability: "Apex One Server directory traversal"
cwe: ["CWE-23"]
affected_versions:
- "Apex One 2019 on-prem Server and Agent builds below 17079"
- "Apex One as a Service / Trend Vision One SEP agent builds below 14.0.20731"
fixed_versions:
- "Apex One on-prem SP1 CP Build 18012 for existing SP1 users"
- "Apex One on-prem SP1 Build 17079 for new installs"
- "Security Agent build 14.0.20731"
cvss_v31: "6.7 CVSS:3.1/AV:L/AC:H/PR:H/UI:N/S:C/C:H/I:L/A:L"
exploitation_status: "vendor_observed_at_least_one_attempt_in_the_wild"
zero_day_status: "vendor_reported_in_the_wild_attempt"
Source Confidence & Evidence Mapping
- confirmed: CISA KEV lists CVE-2026-34926 as known exploited CISA KEV.
- confirmed: Trend Micro lists affected and fixed builds, including 17079, 18012, and 14.0.20731 Trend Micro.
- confirmed: Trend Micro states it observed at least one in-the-wild attempt against CVE-2026-34926 Trend Micro.
- confirmed: NVD lists CWE-23 and the CVSS vector for CVE-2026-34926 NVD.
Impact Determination
| Classification | Criteria | Required evidence | Remediation trigger | Closure condition |
|---|---|---|---|---|
| Confirmed compromise | Apex One server or agent telemetry shows key-table modification, server-side code injection, or unexplained agent deployment on an affected build. | Server build, admin session, deployment event, affected agent set, and timestamped evidence. | Preserve Apex One server logs, package deployment artifacts, and administrative login records. | Fixed build is verified and downstream agent-deployment audit has no unexplained deployment chain. |
| Presumed exposed | Apex One on-prem server or agent build is below 17079, existing SP1 lacks CP Build 18012, or SaaS/SEP agent is below 14.0.20731. | Product-console export, endpoint inventory, or scanner row with exact build. | Keep the server and managed agents in scope until fixed-build proof exists. | Build-export verifier returns no vulnerable rows. |
| Potentially exposed | Apex One appears in inventory but build, deployment type, or server access evidence is incomplete. | CMDB, EDR, product-console, scanner, or endpoint evidence naming Apex One. | Collect exact server and agent builds. | Asset resolves to confirmed compromise, presumed exposed, not exposed, or unknown. |
| Not exposed | No Apex One server, agent, scanner row, or CVE-2026-34926 selector appears in complete exports. | Negative outputs from product-console, EDR, and scanner exports. | None for this CVE. | Evidence bundle covers Apex One servers and managed agents. |
| Unknown | Product-console or endpoint build exports are unavailable. | Gap statement naming the unavailable export. | Keep Apex One servers in scope until build evidence is recovered. | Evidence is recovered or the risk owner accepts the named gap. |
Timeline
- 2026-05-21: Trend Micro advisory content lists CVE-2026-34926 details and fixed builds Trend Micro.
- 2026-05-21: CISA adds CVE-2026-34926 to KEV with due date 2026-06-04 CISA KEV.
- 2026-05-21: NVD publication timestamp for CVE-2026-34926 NVD.
What Happened
The exploit path is local and constrained, but the blast radius is large because Apex One servers manage code deployment to agents. The highest-value evidence is server build, agent build, administrative access to the server, and package or agent deployment records around the exposure window.
Technical Analysis
Trend Micro’s advisory scopes exploitation to the on-premise Apex One server and says an attacker must already have server access and administrative credentials through another path Trend Micro. That makes this less useful as an internet-wide unauthenticated scan item and more useful as a security-tool control-plane abuse check.
Affected Assets and Blast Radius
asset_selectors:
- "Apex One"
- "Trend Micro Apex One"
- "Trend Vision One Endpoint Security"
- "CVE-2026-34926"
build_selectors:
- "17079"
- "18012"
- "14.0.20731"
downstream_assets:
- "Apex One server administrative sessions"
- "Apex One agent package deployment history"
- "Windows endpoints managed by affected Apex One servers"
Indicators And Detection Selectors
cves: ["CVE-2026-34926"]
products: ["Apex One 2019", "Apex One as a Service", "Trend Vision One SEP"]
fixed_builds: ["17079", "18012", "14.0.20731"]
telemetry_selectors:
- "Apex One"
- "key table"
- "agent deployment"
- "CWE-23"
- "CP Build 18012"
Detection and Hunting
#!/usr/bin/env python3
import csv
import json
import os
import sys
from pathlib import Path
ASSET_EXPORT = Path(os.environ.get("ASSET_EXPORT", sys.argv[1] if len(sys.argv) > 1 else "apex-one-assets.csv")).resolve()
TELEMETRY_DIR = Path(os.environ.get("TELEMETRY_DIR", "telemetry-export")).resolve()
OUT = Path(os.environ.get("OUT", "hp-apex-one-cve-2026-34926-scope")).resolve()
CVE = "CVE-2026-34926"
SELECTORS = ["CVE-2026-34926", "Apex One", "Trend Micro Apex One", "17079", "18012", "14.0.20731", "agent deployment", "key table", "CWE-23"]
def rows(path):
if not path.exists():
return []
if path.suffix.lower() == ".csv":
with path.open(newline="", encoding="utf-8", errors="ignore") as handle:
return list(csv.DictReader(handle))
data = json.loads(path.read_text(encoding="utf-8", errors="ignore"))
if isinstance(data, list):
return data
for key in ("assets", "agents", "servers", "findings", "rows"):
if isinstance(data.get(key), list):
return data[key]
return []
OUT.mkdir(parents=True, exist_ok=True)
result = {"asset_matches": [], "telemetry_matches": []}
for idx, row in enumerate(rows(ASSET_EXPORT), start=1):
text = json.dumps(row, sort_keys=True)
if any(selector in text for selector in SELECTORS):
result["asset_matches"].append({"row": idx, "cve": CVE, "row_data": row})
if TELEMETRY_DIR.exists():
for path in TELEMETRY_DIR.rglob("*"):
if path.is_file():
for line_no, line in enumerate(path.read_text(encoding="utf-8", errors="ignore").splitlines(), start=1):
for selector in SELECTORS:
if selector in line:
result["telemetry_matches"].append({"file": str(path), "line": line_no, "selector": selector, "evidence": line[:1000]})
(OUT / "apex-one-cve-2026-34926-scope.json").write_text(json.dumps(result, indent=2, sort_keys=True), encoding="utf-8")
# Positive signal: Apex One asset rows below build 17079, missing CP Build 18012, SaaS/SEP agents below 14.0.20731, or telemetry naming CVE-2026-34926.
print(json.dumps({"out": str(OUT), "asset_matches": len(result["asset_matches"]), "telemetry_matches": len(result["telemetry_matches"])}, indent=2))
Patch, Mitigation, and Verification
#!/usr/bin/env python3
import csv
import json
import os
import re
import sys
from pathlib import Path
ASSET_EXPORT = Path(os.environ.get("ASSET_EXPORT", sys.argv[1] if len(sys.argv) > 1 else "apex-one-assets.csv")).resolve()
OUT = Path(os.environ.get("OUT", "hp-apex-one-cve-2026-34926-closure")).resolve()
CVE = "CVE-2026-34926"
SOURCE = "https://success.trendmicro.com/en-US/solution/KA-0023430"
def vt(value):
return tuple(int(x) for x in re.findall(r"\d+", str(value))[:5])
def ge(left, right):
l, r = vt(left), vt(right)
width = max(len(l), len(r), 1)
return l + (0,) * (width - len(l)) >= r + (0,) * (width - len(r))
def load_rows(path):
if not path.exists():
raise SystemExit(f"ASSET_EXPORT not found: {path}")
if path.suffix.lower() == ".csv":
with path.open(newline="", encoding="utf-8", errors="ignore") as handle:
return list(csv.DictReader(handle))
data = json.loads(path.read_text(encoding="utf-8", errors="ignore"))
return data if isinstance(data, list) else next((data[k] for k in ("assets", "agents", "servers", "findings", "rows") if isinstance(data.get(k), list)), [])
OUT.mkdir(parents=True, exist_ok=True)
results = []
for idx, row in enumerate(load_rows(ASSET_EXPORT), start=1):
text = json.dumps(row, sort_keys=True)
if "Apex One" not in text and "CVE-2026-34926" not in text:
continue
version = ""
match = re.search(r"(?<!\d)(14\.0\.\d+|\d{5})(?!\d)", text)
if match:
version = match.group(1)
fixed = False
if version.isdigit():
fixed = int(version) >= 17079 or int(version) >= 18012
elif version:
fixed = ge(version, "14.0.20731")
results.append({"row": idx, "cve": CVE, "source": SOURCE, "detected_build": version, "fixed_build_proven": fixed, "row_data": row})
(OUT / "apex-one-cve-2026-34926-build-verification.json").write_text(json.dumps(results, indent=2, sort_keys=True), encoding="utf-8")
# Remediation trigger: fixed_build_proven false for any Apex One server or agent row keeps CVE-2026-34926 open.
print(json.dumps({"out": str(OUT), "checked": len(results), "not_closed": [r for r in results if not r["fixed_build_proven"]]}, indent=2))
Downstream Abuse Audits
#!/usr/bin/env python3
import json
import os
import sys
from pathlib import Path
TELEMETRY_DIR = Path(os.environ.get("TELEMETRY_DIR", sys.argv[1] if len(sys.argv) > 1 else "telemetry-export")).resolve()
OUT = Path(os.environ.get("OUT", "hp-apex-one-cve-2026-34926-downstream")).resolve()
CVE = "CVE-2026-34926"
SELECTORS = ["CVE-2026-34926", "Apex One", "agent deployment", "key table", "PCCSRV", "17079", "18012", "14.0.20731", "administrator", "deploy"]
if not TELEMETRY_DIR.exists():
raise SystemExit(f"TELEMETRY_DIR not found: {TELEMETRY_DIR}")
OUT.mkdir(parents=True, exist_ok=True)
matches = []
for path in TELEMETRY_DIR.rglob("*"):
if not path.is_file():
continue
for line_no, line in enumerate(path.read_text(encoding="utf-8", errors="ignore").splitlines(), start=1):
for selector in SELECTORS:
if selector in line:
matches.append({"cve": CVE, "file": str(path), "line": line_no, "selector": selector, "evidence": line[:1000]})
(OUT / "apex-one-cve-2026-34926-downstream-selectors.json").write_text(json.dumps(matches, indent=2, sort_keys=True), encoding="utf-8")
# Positive signal: Apex One administrative access, key-table changes, or agent deployment activity on an affected build.
# Remediation trigger: unexplained deployment to agents keeps the Apex One server and receiving endpoints in scope.
print(json.dumps({"out": str(OUT), "matches": len(matches)}, indent=2))