CVE-2026-45673
Published:June 09, 2026
Updated:June 09, 2026
Summary Netty's DNS resolver uses a predictable PRNG for generating DNS transaction IDs and defaults to a static UDP source port. This combination reduces the entropy of DNS queries, enabling DNS Cache Poisoning (Kaminsky attack). Details Two factors contribute to this vulnerability in io.netty.resolver.dns: - Predictable Query IDs: "DnsQueryIdSpace" manages 16-bit transaction IDs in buckets of 16,384 IDs. It initializes only the first bucket. When an ID is returned, it is pushed back into the bucket at a random index generated by java.util.concurrent.ThreadLocalRandom: Random random = ThreadLocalRandom.current(); int insertionPosition = random.nextInt(count + 1); Because ThreadLocalRandom is a predictable LCG and the resolver operates within a single bucket, the sequence of IDs is predictable once the PRNG state is mathematically recovered. - Default Static Source Port: "DnsNameResolverBuilder" defaults to a "channelStrategy" of "ChannelPerResolver". This binds the DatagramChannel once, resulting in a static source port for all subsequent queries. Combined, a static source port and predictable transaction IDs reduces the entropy required to secure DNS resolution against spoofing. Impact DNS Cache Poisoning. Downstream applications using the default Netty DNS resolver may connect to malicious IPs, leading to traffic interception or MitM attacks.
Affected Packages
https://github.com/netty/netty.git (GITHUB):
Affected version(s) >=netty-4.0.0.Alpha1 <netty-4.1.135.FinalFix Suggestion:
Update to version netty-4.1.135.Finalhttps://github.com/netty/netty.git (GITHUB):
Affected version(s) >=netty-4.2.0.Final <netty-4.2.15.FinalFix Suggestion:
Update to version netty-4.2.15.Finalio.netty:netty-resolver-dns (JAVA):
Affected version(s) >=4.2.0.Final <4.2.15.FinalFix Suggestion:
Update to version 4.2.15.Finalio.netty:netty-resolver-dns (JAVA):
Affected version(s) >=4.1.0.Beta4 <4.1.135.FinalFix Suggestion:
Update to version 4.1.135.FinalRelated Resources (4)
Do you need more information?
Contact UsCVSS v4
Base Score:
8.9
Attack Vector
NETWORK
Attack Complexity
HIGH
Attack Requirements
NONE
Privileges Required
NONE
User Interaction
NONE
Vulnerable System Confidentiality
NONE
Vulnerable System Integrity
HIGH
Vulnerable System Availability
NONE
Subsequent System Confidentiality
NONE
Subsequent System Integrity
HIGH
Subsequent System Availability
NONE
CVSS v3
Base Score:
6.8
Attack Vector
NETWORK
Attack Complexity
HIGH
Privileges Required
NONE
User Interaction
NONE
Scope
CHANGED
Confidentiality
NONE
Integrity
HIGH
Availability
NONE