5 vulnerabilities classified as CWE-941 (通信信道中错误指定的目的地). AI Chinese analysis included.
CWE-941 represents a critical architectural flaw where software establishes a communication channel but fails to correctly specify the intended destination for the outgoing request. This weakness typically arises from improper configuration or dynamic routing errors, allowing attackers to exploit the misdirection by spoofing trusted servers. By intercepting or redirecting these communications, adversaries can steal sensitive data, inject malicious payloads, or cause denial of service conditions against the intended target. To mitigate this risk, developers must implement strict validation mechanisms for all network endpoints, ensuring that destinations are explicitly defined and verified against a whitelist of authorized hosts. Utilizing secure protocols like TLS with certificate pinning further prevents man-in-the-middle attacks, while rigorous input validation and automated testing during the development lifecycle help identify and correct routing logic errors before deployment, thereby ensuring communications reach only their intended, secure recipients.
sock = socket.socket(socket.AF_INET, socket.SOCK_DGRAM) sock.bind( (UDP_IP,UDP_PORT) ) while true: data = sock.recvfrom(1024) if not data: break (requestIP, nameToResolve) = parseUDPpacket(data) record = resolveName(nameToResolve) sendResponse(requestIP,record)| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2026-40118 | Arcserve UDP Console 安全漏洞 — UDP Console | 4.3AI | MediumAI | 2026-04-16 |
| CVE-2025-53899 | Kiteworks MFT is vulnerable to an Incorrectly Specified Destination in a Communication Channel — security-advisories | 7.2 | High | 2025-11-29 |
| CVE-2023-33198 | Incorrectly Specified Chat Message Destinations in tgstation-server and DreamMaker API — tgstation-server | 6.1 | Medium | 2023-05-30 |
| CVE-2022-4847 | Incorrectly Specified Destination in a Communication Channel in usememos/memos — usememos/memos | - | - | 2022-12-29 |
| CVE-2019-18242 | Moxa IOxpress configuration utility和ioLogik 2500 安全漏洞 — Moxa ioLogik 2500 series firmware, Version 3.0 or lower, IOxpress configuration utility, Version 2.3.0 or lower | 7.5 | - | 2020-03-24 |
Vulnerabilities classified as CWE-941 (通信信道中错误指定的目的地) represent 5 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.