* [PATCH v2] firewall: always allow outgoing DNS traffic to root servers [not found] <d50c3626b3d4cc1552807e963d2acc168a37b2db.camel@ipfire.org> @ 2019-10-01 15:22 ` peter.mueller 2019-10-01 17:24 ` Michael Tremer 2019-10-18 7:08 ` Arne Fitzenreiter 0 siblings, 2 replies; 4+ messages in thread From: peter.mueller @ 2019-10-01 15:22 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 2920 bytes --] Allowing outgoing DNS traffic (destination port 53, both TCP and UDP) to the root servers is BCP for some reasons. First, RFC 5011 assumes resolvers are able to fetch new trust ancors from the root servers for a certain time period in order to do key rollovers. Second, Unbound shows some side effects if it cannot do trust anchor signaling (see RFC 8145) or fetch the current trust anchor, resulting in SERVFAILs for arbitrary requests a few minutes. There is little security implication of allowing DNS traffic to the root servers: An attacker might abuse this for exfiltrating data via DNS queries, but is unable to infiltrate data unless he gains control over at least one root server instance. If there is no firewall ruleset in place which prohibits any other DNS traffic than to chosen DNS servers, this patch will not have security implications at all. The second version of this patch does not use unnecessary xargs- call nor changes anything else not related to this issue. Fixes #12183 Cc: Michael Tremer <michael.tremer(a)ipfire.org> Suggested-by: Horace Michael <horace.michael(a)gmx.com> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org> --- config/rootfiles/core/137/filelists/files | 1 + src/initscripts/system/firewall | 12 ++++++++++++ 2 files changed, 13 insertions(+) diff --git a/config/rootfiles/core/137/filelists/files b/config/rootfiles/core/137/filelists/files index ce4e51768..a02840d12 100644 --- a/config/rootfiles/core/137/filelists/files +++ b/config/rootfiles/core/137/filelists/files @@ -1,4 +1,5 @@ etc/system-release etc/issue +etc/rc.d/init.d/firewall srv/web/ipfire/cgi-bin/credits.cgi var/ipfire/langs diff --git a/src/initscripts/system/firewall b/src/initscripts/system/firewall index ec396c708..602bd6c5b 100644 --- a/src/initscripts/system/firewall +++ b/src/initscripts/system/firewall @@ -6,6 +6,7 @@ eval $(/usr/local/bin/readhash /var/ipfire/ppp/settings) eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings) eval $(/usr/local/bin/readhash /var/ipfire/optionsfw/settings) +ROOTHINTS="/etc/unbound/root.hints" IFACE=`/bin/cat /var/ipfire/red/iface 2> /dev/null | /usr/bin/tr -d '\012'` if [ -f /var/ipfire/red/device ]; then @@ -307,6 +308,17 @@ iptables_init() { iptables -A INPUT -j TOR_INPUT iptables -N TOR_OUTPUT iptables -A OUTPUT -j TOR_OUTPUT + + # Allow outgoing DNS traffic (TCP and UDP) to DNS root servers + local rootserverips="$( awk '/\s+A\s+/ { print $4 }' ${ROOTHINTS} )" + ipset -N root-servers iphash + + for ip in "${rootserverips[@]}"; do + ipset add root-servers $ip + done + + iptables -A OUTPUT -m set --match-set root-servers dst -p tcp --dport 53 -j ACCEPT + iptables -A OUTPUT -m set --match-set root-servers dst -p udp --dport 53 -j ACCEPT # Jump into the actual firewall ruleset. iptables -N INPUTFW -- 2.16.4 ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] firewall: always allow outgoing DNS traffic to root servers 2019-10-01 15:22 ` [PATCH v2] firewall: always allow outgoing DNS traffic to root servers peter.mueller @ 2019-10-01 17:24 ` Michael Tremer 2019-10-18 7:08 ` Arne Fitzenreiter 1 sibling, 0 replies; 4+ messages in thread From: Michael Tremer @ 2019-10-01 17:24 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 3173 bytes --] Acked-by: Michael Tremer <michael.tremer(a)ipfire.org> > On 1 Oct 2019, at 16:22, peter.mueller(a)ipfire.org wrote: > > Allowing outgoing DNS traffic (destination port 53, both TCP > and UDP) to the root servers is BCP for some reasons. First, > RFC 5011 assumes resolvers are able to fetch new trust ancors > from the root servers for a certain time period in order to > do key rollovers. > > Second, Unbound shows some side effects if it cannot do trust > anchor signaling (see RFC 8145) or fetch the current trust anchor, > resulting in SERVFAILs for arbitrary requests a few minutes. > > There is little security implication of allowing DNS traffic > to the root servers: An attacker might abuse this for exfiltrating > data via DNS queries, but is unable to infiltrate data unless > he gains control over at least one root server instance. If > there is no firewall ruleset in place which prohibits any other > DNS traffic than to chosen DNS servers, this patch will not > have security implications at all. > > The second version of this patch does not use unnecessary xargs- > call nor changes anything else not related to this issue. > > Fixes #12183 > > Cc: Michael Tremer <michael.tremer(a)ipfire.org> > Suggested-by: Horace Michael <horace.michael(a)gmx.com> > Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org> > --- > config/rootfiles/core/137/filelists/files | 1 + > src/initscripts/system/firewall | 12 ++++++++++++ > 2 files changed, 13 insertions(+) > > diff --git a/config/rootfiles/core/137/filelists/files b/config/rootfiles/core/137/filelists/files > index ce4e51768..a02840d12 100644 > --- a/config/rootfiles/core/137/filelists/files > +++ b/config/rootfiles/core/137/filelists/files > @@ -1,4 +1,5 @@ > etc/system-release > etc/issue > +etc/rc.d/init.d/firewall > srv/web/ipfire/cgi-bin/credits.cgi > var/ipfire/langs > diff --git a/src/initscripts/system/firewall b/src/initscripts/system/firewall > index ec396c708..602bd6c5b 100644 > --- a/src/initscripts/system/firewall > +++ b/src/initscripts/system/firewall > @@ -6,6 +6,7 @@ > eval $(/usr/local/bin/readhash /var/ipfire/ppp/settings) > eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings) > eval $(/usr/local/bin/readhash /var/ipfire/optionsfw/settings) > +ROOTHINTS="/etc/unbound/root.hints" > IFACE=`/bin/cat /var/ipfire/red/iface 2> /dev/null | /usr/bin/tr -d '\012'` > > if [ -f /var/ipfire/red/device ]; then > @@ -307,6 +308,17 @@ iptables_init() { > iptables -A INPUT -j TOR_INPUT > iptables -N TOR_OUTPUT > iptables -A OUTPUT -j TOR_OUTPUT > + > + # Allow outgoing DNS traffic (TCP and UDP) to DNS root servers > + local rootserverips="$( awk '/\s+A\s+/ { print $4 }' ${ROOTHINTS} )" > + ipset -N root-servers iphash > + > + for ip in "${rootserverips[@]}"; do > + ipset add root-servers $ip > + done > + > + iptables -A OUTPUT -m set --match-set root-servers dst -p tcp --dport 53 -j ACCEPT > + iptables -A OUTPUT -m set --match-set root-servers dst -p udp --dport 53 -j ACCEPT > > # Jump into the actual firewall ruleset. > iptables -N INPUTFW > -- > 2.16.4 ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] firewall: always allow outgoing DNS traffic to root servers 2019-10-01 15:22 ` [PATCH v2] firewall: always allow outgoing DNS traffic to root servers peter.mueller 2019-10-01 17:24 ` Michael Tremer @ 2019-10-18 7:08 ` Arne Fitzenreiter 2019-10-18 11:47 ` Arne Fitzenreiter 1 sibling, 1 reply; 4+ messages in thread From: Arne Fitzenreiter @ 2019-10-18 7:08 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 3323 bytes --] this Code will not work: > + for ip in "${rootserverips[@]}"; do > + ipset add root-servers $ip > + done it call ipset add ip1 ip2 ip3 ... because the doublequotes. And if i fix this /etc/init.d/firewall restart complains because the ipset was not cleaned up before! Arne Am 2019-10-01 17:22, schrieb peter.mueller(a)ipfire.org: > Allowing outgoing DNS traffic (destination port 53, both TCP > and UDP) to the root servers is BCP for some reasons. First, > RFC 5011 assumes resolvers are able to fetch new trust ancors > from the root servers for a certain time period in order to > do key rollovers. > > Second, Unbound shows some side effects if it cannot do trust > anchor signaling (see RFC 8145) or fetch the current trust anchor, > resulting in SERVFAILs for arbitrary requests a few minutes. > > There is little security implication of allowing DNS traffic > to the root servers: An attacker might abuse this for exfiltrating > data via DNS queries, but is unable to infiltrate data unless > he gains control over at least one root server instance. If > there is no firewall ruleset in place which prohibits any other > DNS traffic than to chosen DNS servers, this patch will not > have security implications at all. > > The second version of this patch does not use unnecessary xargs- > call nor changes anything else not related to this issue. > > Fixes #12183 > > Cc: Michael Tremer <michael.tremer(a)ipfire.org> > Suggested-by: Horace Michael <horace.michael(a)gmx.com> > Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org> > --- > config/rootfiles/core/137/filelists/files | 1 + > src/initscripts/system/firewall | 12 ++++++++++++ > 2 files changed, 13 insertions(+) > > diff --git a/config/rootfiles/core/137/filelists/files > b/config/rootfiles/core/137/filelists/files > index ce4e51768..a02840d12 100644 > --- a/config/rootfiles/core/137/filelists/files > +++ b/config/rootfiles/core/137/filelists/files > @@ -1,4 +1,5 @@ > etc/system-release > etc/issue > +etc/rc.d/init.d/firewall > srv/web/ipfire/cgi-bin/credits.cgi > var/ipfire/langs > diff --git a/src/initscripts/system/firewall > b/src/initscripts/system/firewall > index ec396c708..602bd6c5b 100644 > --- a/src/initscripts/system/firewall > +++ b/src/initscripts/system/firewall > @@ -6,6 +6,7 @@ > eval $(/usr/local/bin/readhash /var/ipfire/ppp/settings) > eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings) > eval $(/usr/local/bin/readhash /var/ipfire/optionsfw/settings) > +ROOTHINTS="/etc/unbound/root.hints" > IFACE=`/bin/cat /var/ipfire/red/iface 2> /dev/null | /usr/bin/tr -d > '\012'` > > if [ -f /var/ipfire/red/device ]; then > @@ -307,6 +308,17 @@ iptables_init() { > iptables -A INPUT -j TOR_INPUT > iptables -N TOR_OUTPUT > iptables -A OUTPUT -j TOR_OUTPUT > + > + # Allow outgoing DNS traffic (TCP and UDP) to DNS root servers > + local rootserverips="$( awk '/\s+A\s+/ { print $4 }' ${ROOTHINTS} )" > + ipset -N root-servers iphash > + > + for ip in "${rootserverips[@]}"; do > + ipset add root-servers $ip > + done > + > + iptables -A OUTPUT -m set --match-set root-servers dst -p tcp > --dport 53 -j ACCEPT > + iptables -A OUTPUT -m set --match-set root-servers dst -p udp > --dport 53 -j ACCEPT > > # Jump into the actual firewall ruleset. > iptables -N INPUTFW ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] firewall: always allow outgoing DNS traffic to root servers 2019-10-18 7:08 ` Arne Fitzenreiter @ 2019-10-18 11:47 ` Arne Fitzenreiter 0 siblings, 0 replies; 4+ messages in thread From: Arne Fitzenreiter @ 2019-10-18 11:47 UTC (permalink / raw) To: development [-- Attachment #1: Type: text/plain, Size: 3769 bytes --] I have also found another problem. This patch is useless because you need the rootserver only in recursor mode but in recursor mode you need access to all dns servers of the domain ownwers. So allowing only the rootservers is useless because you still cannot resolve domains. Arne Am 2019-10-18 09:08, schrieb Arne Fitzenreiter: > this Code will not work: >> + for ip in "${rootserverips[@]}"; do >> + ipset add root-servers $ip >> + done > > it call > ipset add ip1 ip2 ip3 ... > because the doublequotes. > > And if i fix this > /etc/init.d/firewall restart > complains because the ipset was not cleaned up before! > > Arne > > > > Am 2019-10-01 17:22, schrieb peter.mueller(a)ipfire.org: >> Allowing outgoing DNS traffic (destination port 53, both TCP >> and UDP) to the root servers is BCP for some reasons. First, >> RFC 5011 assumes resolvers are able to fetch new trust ancors >> from the root servers for a certain time period in order to >> do key rollovers. >> >> Second, Unbound shows some side effects if it cannot do trust >> anchor signaling (see RFC 8145) or fetch the current trust anchor, >> resulting in SERVFAILs for arbitrary requests a few minutes. >> >> There is little security implication of allowing DNS traffic >> to the root servers: An attacker might abuse this for exfiltrating >> data via DNS queries, but is unable to infiltrate data unless >> he gains control over at least one root server instance. If >> there is no firewall ruleset in place which prohibits any other >> DNS traffic than to chosen DNS servers, this patch will not >> have security implications at all. >> >> The second version of this patch does not use unnecessary xargs- >> call nor changes anything else not related to this issue. >> >> Fixes #12183 >> >> Cc: Michael Tremer <michael.tremer(a)ipfire.org> >> Suggested-by: Horace Michael <horace.michael(a)gmx.com> >> Signed-off-by: Peter Müller <peter.mueller(a)ipfire.org> >> --- >> config/rootfiles/core/137/filelists/files | 1 + >> src/initscripts/system/firewall | 12 ++++++++++++ >> 2 files changed, 13 insertions(+) >> >> diff --git a/config/rootfiles/core/137/filelists/files >> b/config/rootfiles/core/137/filelists/files >> index ce4e51768..a02840d12 100644 >> --- a/config/rootfiles/core/137/filelists/files >> +++ b/config/rootfiles/core/137/filelists/files >> @@ -1,4 +1,5 @@ >> etc/system-release >> etc/issue >> +etc/rc.d/init.d/firewall >> srv/web/ipfire/cgi-bin/credits.cgi >> var/ipfire/langs >> diff --git a/src/initscripts/system/firewall >> b/src/initscripts/system/firewall >> index ec396c708..602bd6c5b 100644 >> --- a/src/initscripts/system/firewall >> +++ b/src/initscripts/system/firewall >> @@ -6,6 +6,7 @@ >> eval $(/usr/local/bin/readhash /var/ipfire/ppp/settings) >> eval $(/usr/local/bin/readhash /var/ipfire/ethernet/settings) >> eval $(/usr/local/bin/readhash /var/ipfire/optionsfw/settings) >> +ROOTHINTS="/etc/unbound/root.hints" >> IFACE=`/bin/cat /var/ipfire/red/iface 2> /dev/null | /usr/bin/tr -d >> '\012'` >> >> if [ -f /var/ipfire/red/device ]; then >> @@ -307,6 +308,17 @@ iptables_init() { >> iptables -A INPUT -j TOR_INPUT >> iptables -N TOR_OUTPUT >> iptables -A OUTPUT -j TOR_OUTPUT >> + >> + # Allow outgoing DNS traffic (TCP and UDP) to DNS root servers >> + local rootserverips="$( awk '/\s+A\s+/ { print $4 }' ${ROOTHINTS} )" >> + ipset -N root-servers iphash >> + >> + for ip in "${rootserverips[@]}"; do >> + ipset add root-servers $ip >> + done >> + >> + iptables -A OUTPUT -m set --match-set root-servers dst -p tcp >> --dport 53 -j ACCEPT >> + iptables -A OUTPUT -m set --match-set root-servers dst -p udp >> --dport 53 -j ACCEPT >> >> # Jump into the actual firewall ruleset. >> iptables -N INPUTFW ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2019-10-18 11:47 UTC | newest] Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- [not found] <d50c3626b3d4cc1552807e963d2acc168a37b2db.camel@ipfire.org> 2019-10-01 15:22 ` [PATCH v2] firewall: always allow outgoing DNS traffic to root servers peter.mueller 2019-10-01 17:24 ` Michael Tremer 2019-10-18 7:08 ` Arne Fitzenreiter 2019-10-18 11:47 ` Arne Fitzenreiter
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox