fix(deps): update dependency io.netty:netty-transport-native-epoll to v4.1.135.final [security]#369
Open
renovate[bot] wants to merge 1 commit into
Conversation
jonbartels
previously approved these changes
Jul 24, 2026
mgaffigan
previously approved these changes
Jul 24, 2026
NicoPiel
previously approved these changes
Jul 24, 2026
renovate
Bot
force-pushed
the
renovate/maven-io.netty-netty-transport-native-epoll-vulnerability
branch
from
July 24, 2026 23:05
7d7ab21 to
34cf92a
Compare
… v4.1.135.final [security]
renovate
Bot
dismissed stale reviews from jonbartels, mgaffigan, and NicoPiel
via
July 24, 2026 23:18
ad2a0f3
renovate
Bot
force-pushed
the
renovate/maven-io.netty-netty-transport-native-epoll-vulnerability
branch
from
July 24, 2026 23:18
34cf92a to
ad2a0f3
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.1.119.Final→4.1.135.FinalNetty: Unix-socket fd receive leaks descriptors when peer sends two at once
CVE-2026-45536 / GHSA-w573-9ffj-6ff9
More information
Details
netty_unix_socket_recvFd sets msg_control to
char control[CMSG_SPACE(sizeof(int))](line 940) — 24 bytes on 64-bit Linux. A peer-sent SCM_RIGHTS cmsg carrying two ints has cmsg_len = CMSG_LEN(8) = 24, which fits exactly with no MSG_CTRUNC, so the kernel installs both fds in the receiving process. The subsequent checkcmsg->cmsg_len == CMSG_LEN(sizeof(int))(line 972, expected 20) fails, the branch that would read the fd is skipped, and neither installed fd is closed. The for(;;) loop calls recvmsg again (non-blocking → EAGAIN → Java maps to 0 → read loop exits normally), leaving two leaked fds per message. There is no MSG_CTRUNC handling. Reachable via Epoll/KQueue DomainSocketChannel when the application opts into DomainSocketReadMode.FILE_DESCRIPTORS (non-default).Severity
CVSS:3.1/AV:L/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:LReferences
This data is provided by OSV and the GitHub Advisory Database (CC-BY 4.0).
Configuration
📅 Schedule: (in timezone America/New_York)
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.