<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.21 (Ruby 2.6.10) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-dnsop-domain-verification-techniques-07" category="bcp" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.23.2 -->
  <front>
    <title abbrev="Domain Control Validation using DNS">Domain Control Validation using DNS</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-dnsop-domain-verification-techniques-07"/>
    <author initials="S." surname="Sahib" fullname="Shivan Sahib">
      <organization>Brave Software</organization>
      <address>
        <email>shivankaulsahib@gmail.com</email>
      </address>
    </author>
    <author initials="S." surname="Huque" fullname="Shumon Huque">
      <organization>Salesforce</organization>
      <address>
        <email>shuque@gmail.com</email>
      </address>
    </author>
    <author initials="P." surname="Wouters" fullname="Paul Wouters">
      <organization>Aiven</organization>
      <address>
        <email>paul.wouters@aiven.io</email>
      </address>
    </author>
    <author initials="E." surname="Nygren" fullname="Erik Nygren">
      <organization>Akamai Technologies</organization>
      <address>
        <email>erik+ietf@nygren.org</email>
      </address>
    </author>
    <author initials="T." surname="Wicinski" fullname="Tim Wicinski">
      <organization>Cox Communications</organization>
      <address>
        <email>tjw.ietf@gmail.com</email>
      </address>
    </author>
    <date year="2025" month="March" day="03"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>Many application services on the Internet need to verify ownership or control of a domain in the Domain Name System (DNS). The general term for this process is "Domain Control Validation", and can be done using a variety of methods such as email, HTTP/HTTPS, or the DNS itself. This document focuses only on DNS-based methods, which typically involve the Application Service Provider requesting a DNS record with a specific format and content to be visible in the domain to be verified. There is wide variation in the details of these methods today. This document provides some best practices to avoid known problems.</t>
    </abstract>
    <note removeInRFC="true">
      <name>Discussion Venues</name>
      <t>Source for this draft and an issue tracker can be found at
  <eref target="https://github.com/ietf-wg-dnsop/draft-ietf-dnsop-domain-verification-techniques/"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Many Application Service Providers of internet services need domain owners to prove that they control a particular DNS domain before the Application Service Provider can operate services for or grant some privilege to that domain. For instance, Certification Authorities (CAs) ask requesters of TLS certificates to prove that they operate the domain they are requesting the certificate for. Application Service Providers generally allow for several different ways of proving control of a domain. In practice, DNS-based methods take the form of the Application Service Provider generating a random token and asking the requester to create a DNS record containing this random token and placing it at a location within the domain that the Application Service Provider can query for. Generally only one time-bound DNS record is sufficient for proving domain ownership.</t>
      <t>This document recommends using TXT based domain control validation in a way that is time-bounded and targeted to the specific application service.</t>
    </section>
    <section anchor="conventions-and-definitions">
      <name>Conventions and Definitions</name>
      <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>
      <ul spacing="normal">
        <li>
          <t><tt>Application Service Provider</tt>: an internet-based provider of a service, for e.g., a Certification Authority or a service that allows for user-controlled websites. These services often require a User to verify that they control a domain. The Application Service Provider may be implementing a standard protocol for domain validation (such as <xref target="RFC8555"/>) or they may have their own specification.</t>
        </li>
        <li>
          <t><tt>Intermediary</tt>: an internet-based service that leverages the services of other providers on behalf of a User. For example, an Intermediary might be a service that allows for User-controlled websites and in-turn needs to use a Certification Authority provider to get TLS certificates for the User on behalf of the website.</t>
        </li>
        <li>
          <t><tt>Validation Record</tt>: the DNS record that is used to prove ownership of a domain name (<xref target="RFC9499"/>). It typically contains an unguessable value generated by the Application Service Provider which serves as a challenge. The Application Service Provider looks for the Validation Record in the zone of the domain name being verified and checks if it contains the unguessable value.</t>
        </li>
        <li>
          <t><tt>DNS Administrator</tt>: the owner or responsible party for the contents of a domain in the DNS.</t>
        </li>
        <li>
          <t><tt>User</tt>: the owner or operator of a domain in the DNS who needs to prove ownership of that domain to an Application Service Provider, working in coordination with their DNS Administrator.</t>
        </li>
        <li>
          <t><tt>Random Token</tt>: a random value that uniquely identifies the DNS domain control validation challenge, defined in <xref target="random-token"/>.</t>
        </li>
      </ul>
    </section>
    <section anchor="scope">
      <name>Scope of Validation</name>
      <t>For security reasons, it is crucial to understand the scope of the domain name being validated. Both Application Service Providers and the User need to clearly specify and understand whether the validation request is for a single hostname, a wildcard (all hostnames immediately under that domain), or for the entire domain and subdomains rooted at that name. This is particularly important in large multi-tenant enterprises, where an individual deployer of a service may not necessarily have operational authority of an entire domain.</t>
      <t>In the case of X.509 certificate issuance, the certificate signing request and associated challenge are clear about whether they are for a single host or a wildcard domain. Unfortunately, the ACME protocol's DNS-01 challenge mechanism (<xref section="8.4" sectionFormat="comma" target="RFC8555"/>) does not differentiate these cases in the DNS Validation Record. In the absence of this distinction, the DNS administrator tasked with deploying the Validation Record may need to explicitly confirm the details of the certificate issuance request to make sure the certificate is not given broader authority than the User intended.</t>
      <t>In the more general case of an Internet application service granting authority to a domain owner, again no existing DNS challenge scheme makes this distinction today. New applications should consider having different application names for different scopes, as described. Regardless, services should very clearly indicate the scope of the validation in their public documentation so that the domain administrator can use this information to assess whether the Validation Record is granting the appropriately scoped authority.</t>
    </section>
    <section anchor="recommendations">
      <name>Recommendations</name>
      <t>All Domain Control Validation mechanisms are implemented by a DNS resource record with at least the following information:</t>
      <ol spacing="normal" type="1"><li>
          <t>A record name related to the domain name being validated, usually constructed by prepending an application specific label.</t>
        </li>
        <li>
          <t>One or more random tokens.</t>
        </li>
      </ol>
      <section anchor="txt-record">
        <name>TXT Record based Validation</name>
        <t>The RECOMMENDED method of doing DNS-based domain control validation is to use DNS TXT records as the Validation Record. The name is constructed as described in <xref target="name"/>, and RDATA MUST contain at least a Random Token (constructed as in <xref target="random-token"/>). If there are multiple RDATA strings for a record, the Application Service Provider MUST treat them as a concatenated string. If metadata (see <xref target="metadata"/>) is not used, then the unique token generated as-above can be placed as the only contents of the RDATA. For example:</t>
        <artwork><![CDATA[
_service-challenge.example.com.  IN   TXT  "3419...3d206c4"
]]></artwork>
        <t>This again allows the Application Service Provider to query only for application-specific records it needs, while giving flexibility to the User adding the DNS record (i.e., they can be given permission to only add records under a specific prefix by the DNS administrator).</t>
        <t>Application Service Providers MUST validate that a random token in the TXT record matches the one that they gave to the User for that specific domain name. Whether or not multiple Validation Records can exist for the same domain is up to the Application Service Provider's application specification. In case there are multiple TXT records for the specific domain name, the Application Service Provider MUST confirm at least one record matches.</t>
        <section anchor="random-token">
          <name>Random Token</name>
          <t>A unique token should be used in the challenge. It should be a random value issued between parties (Application Service Provider to User, Application Service Provider to Intermediary, or Intermediary to User) with the following properties:</t>
          <ol spacing="normal" type="1"><li>
              <t>MUST have at least 128 bits of entropy.</t>
            </li>
            <li>
              <t>base64url (<xref section="5" sectionFormat="comma" target="RFC4648"/>) encoded, base32 (<xref section="6" sectionFormat="comma" target="RFC4648"/>) encoded, or base16 (<xref section="8" sectionFormat="comma" target="RFC4648"/>) encoded.</t>
            </li>
          </ol>
          <t>See <xref target="RFC4086"/> for additional information on randomness requirements.</t>
          <t>Base32 encoding or hexadecimal base16 encoding are RECOMMENDED to be specified when the random token would exist in a DNS label such as in a CNAME target.  This is because base64 relies on mixed case (and DNS is case-insensitive as clarified in <xref target="RFC4343"/>) and because some base64 characters ("/", "+", and "=") may not be permitted by implementations that limit allowed characters to those allowed in hostnames.  If base32 is used, it SHOULD be specified in way that safely omits the trailing padding ("=").  Note that DNS labels are limited to 63 octets which limits how large such a token may be.</t>
          <t>This random token is placed in either the RDATA or an owner name, as described in the rest of this section.  Some methods of validation may involve multiple independent random tokens.</t>
        </section>
        <section anchor="metadata">
          <name>Token Metadata</name>
          <t>It may be desirable to associate metadata with the token in a Validation Record. When specified, metadata SHOULD be encoded in the RDATA via space-separated ASCII key-value pairs <xref target="RFC1464"/>, with the key "token" prefixing the random token. For example:</t>
          <artwork><![CDATA[
_service-challenge.example.com.  IN   TXT  "token=3419...3d206c4"
]]></artwork>
          <t>If there are multiple tokens required, each one MUST be in a separate RR to allow them to match up with any additional attributes.  For example:</t>
          <artwork><![CDATA[
_service-challenge.example.com.  IN   TXT  "token=3419...3d206c4 attr=bar"
                             IN   TXT  "token=5454...45dc45a attr=quux"
]]></artwork>
          <t>The token MUST be the first element in the key-value list. If the TXT record RDATA is not prefixed with <tt>token=</tt> then <xref target="RFC1464"/> encoding MUST NOT be assumed (as this might split the trailing "==" or "=" at the end of base64 encoding).</t>
          <t>If an alternate syntax is used by the Application Service Provider for token metadata, they MUST specify a grammar for it.</t>
        </section>
      </section>
      <section anchor="name">
        <name>Validation Record Owner Name</name>
        <t>The RECOMMENDED format for a Validation Record's owner name is application-specific underscore prefix labels. Domain Control Validation Records are constructed by the Application Service Provider by prepending the label "<tt>_&lt;PROVIDER_RELEVANT_NAME&gt;-challenge</tt>" to the domain name being validated (e.g. "_service-challenge.example.com"). The prefix "_" is used to avoid collisions with existing hostnames and to prevent the owner name from being a valid hostname.</t>
        <t>If an Application Service Provider has an application-specific need to have multiple validations for the same label, multiple prefixes can be used, such as "<tt>_&lt;FEATURE&gt;._&lt;PROVIDER_RELEVANT_NAME&gt;-challenge</tt>".</t>
        <t>Application owners SHOULD utilize the IANA "Underscored and Globally Scoped DNS Node Names" registry <xref target="UNDERSCORE-REGISTRY"/> and avoid using underscore labels that already exist in the registry.</t>
        <t>As a simplification, some applications may decide to omit the "-challenge" suffix and use just "<tt>_&lt;PROVIDER_RELEVANT_NAME&gt;</tt>" as the label.</t>
      </section>
      <section anchor="time-bound-checking-and-expiration">
        <name>Time-bound checking and Expiration</name>
        <t>After domain control validation is completed, there is typically no need for the TXT or CNAME record to continue to exist as the presence of the domain validation DNS record for a service only implies that a User with access to the service also has DNS control of the domain at the time the code was generated. It should be safe to remove the validation DNS record once the validation is done and the Application Service Provider doing the validation should specify how long the validation will take (i.e., after how much time can the validation DNS record be deleted).</t>
        <t>Some Application Service Providers currently require the Validation Record to remain in the zone indefinitely for periodic revalidation purposes. This practice should be discouraged. Subsequent validation actions using an already disclosed token are no guarantee that the original owner is still in control of the domain, and a new challenge needs to be issued.</t>
        <t>One exception is if the record is being used as part of a delegated domain control validation setup (<xref target="delegated"/>); in that case, the CNAME record that points to the actual validation TXT record cannot be removed as long as the User is still relying on the Intermediary.</t>
        <t>Application Service Providers MUST provide clear instructions on how long the challenge token is valid for, and thus when a Validation Record can be removed.</t>
        <t>These instructions MAY be encoded in the RDATA as token metadata (<xref target="metadata"/> using the key "expiry" to hold a time after which it is safe to remove the Validation Record. For example:</t>
        <artwork><![CDATA[
_service-challenge.example.com.  IN   TXT  "token=3419...3d206c4 expiry=2023-02-08T02:03:19+00:00"
]]></artwork>
        <t>When an expiry time is specified, the value of "expiry" SHALL be in ISO 8601 format as specified in <xref section="5.6" sectionFormat="comma" target="RFC3339"/>.</t>
        <t>A simpler variation of the expiry time is also ISO 8601 valid and can also be specified, using the "full-date" format. For example:</t>
        <artwork><![CDATA[
_service-challenge.example.com.  IN   TXT  "token=3419...3d206c4 expiry=2023-02-08"
]]></artwork>
        <t>Alternatively, if the record should never expire (for instance, if it may be checked periodically by the Application Service Provider) and should not be removed, the key "expiry" SHALL be set to have value "never".</t>
        <artwork><![CDATA[
_service-challenge.example.com.  IN   TXT  "token=3419...3d206c4 expiry=never"
]]></artwork>
        <t>The "expiry" key MAY be omitted in cases where the Application Service Provider has clarified the record expiry policy out-of-band.</t>
        <artwork><![CDATA[
_service-challenge.example.com.  IN   TXT  "token=3419...3d206c4"
]]></artwork>
        <t>Note that this is semantically the same as:</t>
        <artwork><![CDATA[
_service-challenge.example.com.  IN   TXT  "3419...3d206c4"
]]></artwork>
        <t>The User SHOULD de-provision the resource record provisioned for DNS-based domain control validation once it is no longer required.</t>
      </section>
      <section anchor="ttl-considerations">
        <name>TTL Considerations</name>
        <t>The TTL <xref target="RFC1034"/> for Validation Records SHOULD be short to allow recovering from potential misconfigurations. These records will not be polled frequently so caching or resolver load will not be an issue.</t>
        <t>The Application Service Provider looking up a Validation Record may have to wait for up to the SOA minimum TTL (negative caching TTL) of the enclosing zone for the record to become visible, if it has been previously queried. If the application User wants to make the Validation Record visible more quickly they may need to work with the DNS administrator to see if they are willing to lower the SOA minimum TTL (which has implications across the entire zone).</t>
        <t>Application Service Providers' verifiers MAY wish to use dedicated DNS resolvers configured with a low maximum negative caching TTL, flush Validation Records from resolver caches prior to issuing queries or just directly query authoritative name servers to avoid caching.</t>
      </section>
    </section>
    <section anchor="delegated">
      <name>Delegated Domain Control Validation</name>
      <t>Delegated domain control validation lets a User delegate the domain control validation process for their domain to an Intermediary without granting the Intermediary the ability to make changes to their domain or zone configuration.  It is a variation of TXT record validation (<xref target="txt-record"/>) that indirectly inserts a CNAME record prior to the TXT record.</t>
      <t>The Intermediary gives the User a CNAME record to add for the domain and Application Service Provider being validated that points to the Intermediary's domain, where the actual validation TXT record is placed. The record name and base16-encoded (or base32-encoded) random tokens are generated as in <xref target="random-token"/>. For example:</t>
      <artwork><![CDATA[
_service-challenge.example.com.  IN   CNAME  <intermediary-random-token>.dcv.intermediary.example.
]]></artwork>
      <t>The Intermediary then adds the actual Validation Record in a domain they control:</t>
      <artwork><![CDATA[
<intermediary-random-token>.dcv.intermediary.example.  IN   TXT "<provider-random-token>"
]]></artwork>
      <t>Such a setup is especially useful when the Application Service Provider wants to periodically re-issue the challenge with a new provider random token. CNAMEs allow automating the renewal process by letting the Intermediary place the random token in their DNS zone instead of needing continuous write access to the User's DNS.</t>
      <t>Importantly, the CNAME record target also contains a random token issued by the Intermediary to the User (preferably over a secure channel) which proves to the Intermediary that example.com is controlled by the User. The Intermediary must keep an association of Users and domain names to the associated Intermediary-random-tokens. Without a linkage validated by the Intermediary during provisioning and renewal there is the risk that an attacker could leverage a "dangling CNAME" to perform a "subdomain takeover" attack (<xref target="SUBDOMAIN-TAKEOVER"/>).</t>
      <t>When a User stops using the Intermediary they should remove the domain control validation CNAME in addition to any other records they have associated with the Intermediary.</t>
    </section>
    <section anchor="multiple">
      <name>Supporting Multiple Intermediaries</name>
      <t>There are use-cases where a User may wish to simultaneously use multiple intermediaries or multiple independent accounts with an Application Service Provider. For example, a hostname may be using a "multi-CDN" where the hostname simultaneously uses multiple Content Delivery Network (CDN) providers.</t>
      <t>To support this, Application Service Providers may support prefixing the challenge with a label containing an unique account identifier of the form <tt>_&lt;identifier-token&gt;</tt>. The identifier token is encoded in base32 or base16, and if the identifier is sensitive in nature, it should be run through a truncated hashing algorithm first. The identifier token should be stable over time and would be provided to the User by the Application Service Provider, or by an Intermediary in the case where domain validation is delegated (<xref target="delegated"/>).</t>
      <t>The resulting record could either directly contain a TXT record or a CNAME (as in <xref target="delegated"/>).  For example:</t>
      <artwork><![CDATA[
_<identifier-token>._service-challenge.example.com.  IN   TXT  "3419...3d206c4"
]]></artwork>
      <t>or</t>
      <artwork><![CDATA[
_<identifier-token>._service-challenge.example.com.  IN   CNAME  <intermediary-random-token>.dcv.intermediary.example.
]]></artwork>
      <t>When performing validation, the Application Service Provider would resolve the DNS name containing the appropriate identifier token.</t>
      <t>The ACME protocol has incorporated this method to specify DNS account specific challenages in <xref target="ACME-DNS-ACCOUNT-ID"/>.</t>
      <t>Application Service Providers may wish to always prepend the <tt>_&lt;identifier-token&gt;</tt> to make it harder for third parties to scan, even absent supporting multiple intermediaries.  The <tt>_&lt;identifier-token&gt;</tt> MUST start with an underscore so as to not be a valid hostname.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="token-guessing">
        <name>Token Guessing</name>
        <t>If token values aren't long enough or lack adequate entropy there's a risk that a malicious actor could produce a token that could be confused with an application-specific underscore prefix label.</t>
      </section>
      <section anchor="service-confusion">
        <name>Service Confusion</name>
        <t>A malicious Application Service Provider that promises to deliver something after domain control validation could surreptitiously ask another Application Service Provider to start processing or sending mail for the target domain and then present the victim User with this DNS TXT record pretending to be for their service. Once the User has added the DNS TXT record, instead of getting their service, their domain is now certifying another service of which they are not aware they are now a consumer. If services use a clear description and name attribution in the required DNS TXT record, this can be avoided. For example, by requiring a DNS TXT record at _vendorname.example.com instead of at example.com, a malicious service could no longer forward a challenge from a different service without the User noticing. Both the Application Service Provider and the service being authenticated and authorized should be unambiguous from the Validation Record to prevent malicious services from misleading the domain owner into certifying a different provider or service.</t>
      </section>
      <section anchor="service-collision">
        <name>Service Collision</name>
        <t>As a corollary to <xref target="service-confusion"/>, if the Validation Record is not well-scoped and unambiguous with respect to the Application Service Provider, it could be used to authorize use of another Application Service Provider or service in addition to the original Application Service Provider or service.</t>
      </section>
      <section anchor="scope-confusion">
        <name>Scope Confusion</name>
        <t>Ambiguity of scope introduces risks, as described in <xref target="scope"/>. Distinguishing the scope in the application-specific label, along with good documentation, should help make it clear to DNS administrators whether the record applies to a single hostname, a wildcard, or an entire domain. Always using this indication rather than having a default scope reduces ambiguity, especially for protocols that may have used a shared application-specific label for different scopes in the past. While it would also have been possible to include the scope in as an attribute in the TXT record, that has more potential for ambiguity and misleading an operator, such as if an implementation ignores attribute it doesn't recognize but an attacker includes the attribute to mislead the DNS administrator.</t>
      </section>
      <section anchor="authenticated-channels">
        <name>Authenticated Channels</name>
        <t>Application Service Providers and intermediaries should use authenticated channels to convey instructions and random tokens to Users. Otherwise, an attacker in the middle could alter the instructions, potentially allowing the attacker to provision the service instead of the User.</t>
      </section>
      <section anchor="dns-spoofing">
        <name>DNS Spoofing</name>
        <t>A domain owner SHOULD sign their DNS zone using DNSSEC <xref target="RFC9364"/> to protect Validation Records against DNS spoofing attacks.</t>
      </section>
      <section anchor="dnssec-validation">
        <name>DNSSEC Validation</name>
        <t>DNSSEC validation SHOULD be performed by Application Service Providers that verify Validation Records they have requested to be deployed.  If no DNSSEC support is detected for the domain being validated, or if DNSSEC validation cannot be performed, Application Service Providers SHOULD attempt to query and confirm the Validation Record by matching responses from multiple DNS resolvers on unpredictable geographically diverse IP addresses to reduce an attacker's ability to complete a challenge by spoofing DNS. Alternatively, Application Service Providers MAY perform multiple queries spread out over a longer time period to reduce the chance of receiving spoofed DNS answers.</t>
      </section>
      <section anchor="application-usage-enumeration">
        <name>Application Usage Enumeration</name>
        <t>The presence of a Validation Record with a predictable domain name (either as a TXT record for the exact domain name where control is being validated or with a well-known label) can allow attackers to enumerate the utilized set of Application Service Providers.</t>
      </section>
      <section anchor="public-suffixes">
        <name>Public Suffixes</name>
        <t>As discussed above in <xref target="domain-boundaries"/>, there are risks in allowing control to be demonstrated over domains which are "public suffixes" (such as ".co.uk" or ".com"). The volunteer-managed Public Suffix List (<xref target="PSL"/>) is one mechanism that can be used. It includes two "divisions" (<xref target="PSL-DIVISIONS"/>) covering both registry-owned public suffixes (the "ICANN" division) and a "PRIVATE" division covering domains submitted by the domain owner.</t>
        <t>Operators of domains which are in the "PRIVATE" public suffix division often provide multi-tenant services such as dynamic DNS, web hosting, and CDN services. As such, they sometimes allow their sub-tenants to provision names as subdomains of their public suffix. There are use-cases that require operators of domains in the public suffix list to demonstrate control over their domain, such as to be added to the Public Suffix List, or to provision a wildcard certificate. At the same time, if an operator of such a domain allows its customers or tenants to create names starting with an underscore ("_") then it opens up substantial risk to the domain operator for attackers to provision services on their domain.</t>
        <t>Whether or not it is appropriate to allow domain verification on a public suffix will depend on the application.  In the general case:</t>
        <ul spacing="normal">
          <li>
            <t>Application Service Providers SHOULD NOT allow verification of ownership for domains which are public suffixes in the "ICANN" division. For example, "_service-challenge.co.uk" would not be allowed.</t>
          </li>
          <li>
            <t>Application Service Providers MAY allow verification of ownership for domains which are public suffixes in the "PRIVATE" division, although it would be preferable to apply additional safety checks in this case.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC1034">
          <front>
            <title>Domain names - concepts and facilities</title>
            <author fullname="P. Mockapetris" initials="P." surname="Mockapetris"/>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised basic definition of The Domain Name System. It obsoletes RFC-882. This memo describes the domain style names and their used for host address look up and electronic mail forwarding. It discusses the clients and servers in the domain name system and the protocol used between them.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1034"/>
          <seriesInfo name="DOI" value="10.17487/RFC1034"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <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="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <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>
        <reference anchor="RFC9364">
          <front>
            <title>DNS Security Extensions (DNSSEC)</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <date month="February" year="2023"/>
            <abstract>
              <t>This document describes the DNS Security Extensions (commonly called "DNSSEC") that are specified in RFCs 4033, 4034, and 4035, as well as a handful of others. One purpose is to introduce all of the RFCs in one place so that the reader can understand the many aspects of DNSSEC. This document does not update any of those RFCs. A second purpose is to state that using DNSSEC for origin authentication of DNS data is the best current practice. A third purpose is to provide a single reference for other documents that want to refer to DNSSEC.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="237"/>
          <seriesInfo name="RFC" value="9364"/>
          <seriesInfo name="DOI" value="10.17487/RFC9364"/>
        </reference>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="RFC3339">
          <front>
            <title>Date and Time on the Internet: Timestamps</title>
            <author fullname="G. Klyne" initials="G." surname="Klyne"/>
            <author fullname="C. Newman" initials="C." surname="Newman"/>
            <date month="July" year="2002"/>
            <abstract>
              <t>This document defines a date and time format for use in Internet protocols that is a profile of the ISO 8601 standard for representation of dates and times using the Gregorian calendar.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="3339"/>
          <seriesInfo name="DOI" value="10.17487/RFC3339"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC1464">
          <front>
            <title>Using the Domain Name System To Store Arbitrary String Attributes</title>
            <author fullname="R. Rosenbaum" initials="R." surname="Rosenbaum"/>
            <date month="May" year="1993"/>
            <abstract>
              <t>This paper describes a simple means to associate arbitrary string information (ASCII text) with attributes that have not been defined by the DNS. This memo defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1464"/>
          <seriesInfo name="DOI" value="10.17487/RFC1464"/>
        </reference>
        <reference anchor="RFC4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="J. Schiller" initials="J." surname="Schiller"/>
            <author fullname="S. Crocker" initials="S." surname="Crocker"/>
            <date month="June" year="2005"/>
            <abstract>
              <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts. However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities. The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
              <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult. This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities. It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications. 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="106"/>
          <seriesInfo name="RFC" value="4086"/>
          <seriesInfo name="DOI" value="10.17487/RFC4086"/>
        </reference>
        <reference anchor="RFC4343">
          <front>
            <title>Domain Name System (DNS) Case Insensitivity Clarification</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <date month="January" year="2006"/>
            <abstract>
              <t>Domain Name System (DNS) names are "case insensitive". This document explains exactly what that means and provides a clear specification of the rules. This clarification updates RFCs 1034, 1035, and 2181. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4343"/>
          <seriesInfo name="DOI" value="10.17487/RFC4343"/>
        </reference>
        <reference anchor="RFC8555">
          <front>
            <title>Automatic Certificate Management Environment (ACME)</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="J. Hoffman-Andrews" initials="J." surname="Hoffman-Andrews"/>
            <author fullname="D. McCarney" initials="D." surname="McCarney"/>
            <author fullname="J. Kasten" initials="J." surname="Kasten"/>
            <date month="March" year="2019"/>
            <abstract>
              <t>Public Key Infrastructure using X.509 (PKIX) certificates are used for a number of purposes, the most significant of which is the authentication of domain names. Thus, certification authorities (CAs) in the Web PKI are trusted to verify that an applicant for a certificate legitimately represents the domain name(s) in the certificate. As of this writing, this verification is done through a collection of ad hoc mechanisms. This document describes a protocol that a CA and an applicant can use to automate the process of verification and certificate issuance. The protocol also provides facilities for other certificate management functions, such as certificate revocation.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8555"/>
          <seriesInfo name="DOI" value="10.17487/RFC8555"/>
        </reference>
        <reference anchor="RFC9210">
          <front>
            <title>DNS Transport over TCP - Operational Requirements</title>
            <author fullname="J. Kristoff" initials="J." surname="Kristoff"/>
            <author fullname="D. Wessels" initials="D." surname="Wessels"/>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document updates RFCs 1123 and 1536. This document requires the operational practice of permitting DNS messages to be carried over TCP on the Internet as a Best Current Practice. This operational requirement is aligned with the implementation requirements in RFC 7766. The use of TCP includes both DNS over unencrypted TCP as well as over an encrypted TLS session. The document also considers the consequences of this form of DNS communication and the potential operational issues that can arise when this Best Current Practice is not upheld.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="235"/>
          <seriesInfo name="RFC" value="9210"/>
          <seriesInfo name="DOI" value="10.17487/RFC9210"/>
        </reference>
        <reference anchor="RFC6672">
          <front>
            <title>DNAME Redirection in the DNS</title>
            <author fullname="S. Rose" initials="S." surname="Rose"/>
            <author fullname="W. Wijngaards" initials="W." surname="Wijngaards"/>
            <date month="June" year="2012"/>
            <abstract>
              <t>The DNAME record provides redirection for a subtree of the domain name tree in the DNS. That is, all names that end with a particular suffix are redirected to another part of the DNS. This document obsoletes the original specification in RFC 2672 as well as updates the document on representing IPv6 addresses in DNS (RFC 3363). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6672"/>
          <seriesInfo name="DOI" value="10.17487/RFC6672"/>
        </reference>
        <reference anchor="RFC9499">
          <front>
            <title>DNS Terminology</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="K. Fujiwara" initials="K." surname="Fujiwara"/>
            <date month="March" year="2024"/>
            <abstract>
              <t>The Domain Name System (DNS) is defined in literally dozens of different RFCs. The terminology used by implementers and developers of DNS protocols, and by operators of DNS systems, has changed in the decades since the DNS was first defined. This document gives current definitions for many of the terms used in the DNS in a single document.</t>
              <t>This document updates RFC 2308 by clarifying the definitions of "forwarder" and "QNAME". It obsoletes RFC 8499 by adding multiple terms and clarifications. Comprehensive lists of changed and new definitions can be found in Appendices A and B.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="219"/>
          <seriesInfo name="RFC" value="9499"/>
          <seriesInfo name="DOI" value="10.17487/RFC9499"/>
        </reference>
        <reference anchor="I-D.draft-tjw-dbound2-problem-statement">
          <front>
            <title>Domain Boundaries 2.0 Problem Statement</title>
            <author fullname="Tim Wicinski" initials="T." surname="Wicinski">
         </author>
            <date day="10" month="July" year="2023"/>
            <abstract>
              <t>   Internet clients attempt to make inferences about the administrative
   relationship based on domain names.  Currently it is not possible to
   confirm organizational boundaries in the DNS.  Current mitigation
   strategies have there own issues.  This memo attempts to outline
   these issues.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-tjw-dbound2-problem-statement-01"/>
        </reference>
        <reference anchor="PSL" target="https://publicsuffix.org/">
          <front>
            <title>Public Suffix List</title>
            <author initials="" surname="Mozilla Foundation">
              <organization/>
            </author>
            <date year="2022"/>
          </front>
        </reference>
        <reference anchor="PSL-DIVISIONS" target="https://github.com/publicsuffix/list/wiki/Format#divisions">
          <front>
            <title>Public Suffix List format</title>
            <author initials="J." surname="Frakes">
              <organization/>
            </author>
            <date year="2022"/>
          </front>
        </reference>
        <reference anchor="AVOID-FRAGMENTATION" target="https://datatracker.ietf.org/doc/draft-ietf-dnsop-avoid-fragmentation/">
          <front>
            <title>Fragmentation Avoidance in DNS</title>
            <author initials="K." surname="Fujiwara">
              <organization/>
            </author>
            <author initials="P." surname="Vixie">
              <organization/>
            </author>
            <date year="2023"/>
          </front>
        </reference>
        <reference anchor="ACME-DNS-ACCOUNT-ID" target="https://datatracker.ietf.org/doc/draft-ietf-acme-dns-account-label/">
          <front>
            <title>ACME DNS Labeled with Account ID Challenge</title>
            <author initials="A. A." surname="Chariton">
              <organization/>
            </author>
            <author initials="A. A." surname="Omidi">
              <organization/>
            </author>
            <author initials="J." surname="Kasten">
              <organization/>
            </author>
            <author initials="F." surname="Loukos">
              <organization/>
            </author>
            <author initials="S. A." surname="Janikowski">
              <organization/>
            </author>
            <date year="2024"/>
          </front>
        </reference>
        <reference anchor="SUBDOMAIN-TAKEOVER" target="https://developer.mozilla.org/en-US/docs/Web/Security/Subdomain_takeovers">
          <front>
            <title>Subdomain takeovers</title>
            <author initials="" surname="Mozilla">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="UNDERSCORE-REGISTRY" target="https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#underscored-globally-scoped-dns-node-names">
          <front>
            <title>Underscored and Globally Scoped DNS Node Name</title>
            <author initials="" surname="IANA">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <section anchor="appendix">
      <name>Appendix</name>
      <t>Placeholder for things to put into appendix.</t>
      <section anchor="pitfalls">
        <name>Common Pitfalls</name>
        <t>A very common but unfortunate technique in use today is to employ a DNS TXT record and placing it at the exact domain name whose control is being validated (e.g., often the zone apex). This has a number of known operational issues. If the User has multiple application services employing this technique, it will end up with multiple DNS TXT records having the same owner name; one record for each of the services.</t>
        <t>Since DNS resource record sets are treated atomically, a query for the Validation Record will return all TXT records in the response. There is no way for the verifier to specifically query only the TXT record that is pertinent to their application service. The verifier must obtain the aggregate response and search through it to find the specific record it is interested in.</t>
        <t>Additionally, placing many such TXT records at the same name increases the size of the DNS response. If the size of the UDP response (UDP being the most common DNS transport today) is large enough that it does not fit into the Path MTU of the network path, this may result in IP fragmentation, which can be unreliable due to firewalls and middleboxes is vulnerable to various attacks (<xref target="AVOID-FRAGMENTATION"/>). Depending on message size limits configured or being negotiated, it may alternatively cause the DNS server to "truncate" the UDP response and force the DNS client to re-try the query over TCP in order to get the full response. Not all networks properly transport DNS over TCP and some DNS software mistakenly believe TCP support is optional (<xref target="RFC9210"/>).</t>
        <t>Other possible issues may occur. If a TXT record (or any other record type) is designed to be placed at the same domain name that is being validated, it may not be possible to do so if that name already has a CNAME record. This is because CNAME records cannot co-exist with other (non-DNSSEC) records at the same name. This situation cannot occur at the apex of a DNS zone, but can at a name deeper within the zone.</t>
        <t>When multiple distinct services specify placing Validation Records at the same owner name, there is no way to delegate an application specific domain Validation Record to a third party. Furthermore, even without delegation, an organization may have a shared DNS zone where they need to provide record level permissions to the specific division within the organization that is responsible for the application in question. This can't be done if all applications expect to find validation records at the same name.</t>
      </section>
      <section anchor="domain-boundaries">
        <name>Domain Boundaries</name>
        <t>The hierarchical structure of domain names do not necessarily define boundaries of ownership and administrative control (e.g., as discussed in <xref target="I-D.draft-tjw-dbound2-problem-statement"/>). Some domain names are "public suffixes" (<xref target="RFC9499"/>) where care may need to be taken when validating control. For example, there are security risks if an Application Service Provider can be tricked into believing that an attacker has control over ".co.uk" or ".com". The volunteer-managed Public Suffix List <xref target="PSL"/> is one mechanism available today that can be useful for identifying public suffixes.</t>
        <t>Future specifications may provide better mechanisms or recommendations for defining domain boundaries or for enabling organizational administrators to place constraints on domains and subdomains.</t>
      </section>
      <section anchor="interactions-with-dname">
        <name>Interactions with DNAME</name>
        <t>Domain control validation in the presence of a DNAME <xref target="RFC6672"/> is possible with caveats. Since a DNAME record redirects the entire subtree of names underneath the owner of the DNAME, it is not possible to place a Validation Record under the DNAME owner itself. It would have to be placed under the DNAME target name, since any lookups for a name under the DNAME owner will be redirected to the corresponding name under the DNAME target.</t>
      </section>
    </section>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Thank you to Tim Wicinski, John Levine, Daniel Kahn Gillmor, Amir Omidi, Tuomo Soini, Ben Kaduk and many others for their feedback and suggestions on this document.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAFQJxmcAA71963Ybx5XufzxFDfTD5ASAKInWSJo4KzBJOYwlkoeg7MnK
ZMkFoAB02OhCuroJwlx8l/Ms58nOvtWlgeYllxkvxyGB7qpdu3bt/e1bsd/v
d6qsys0H1T22S50V6sgWVWlz9ZPOs6muMluo2mXFXB2fjbodPR6X5ua5T0/t
pNBLGHxa6lnVz0w1608LZ1f9Kb3evzFlNssm9GK/MpNFkf2tNq6f68q4qgNf
mLktNx/UeLLqdLJV+UFVZe2q1wcH7w9ed67NZm3L6Qd1WlSmLEzVP8aJOh1X
6WL6Vee2gMk3xsEHpdFLePDk6mPHLXVZff1bbWGSD6qwnVX2Qf25spOecraE
J2cOftos8Ye/dDq6rha2/NBR/Y6Cf7ICXhoN1EgvsjF9wmscLbIbXSQf23Ku
i+xXWtwH9X2pb4wa2Vm11qWhBwzwIP+gHL14revc4bu/n+PHg4lddran/EMN
3GlMWS+B4/Hj5pQjnRs3s+Vkazp8/KFZLgbqZ1sDN10yzwXQ1vi4Oc8wuzFF
OsUKnh+s+fnfa/x2kNnmPCcDdbaZl/IeT3NSZtfpp1uzXGsYXV2hlNjczjPj
0jlBkq5/gxL2+4JGGMDbzSmvYGnZBH68zpJJr7Jl8+PmrEf2Fv63XNaFiGlj
0uqv6wHNmXCzsOUSnrwxIDHq8uPRq4M3h/Lj61ev3suP7179h//0/Zu38GMn
K2bpm/zu4dvD8Mvhwbu38Zc3h2/CL+++/fbb8Mv7168Owi9v3/7H6/jN4fv3
/Mtp/3jAZxJW0J+ObV1MX/dXpR3nZtmH01OZpSkqoAqfvhh94tfwH68uLupx
nk3UqJ7Nslv1KXNVNzwDmgAeeX3w+nX4KByi8E+fd+Wz/TXLc60+Ig3E4TiV
Luem+qAWVbVyH16+XNGUjmbE7X0ZyOsfn/50Ojo9Pxs9h1DFjP7H6P3jQH0s
9bUIX0pm19M5z6pFPUZpaJD8Moe5X66z6+zlRyLgxTS7yRzKVJdXMvzp/PS4
//Fy+MPnk7Or4RUsaHc9MPscN4e17fDGguItJgaoY6W7s6g3Ty/qR1hU/dcM
NJPe/RJUwk/ZbWYe3BeYSVelnlybkk4D7Q3o/pc7al8jtf1ZugLZxOHR55M+
0N8fHh2dfzm76p8e7y4dH8JFqk96bHIzVWvgtBpOJiA7lTo9VkcLneemmJsW
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

-->

</rfc>
