<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.3.32 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc docmapping="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-dnsop-nsec3-guidance-05" category="bcp" consensus="true">

  <front>
    <title abbrev="title">Guidance for NSEC3 parameter settings</title>

    <author initials="W." surname="Hardaker" fullname="Wes Hardaker">
      <organization>USC/ISI</organization>
      <address>
        <email>ietf@hardakers.net</email>
      </address>
    </author>
    <author initials="V." surname="Dukhovni" fullname="Viktor Dukhovni">
      <organization>Bloomberg, L.P.</organization>
      <address>
        <email>ietf-dane@dukhovni.org</email>
      </address>
    </author>

    <date year="2022" month="March" day="06"/>

    
    
    

    <abstract>


<t>NSEC3 is a DNSSEC mechanism providing proof of non-existence by
promising there are no names that exist between two domainnames within
a zone.  Unlike its counterpart NSEC, NSEC3 avoids directly disclosing
the bounding domainname pairs.  This document provides guidance on
setting NSEC3 parameters based on recent operational deployment
experience.</t>



    </abstract>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>As with NSEC <xref target="RFC4035"/>, NSEC3 <xref target="RFC5155"/> provides proof of
non-existence that consists of signed DNS records establishing the
non-existence of a given name or associated Resource Record Type
(RRTYPE) in a DNSSEC <xref target="RFC4035"/> signed zone.  In the case of NSEC3,
however, the names of valid nodes in the zone are obfuscated through
(possibly multiple iterations of) hashing (currently only
SHA-1 is in use within the Internet).</t>

<t>NSEC3 also provides “opt-out support”, allowing for blocks of unsigned
delegations to be covered by a single NSEC3 record.  Use of the
opt-out feature allow large registries to only sign as many NSEC3
records as there are signed DS or other RRsets in the zone – with
opt-out, unsigned delegations don’t require additional NSEC3 records.
This sacrifices the tamper-resistance proof of non-existence offered
by NSEC3 in order to reduce memory and CPU overheads.</t>

<t>NSEC3 records have a number of tunable parameters that are specified
via an NSEC3PARAM record at the zone apex.  These parameters are the
Hash Algorithm, processing Flags, the number of hash Iterations and
the Salt.  Each of these has security and operational considerations
that impact both zone owners and validating resolvers.  This document
provides some best-practice recommendations for setting the NSEC3
parameters.</t>

<section anchor="requirements-notation" title="Requirements Notation">

<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”,
   “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “NOT RECOMMENDED”, “MAY”,
   and “OPTIONAL” in this document are to be interpreted as described
   in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they appear
   in all capitals, as shown here.</t>

</section>
</section>
<section anchor="nsec3-parameter-value-considerations" title="NSEC3 Parameter Value Considerations">

<t>The following sections describe recommendations for setting parameters
for NSEC3 and NSEC3PARAM.</t>

<section anchor="algorithms" title="Algorithms">

<t>The algorithm field is not discussed by this document.</t>

</section>
<section anchor="flags" title="Flags">

<t>The NSEC3PARAM flags field currently contains no flags, but individual
NSEC3 records contain the “Opt-Out” flag <xref target="RFC5155"/>, which specifies
whether or not that NSEC3 record provides proof of non-existence or
not.  In general, NSEC3 with the Opt-Out flag enabled should only be
used in large, highly dynamic zones with a small percentage of signed
delegations.  Operationally, this allows for fewer signature creations
when new delegations are inserted into a zone.  This is typically only
necessary for extremely large registration points providing zone
updates faster than real-time signing allows or when using
memory-constrained hardware.  Smaller zones, or large but relatively
static zones, are encouraged to use a Flags value of 0 (zero) and take
advantage of DNSSEC’s proof-of-non-existence support.</t>

</section>
<section anchor="iterations" title="Iterations">

<t>NSEC3 records are created by first hashing the input domain and then
repeating that hashing algorithm a number of times based on the
iterations parameter in the NSEC3PARM and NSEC3 records.  The first
hash is typically sufficient to discourage zone enumeration performed
by “zone walking” an NSEC or NSEC3 chain.  Only determined parties
with significant resources are likely to try and uncover hashed
values, regardless of the number of additional iterations performed.
If an adversary really wants to expend significant CPU resources to
mount an offline dictionary attack on a zone’s NSEC3 chain, they’ll
likely be able to find most of the “guessable” names despite any
level of additional hashing iterations.</t>

<t>Most names published in the DNS are rarely secret or unpredictable.
They are published to be memorable, used and consumed by humans.  They
are often recorded in many other network logs such as email logs,
certificate transparency logs, web page links, intrusion detection
systems, malware scanners, email archives, etc.  Many times a simple
dictionary of commonly used domain names prefixes (www, ftp, mail,
imap, login, database, etc) can be used to quickly reveal a large
number of labels within a zone.  Because of this, there are increasing
performance costs yet diminishing returns associated with applying
additional hash iterations beyond the first.</t>

<t>Although Section 10.3 of <xref target="RFC5155"/> specifies upper bounds for the
number of hash iterations to use, there is no published guidance for
zone owners about good values to select.  Because hashing provides
only moderate protection, as shown recently in academic studies of
NSEC3 protected zones <xref target="GPUNSEC3"/><xref target="ZONEENUM"/>.</t>

</section>
<section anchor="salt" title="Salt">

<t>Operators are encouraged to forget the salt entirely by using a
zero-length salt value instead (represented as a “-“ in the
presentation format).</t>

<t>NSEC3 records provide an an additional salt value, which can be
combined with an FQDN to influence the resulting hash, but properties
of this extra salt are complicated.</t>

<t>In cryptography, salts generally add a layer of protection against
offline, stored dictionary attacks by combining the value to be hashed
with a unique “salt” value. This prevents adversaries from building up
and remembering a single dictionary of values that can translate a
hash output back to the value that it derived from.</t>

<t>In the case of DNS, the situation is different because the hashed
names placed in NSEC3 records are always implicitly “salted” by
hashing the fully-qualified domain name from each zone. Thus, no
single pre-computed table works to speed up dictionary attacks
against multiple target zones. An attacker is always required to
compute a complete dictionary per zone, which is expensive in both
storage and CPU time.</t>

<t>To understand the role of the additional NSEC3 salt field, we have to
consider how a typical zone walking attack works. Typically the attack
has two phases - online and offline. In the online phase, an attacker
“walks the zone” by enumerating (almost) all hashes listed in NSEC3
records and storing them for the offline phase. Then, in the offline
cracking phase, the attacker attempts to crack the underlying hash. In
this phase, the additional salt value raises the cost of the attack
only if the salt value changes during the online phase of the
attack. In other words, an additional, constant salt value does not
change the cost of the attack.</t>

<t>Changing a zone’s salt value requires the construction of a complete
new NSEC3 chain.  This is true both when resigning the entire zone at
once, or when incrementally signing it in the background where the new
salt is only activated once every name in the chain has been
completed. As a result, re-salting a is very complex operation, with
significant CPU time, memory, and bandwidth consumption. This makes
very frequent re-salting impractical, and renders the additional salt
field functionally useless.</t>

</section>
</section>
<section anchor="recommendations-for-deploying-and-validating-nsec3-records" title="Recommendations for Deploying and Validating NSEC3 Records">

<t>The following subsections describe recommendations for the different
operating realms within the DNS.</t>

<section anchor="best-practice-for-zone-publishers" title="Best-practice for Zone Publishers">

<t>First, if the operational or security features of NSEC3 are not
needed, then NSEC SHOULD be used in preference to NSEC3. NSEC3
requires greater computational power (see <xref target="computationalburdens"/>)
for both authoritative servers and validating clients.  Specifically,
there is a non trivial complexity in finding matching NSEC3 records to
randomly generated prefixes within a DNS zone.  NSEC mitigates this
concern.  If NSEC3 must be used, then an iterations count of 0 MUST be
used to alleviate computational burdens.  Please note that extra
iteration counts other than 0 increase impact of resource
CPU-exhausting DoS attacks, and also increase risk of interoperability
problems.</t>

<t>Note that deploying NSEC with minimally covering NSEC records
<xref target="RFC4470"></xref> also incurs a cost, and zone owners should measure the
computational difference in deploying both RFC4470 or NSEC3.</t>

<t>In short, for all zones, the recommended NSEC3 parameters are as shown
below:</t>

<figure><artwork><![CDATA[
; SHA-1, no extra iterations, empty salt:
;
bcp.example. IN NSEC3PARAM 1 0 0 -
]]></artwork></figure>

<t>For small zones, the use of opt-out based NSEC3 records is NOT
RECOMMENDED.</t>

<t>For very large and sparsely signed zones, where the majority of the
records are insecure delegations, opt-out MAY be used.</t>

<t>Since the NSEC3PARAM RR is not used by validating resolvers (see
<xref target="RFC5155"></xref> section 4), the iterations and salt parameters can be changed
without the need to wait for RRsets to expire from caches.  A complete
new NSEC3 chain needs to be constructed and the zone resigned.</t>

</section>
<section anchor="recommendation-for-validating-resolvers" title="Recommendation for Validating Resolvers">

<t>Because there has been a large growth of open (public) DNSSEC
validating resolvers that are subject to compute resource constraints
when handling requests from anonymous clients, this document
recommends that validating resolvers change their behavior with
respect to large iteration values.  Specifically, validating
resolver operators and validating resolver software implementers are
encouraged to continue evaluating NSEC3 iteration count deployments
and lower their default acceptable limits over time.  Similarly, because
treating a high iterations count as insecure leaves zones subject to
attack, validating resolver operators and validating resolver software
implementers are further encouraged to lower their default and acceptable
limit for returning SERVFAIL when processing NSEC3 parameters
containing large iteration count values.  See
<xref target="deploymentmeasurements"/> for measurements taken near the time of
publication and potential starting points.</t>

<t>Validating resolvers MAY return an insecure response to their clients
when processing NSEC3 records with iterations larger
than 0. Validating resolvers MAY also return a SERVFAIL response when
processing NSEC3 records with iterations larger than 0.  Validating
resolvers MAY choose to ignore responses with iteration counts greater
than 0.</t>

<t>Note that this specification significantly decreases the requirements
originally specified in Section 10.3 of <xref target="RFC5155"></xref>. See the Security
Considerations for arguments on how to handle responses with non-zero
iteration count.</t>

<t>Note also that a validating resolver returning an insecure response
SHOULD still validate the signature over the NSEC3 record to ensure
the iteration count was not altered since record publication (see
<xref target="RFC5155"/> section 10.3).</t>

<t>Validating resolvers returning an insecure or SERVFAIL answer to their
client after receiving and validating an unsupported NSEC3 parameter
from the authoritative server(s) values SHOULD return an Extended DNS
Error (EDE) {RFC8914} EDNS0 option of value (RFC EDITOR: TBD).
Validating resolvers that choose to ignore a response with an
unsupported iterations count (and do not validate the signature) MUST
NOT return this EDE option.</t>

</section>
<section anchor="recommendation-for-primary-secondary-relationships" title="Recommendation for Primary / Secondary Relationships">

<t>Primary and secondary authoritative servers for a zone that are not
being run by the same operational staff and/or using the same software
and configuration must take into account the potential differences in
NSEC3 iteration support.</t>

<t>Operators of secondary services should advertise the parameter limits
that their servers support. Correspondingly, operators of primary
servers need to ensure that their secondaries support the NSEC3
parameters they expect to use in their zones.  To ensure reliability,
after primaries change their iteration counts, they should query their
secondaries with known non-existent labels to verify the secondary
servers are responding as expected.</t>

</section>
</section>
<section anchor="security-considerations" title="Security Considerations">

<t>This entire document discusses security considerations with various
parameters selections of NSEC3 and NSEC3PARAM fields.</t>

<t>The point where a validating resolver returns insecure vs the point
where it returns SERVFAIL must be considered carefully.  Specifically,
when a validating resolver treats a zone as insecure above a
particular value (say 100) and returns SERVFAIL above a higher point
(say 500), it leaves the zone subject to man-it-the-middle attacks as
if it was unsigned between these values. Thus, validating resolver
operators and software implementers SHOULD set the point above which a zone
is treated for certain values of NSEC3 iterations counts to the same
as the point where a validating resolver begins returning SERVFAIL.</t>

</section>
<section anchor="operational-considerations" title="Operational Considerations">

<t>This entire document discusses operational considerations with various
parameters selections of NSEC3 and NSEC3PARAM fields.</t>

</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>This document requests a new allocation in the “Extended DNS Error
Codes” of the “Domain Name System (DNS) Parameters” registration
table with the following characteristics:</t>

<t><list style="symbols">
  <t>INFO-CODE: (RFC EDITOR: TBD)</t>
  <t>Purpose: Unsupported NSEC3 iterations value</t>
  <t>Reference: (RFC EDITOR: this document)</t>
</list></t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<abstract><t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='2119'/>
<seriesInfo name='DOI' value='10.17487/RFC2119'/>
</reference>



<reference  anchor="RFC5155" target='https://www.rfc-editor.org/info/rfc5155'>
<front>
<title>DNS Security (DNSSEC) Hashed Authenticated Denial of Existence</title>
<author initials='B.' surname='Laurie' fullname='B. Laurie'><organization /></author>
<author initials='G.' surname='Sisson' fullname='G. Sisson'><organization /></author>
<author initials='R.' surname='Arends' fullname='R. Arends'><organization /></author>
<author initials='D.' surname='Blacka' fullname='D. Blacka'><organization /></author>
<date year='2008' month='March' />
<abstract><t>The Domain Name System Security (DNSSEC) Extensions introduced the NSEC resource record (RR) for authenticated denial of existence. This document introduces an alternative resource record, NSEC3, which similarly provides authenticated denial of existence.  However, it also provides measures against zone enumeration and permits gradual expansion of delegation-centric zones.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5155'/>
<seriesInfo name='DOI' value='10.17487/RFC5155'/>
</reference>



<reference  anchor="RFC4035" target='https://www.rfc-editor.org/info/rfc4035'>
<front>
<title>Protocol Modifications for the DNS Security Extensions</title>
<author initials='R.' surname='Arends' fullname='R. Arends'><organization /></author>
<author initials='R.' surname='Austein' fullname='R. Austein'><organization /></author>
<author initials='M.' surname='Larson' fullname='M. Larson'><organization /></author>
<author initials='D.' surname='Massey' fullname='D. Massey'><organization /></author>
<author initials='S.' surname='Rose' fullname='S. Rose'><organization /></author>
<date year='2005' month='March' />
<abstract><t>This document is part of a family of documents that describe the DNS Security Extensions (DNSSEC).  The DNS Security Extensions are a collection of new resource records and protocol modifications that add data origin authentication and data integrity to the DNS.  This document describes the DNSSEC protocol modifications.  This document defines the concept of a signed zone, along with the requirements for serving and resolving by using DNSSEC.  These techniques allow a security-aware resolver to authenticate both DNS resource records and authoritative DNS error indications. </t><t> This document obsoletes RFC 2535 and incorporates changes from all updates to RFC 2535.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4035'/>
<seriesInfo name='DOI' value='10.17487/RFC4035'/>
</reference>



<reference  anchor="RFC4470" target='https://www.rfc-editor.org/info/rfc4470'>
<front>
<title>Minimally Covering NSEC Records and DNSSEC On-line Signing</title>
<author initials='S.' surname='Weiler' fullname='S. Weiler'><organization /></author>
<author initials='J.' surname='Ihren' fullname='J. Ihren'><organization /></author>
<date year='2006' month='April' />
<abstract><t>This document describes how to construct DNSSEC NSEC resource records that cover a smaller range of names than called for by RFC 4034.  By generating and signing these records on demand, authoritative name servers can effectively stop the disclosure of zone contents otherwise made possible by walking the chain of NSEC records in a signed zone.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4470'/>
<seriesInfo name='DOI' value='10.17487/RFC4470'/>
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="GPUNSEC3" >
  <front>
    <title>GPU-Based NSEC3 Hash Breaking</title>
    <author initials="M." surname="Wander" fullname="M. Wander">
      <organization></organization>
    </author>
    <author initials="L." surname="Schwittmann" fullname="L. Schwittmann">
      <organization></organization>
    </author>
    <author initials="C." surname="Boelmann" fullname="C. Boelmann">
      <organization></organization>
    </author>
    <author initials="T." surname="Weis" fullname="T. Weis">
      <organization></organization>
    </author>
    <date year="2014"/>
  </front>
  <seriesInfo name="DOI" value="10.1109/NCA.2014.27"/>
</reference>
<reference anchor="ZONEENUM" >
  <front>
    <title>An efficient DNSSEC zone enumeration algorithm</title>
    <author initials="Z." surname="Wang" fullname="Zheng Wang">
      <organization></organization>
    </author>
    <author initials="L." surname="Xiao" fullname="Liyuan Xiao">
      <organization></organization>
    </author>
    <author initials="R." surname="Wang" fullname="Rui Wang">
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>




<reference  anchor="RFC8174" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<abstract><t>RFC 2119 specifies common key words that may be used in protocol  specifications.  This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the  defined special meanings.</t></abstract>
</front>
<seriesInfo name='BCP' value='14'/>
<seriesInfo name='RFC' value='8174'/>
<seriesInfo name='DOI' value='10.17487/RFC8174'/>
</reference>




    </references>


<section anchor="deploymentmeasurements" title="Deployment measurements at time of publication">

<t>At the time of publication, setting an upper limit of 100 iterations
for treating a zone as insecure is interoperable without significant
problems, but at the same time still enables CPU-exhausting DoS
attacks.</t>

<t>As the time of publication, returning SERVFAIL beyond 500 iterations
appears to be interoperable without significant problems.</t>

</section>
<section anchor="computationalburdens" title="Computational burdens of processing NSEC3 iterations">

<t>The Queries Per Second (QPS) of authoritative servers will decrease due
to computational overhead when processing DNS requests for zones
containing higher NSEC3 iteration counts.  The table (<xref target="qps"/>) below
shows the drop in QPS for various iteration counts.</t>

<figure><artwork><![CDATA[
| Iterations | QPS [% of 0 iterations QPS] |
|------------+-----------------------------|
|          0 | 100 %                       |
|         10 | 89 %                        |
|         20 | 82 %                        |
|         50 | 64 %                        |
|        100 | 47 %                        |
|        150 | 38 %                        |
]]></artwork></figure>

</section>
<section title="Acknowledgments" anchor="qps">

<t>The authors would like to thank the dns-operations discussion
participants, which took place on mattermost hosted by DNS-OARC.</t>

<t>Additionally, the following people contributed text or review comments
to the draft:</t>

<t><list style="symbols">
  <t>Vladimír Čunát</t>
  <t>Tony Finch</t>
  <t>Paul Hoffman</t>
  <t>Alexander Mayrhofer</t>
  <t>Matthijs Mekking</t>
  <t>Florian Obser</t>
  <t>Petr Špaček</t>
  <t>Paul Vixie</t>
</list></t>

</section>
<section anchor="github-version-of-this-document" title="Github Version of This Document">

<t>While this document is under development, it can be viewed, tracked,
issued, pushed with PRs, … here:</t>

<t>https://github.com/hardaker/draft-hardaker-dnsop-nsec3-guidance</t>

</section>
<section anchor="implementation-notes" title="Implementation Notes">

<t>The following implementations have implemented the guidance in this
document.  They have graciously provided notes about the details of
their implementation below.</t>

<section anchor="opendnssec" title="OpenDNSSEC">

<t>The OpenDNSSEC configuration checking utility will alert the user
about nsec3 iteration values larger than 100.</t>

</section>
<section anchor="powerdns" title="PowerDNS">

<t>PowerDNS 4.5.2 changed the default value of nsec3-max-iterations to 150.</t>

</section>
<section anchor="knot-dns-and-knot-resolver" title="Knot DNS and Knot Resolver">

<t>Knot DNS 3.0.6 warns when signing with more than 20 NSEC3 iterations.
Knot Resolver 5.3.1 treats NSEC3 iterations above 150 as insecure.</t>

</section>
<section anchor="google-public-dns-resolver" title="Google Public DNS Resolver">

<t>Google Public DNS treats NSEC3 iterations above 100 as insecure since
September 2021.</t>

</section>
<section anchor="google-cloud-dns" title="Google Cloud DNS">

<t>Google Cloud DNS uses 1 iteration and 64-bits of fixed random salt for
all zones using NSEC3. These parameters cannot be adjusted by users.</t>

</section>
</section>


  </back>

<!-- ##markdown-source:
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
/wB2kuRYN0EAAA==

-->

</rfc>

