Skip to content

Commit 7d04904

Browse files
author
Skyxim
committed
fix: leak dns when domain in hosts list
1 parent a5acd3a commit 7d04904

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

dns/middleware.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -46,11 +46,11 @@ func withHosts(hosts *trie.DomainTrie[netip.Addr], mapping *cache.LruCache[netip
4646
rr.A = ip.AsSlice()
4747

4848
msg.Answer = []D.RR{rr}
49-
} else if ip.Is6() && q.Qtype == D.TypeAAAA {
49+
} else if q.Qtype == D.TypeAAAA {
5050
rr := &D.AAAA{}
5151
rr.Hdr = D.RR_Header{Name: q.Name, Rrtype: D.TypeAAAA, Class: D.ClassINET, Ttl: 10}
52-
rr.AAAA = ip.AsSlice()
53-
52+
ip := ip.As16()
53+
rr.AAAA = ip[:]
5454
msg.Answer = []D.RR{rr}
5555
} else {
5656
return next(ctx, r)

0 commit comments

Comments
 (0)