3 vulnerabilities classified as CWE-605 (对同一端口的多重绑定). AI Chinese analysis included.
CWE-605 represents a network-level weakness where multiple sockets bind to the same port, enabling service hijacking or spoofing. This vulnerability typically arises when developers improperly configure the SO_REUSEADDR socket option, allowing a malicious process to bind to a specific address that a legitimate server previously bound to INADDR_ANY. Attackers exploit this by launching a secondary service on the targeted port, effectively stealing traffic or injecting malicious responses before the intended application can process them. To mitigate this risk, developers must strictly manage socket options, ensuring SO_REUSEADDR is used only when necessary and paired with appropriate access controls. Furthermore, implementing strict firewall rules and validating source addresses can prevent unauthorized processes from intercepting network connections, thereby preserving service integrity and preventing unauthorized access to sensitive data streams.
void bind_socket(void) { int server_sockfd; int server_len; struct sockaddr_in server_address; /*unlink the socket if already bound to avoid an error when bind() is called*/ unlink("server_socket"); server_sockfd = socket(AF_INET, SOCK_STREAM, 0); server_address.sin_family = AF_INET; server_address.sin_port = 21; server_address.sin_addr.s_addr = htonl(INADDR_ANY); server_len = sizeof(struct sockaddr_in); bind(server_sockfd, (struct sockaddr *) &s1, server_len); }| CVE ID | Title | CVSS | Severity | Published |
|---|---|---|---|---|
| CVE-2026-25086 | Automated Logic WebCTRL Premium Server Multiple Binds to the Same Port — WebCTRL Premium Server | 7.7 | High | 2026-03-20 |
| CVE-2025-15320 | Tanium addressed a denial of service vulnerability in Tanium Client. — Tanium Client | 3.3 | Low | 2026-02-06 |
| CVE-2024-30218 | Denial of service (DOS) vulnerability in SAP NetWeaver AS ABAP and ABAP Platform — SAP NetWeaver AS ABAP and ABAP Platform | 6.5 | Medium | 2024-04-09 |
Vulnerabilities classified as CWE-605 (对同一端口的多重绑定) represent 3 CVEs. The CWE taxonomy describes the weakness; review individual CVEs for product-specific impact.