The
“socket” module provides a pure-Python fallback to the
socket.socketpair() function for platforms that don’t support AF_UNIX,
such as Windows. This pure-Python implementation uses AF_INET or
AF_INET6 to create a local connected pair of sockets. The connection
between the two sockets was not verified before passing the two sockets
back to the user, which leaves the server socket vulnerable to a
connection race from a malicious local peer.
Platforms that support AF_UNIX such as Linux and macOS are not affected by this vulnerability. Versions prior to CPython 3.5 are not affected due to the vulnerable API not being included.
CVSS
No CVSS.
References
Configurations
No configuration.
History
04 Nov 2024, 22:35
Type | Values Removed | Values Added |
---|---|---|
CWE | CWE-306 |
17 Oct 2024, 19:15
Type | Values Removed | Values Added |
---|---|---|
Summary | (en) The “socket” module provides a pure-Python fallback to the socket.socketpair() function for platforms that don’t support AF_UNIX, such as Windows. This pure-Python implementation uses AF_INET or AF_INET6 to create a local connected pair of sockets. The connection between the two sockets was not verified before passing the two sockets back to the user, which leaves the server socket vulnerable to a connection race from a malicious local peer. Platforms that support AF_UNIX such as Linux and macOS are not affected by this vulnerability. Versions prior to CPython 3.5 are not affected due to the vulnerable API not being included. |
05 Aug 2024, 15:15
Type | Values Removed | Values Added |
---|---|---|
References |
|
01 Aug 2024, 14:15
Type | Values Removed | Values Added |
---|---|---|
References |
|
30 Jul 2024, 13:15
Type | Values Removed | Values Added |
---|---|---|
Summary |
|
|
References |
|
30 Jul 2024, 01:15
Type | Values Removed | Values Added |
---|---|---|
References |
|
29 Jul 2024, 22:15
Type | Values Removed | Values Added |
---|---|---|
New CVE |
Information
Published : 2024-07-29 22:15
Updated : 2024-11-04 22:35
NVD link : CVE-2024-3219
Mitre link : CVE-2024-3219
CVE.ORG link : CVE-2024-3219
JSON object : View
Products Affected
No product.
CWE
CWE-306
Missing Authentication for Critical Function