mirror of
https://github.com/safing/portmaster
synced 2025-09-01 18:19:12 +00:00
Improve nameserver auth IP check
This commit is contained in:
parent
6ded9b3f8c
commit
d17f83a379
1 changed files with 2 additions and 3 deletions
|
@ -28,7 +28,6 @@ var (
|
|||
dnsServer *dns.Server
|
||||
|
||||
listenAddress = "0.0.0.0:53"
|
||||
ipv4Localhost = net.IPv4(127, 0, 0, 1)
|
||||
localhostRRs []dns.RR
|
||||
)
|
||||
|
||||
|
@ -146,8 +145,8 @@ func handleRequest(ctx context.Context, w dns.ResponseWriter, query *dns.Msg) er
|
|||
log.Warningf("nameserver: could not get remote address of request for %s%s, ignoring", q.FQDN, q.QType)
|
||||
return nil
|
||||
}
|
||||
if !remoteAddr.IP.Equal(ipv4Localhost) {
|
||||
// if request is not coming from 127.0.0.1, check if it's really local
|
||||
if !netutils.IPIsLocalhost(remoteAddr.IP) {
|
||||
// If request is not from a localhost address, check it it's really local.
|
||||
|
||||
localAddr, ok := w.RemoteAddr().(*net.UDPAddr)
|
||||
if !ok {
|
||||
|
|
Loading…
Add table
Reference in a new issue