<?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-08" 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="April" day="16"/>

    
    
    

    <abstract>


<t>NSEC3 is a DNSSEC mechanism providing proof of non-existence by
asserting that there are no names that exist between two domain names within
a zone.  Unlike its counterpart NSEC, NSEC3 avoids directly disclosing
the bounding domain name 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 allows 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
iteration 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.  Recent academic studies
have shown that NSEC3 hashing provides only moderate
protection <xref target="GPUNSEC3"/><xref target="ZONEENUM"/>.</t>

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

<t>NSEC3 records provide 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, and 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 is a 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 nontrivial 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.  Note that extra iteration
counts other than 0 increase the impact of CPU-exhausting DoS attacks,
and also increase the 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>Operators are encouraged to forgo using a salt entirely by using a
zero-length salt value instead (represented as a “-“ in the
presentation format).</t>

<t>If salts are used, note that 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. 
Note also that a validating resolver returning an insecure response
MUST 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 MAY also return a SERVFAIL response when
processing NSEC3 records with iterations larger than 0.  Validating
resolvers MAY choose to ignore authoritative server responses with
iteration counts greater than 0, which will likely result in
returning a SERVFAIL to the client when no acceptable responses are
received from authoritative servers.</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) 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 iteration count (and do not validate the signature) MUST
NOT return this EDE option.</t>

<t>Note that this specification updates <xref target="RFC5155"></xref> by significantly
decreasing 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>

</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 attacker-in-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 as insecure 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>At 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>Warren Kumari</t>
  <t>Alexander Mayrhofer</t>
  <t>Matthijs Mekking</t>
  <t>Florian Obser</t>
  <t>Petr Špaček</t>
  <t>Paul Vixie</t>
  <t>Tim Wicinski</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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

-->

</rfc>

