<?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.36 (Ruby 3.1.2) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-dnsop-domain-verification-techniques-02" category="bcp" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.17.4 -->
  <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-02"/>
    <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>
    <date year="2023" month="July" day="10"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 114?>

<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 requester's domain. There is wide variation in the details of these methods today. This document proposes 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>
    <?line 118?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>Many providers of internet services need domain owners to prove that they control a particular DNS domain before the provider can operate services for or grant some privilege to that domain. For instance, certificate authorities (CAs) ask requesters of TLS certificates to prove that they operate the domain they are requesting the certificate for. Providers generally allow for several different ways of proving control of a domain. In practice, DNS-based methods take the form of the 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 provider can query for. Generally only one temporary DNS record is sufficient for proving domain ownership, although sometimes the DNS record must be kept in the zone to prove continued ownership of the domain.</t>
      <t>This document describes pitfalls associated with some common practices using DNS-based techniques deployed today, and recommends using TXT based domain control validation which is time-bound and targeted to the service. The <xref target="appendix"/> includes a more detailed survey of different methods used by a set of application service providers.</t>
      <t>Other techniques such as email or HTTP(S) based validation are out-of-scope.</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>
          <tt>Validation record</tt>: the DNS record that is used to prove ownership of a domain. It typically contains an unguessable value generated by the provider which serves as a challenge. The provider looks for the validation record in the zone of the domain being verified and checks if it contains the unguessable value.</li>
        <li>
          <tt>Provider</tt>: an internet-based provider of a service, for e.g., a Certificate Authority or a service that allows for user-controlled websites. These services often require a user to verify that they control a domain.</li>
        <li>
          <tt>Random Token</tt>: a random value that uniquely identifies the DNS domain control validation challenge, defined in <xref target="random-token"/>.</li>
      </ul>
    </section>
    <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. This has a number of known operational issues. If the domain owner uses multiple application services using this technique, it will end up deploying a DNS TXT record "set" at the domain name, containing one TXT 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 surgically 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 response is large enough that it does not fit into a single DNS UDP packet (UDP being the most common DNS transport today), this may result in fragmentation, which often does not work reliably on the Internet today due to firewalls and middleboxes, and also is vulnerable to various attacks (<xref target="AVOID-FRAGMENTATION"/>). Depending on message size limits 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 place 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 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>
    </section>
    <section anchor="scope-of-validation">
      <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 domain owner need to clearly specify and understand whether the validation request is for a single hostname or for the entire domain 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 request is clear about whether it is for a single host or a wildcard domain. Unfortunately, the ACME protocol's DNS challenge mechanism (<xref target="DNS-01"/>) does not appear to 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 domain owner 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. These 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>
      <section anchor="format">
        <name>Validation Record Format</name>
        <section anchor="name">
          <name>Name</name>
          <t>The RECOMMENDED format is application-specific underscore prefix labels. Domain Control Validation records are constructed by the provider by prepending the label "<tt>_&lt;PROVIDER_RELEVANT_NAME&gt;-challenge</tt>" to the domain name being validated (e.g. "_foo-challenge.example.com"). The prefixed "_" is used to avoid collisions with existing hostnames.</t>
        </section>
        <section anchor="random-token">
          <name>Random Token</name>
          <t>A unique token used in the challenge. It should be a random value with the following properties:</t>
          <ol spacing="normal" type="1"><li>MUST have at least 128 bits of entropy.</li>
            <li>base64url (<xref section="5" sectionFormat="comma" target="RFC4648"/>) encoded.</li>
          </ol>
          <t>See <xref target="RFC4086"/> for additional information on randomness requirements.</t>
          <t>This random token is placed in the RDATA as described in the rest of this section.</t>
        </section>
      </section>
      <section anchor="txt-record">
        <name>TXT Record</name>
        <t>The RECOMMENDED method of doing DNS-based domain control validation is to use DNS TXT records. 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 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[
_foo-challenge.example.com.  IN   TXT  "3419...3d206c4"
]]></artwork>
        <t>If a provider has an application-specific need to have multiple validations for the same label, multiple prefixes can be used:</t>
        <artwork><![CDATA[
_feature1._foo-challenge.example.com.  IN   TXT  "3419...3d206c4"
]]></artwork>
        <t>This again allows the 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). Whether or not multiple validation records can exist for the same domain is up to the implementation.</t>
        <t>Consumers of the provider services need to relay information from a provider's website to their local DNS administrators. The exact DNS record type, content and location is often not clear when the DNS administrator receives the information, especially to consumers who are not DNS experts. Providers SHOULD offer detailed help pages, that are accessible without needing a login on the provider website, as the DNS administrator often has no login account on the provider service website. Similarly, for clarity, the exact and full DNS record (including a Fully Qualified Domain Name) to be added SHOULD be provided along with help instructions.</t>
        <section anchor="metadata">
          <name>Metadata For Expiry</name>
          <t>Providers MUST provide clear instructions on when a validation record can be removed. These instructions SHOULD be encoded in the RDATA via comma-separated ASCII key-value pairs <xref target="RFC1464"/>, using the key "expiry" to hold a time after which it is safe to remove the validation record. If this key-value format is used, the verification token should use the key "token". For example:</t>
          <artwork><![CDATA[
_foo-challenge.example.com.  IN   TXT  "token=3419...3d206c4,expiry=2023-02-08T02:03:19+00:00"
]]></artwork>
          <t>Alternatively, if the record should never expire (for instance, if it may be checked periodically by the provider) and should not be removed, the key "expiry" can be set to have value "never".</t>
          <artwork><![CDATA[
_foo-challenge.example.com.  IN   TXT  "token=3419...3d206c4,expiry=never"
]]></artwork>
          <t>The "expiry" key MAY be omitted in cases where the provider has clarified the record expiry policy out-of-band (<xref target="github"/>).</t>
          <artwork><![CDATA[
_foo-challenge.example.com.  IN   TXT  "token=3419...3d206c4"
]]></artwork>
          <t>Note that this is semantically the same as:</t>
          <artwork><![CDATA[
_foo-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>
      <section anchor="cname-record">
        <name>CNAME Record</name>
        <t>CNAME records MAY be used instead of TXT records, but they should not be placed at the same domain name that is being validated. This is for the same reason already cited in <xref target="pitfalls"/>. CNAME records cannot co-exist with other data, and there may already be other record types that exist at the domain name. Instead, as with the TXT record recommendation, an application specific label should be added as a subdomain of the domain to be verified. This ensures that the CNAME does not collide with other record types. In practice, many application services that employ CNAMEs today use a random subdomain label, which also works to avoid collisions. But adding an application specific component makes it easier for the domain owner to keep track of why and for what service a validation record has been deployed.</t>
        <t>Note that some DNS implementations permit the deployment of CNAME records co-existing with other record types. These implementations are in violation of the DNS protocol. Furthermore, they can cause resolution failures in unpredictable ways depending on the behavior of DNS resolvers, the order in which query types for the name are processed etc. In short, they cannot work reliably and these implementations should be fixed.</t>
        <section anchor="delegated">
          <name>Delegated Domain Control Validation</name>
          <t>CNAME records enable delegated domain control validation, which lets the user delegate the domain control validation process for their domain to an intermediary without having to hand over full DNS access. The intermediary provides the user with a CNAME record to add for the domain and provider being validated that points to the intermediary's DNS, where the actual validation TXT record is placed. The record name and random tokens are generated as in <xref target="format"/>. For example:</t>
          <artwork><![CDATA[
_foo-challenge.example.com.  IN   CNAME  "<random-token-given-by-intermediary>.intermediarydns.com"
]]></artwork>
          <t>The intermediary then adds the actual validation record:</t>
          <artwork><![CDATA[
<random-token-given-by-intermediary>.intermediarydns.com. TXT "<random-token-given-by-service>"
]]></artwork>
          <t>Such a setup is especially useful when the provider wants to periodically re-issue the challenge. CNAMEs allow automating the renewal process by letting the intermediary place the random token in their DNS instead of needing continuous write access to the user's DNS.</t>
          <t>Importantly, the CNAME record also contains a random token which proves to the intermediary that example.com is controlled by the user.</t>
          <t>See <xref target="delegated-examples"/> for examples.</t>
        </section>
      </section>
      <section anchor="time-bound-checking">
        <name>Time-bound checking</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 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>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.</t>
      </section>
      <section anchor="dname">
        <name>DNAME</name>
        <t>Domain control validation in the presence of a DNAME <xref target="RFC6672"/> is theoretically possible. 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="security-considerations">
      <name>Security Considerations</name>
      <t>A malicious service that promises to deliver something after domain control validation could surreptitiously ask another service provider to start processing or sending mail for the target domain and then present the victim domain administrator with this DNS TXT record pretending to be for their service. Once the administrator 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 replay this without the DNS administrator noticing this. Both the provider and the service being authenticated and authorized should be unambiguous from the TXT record owner name and RDATA content to prevent malicious services from misleading the domain owner into certifying a different provider or service.</t>
      <t>A domain owner SHOULD sign their DNS zone using DNSSEC <xref target="RFC9364"/> to protect validation records against DNS spoofing attacks.</t>
      <t>DNSSEC validation SHOULD be performed by service providers that verify validation records they have requested to be deployed.  If no DNSSEC support is detected for the domain owner zone, or if DNSSEC validation cannot be performed, 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, 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="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="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="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>
      </references>
      <references>
        <name>Informative References</name>
        <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="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="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="DNS-01" target="https://letsencrypt.org/docs/challenge-types/#dns-01-challenge">
          <front>
            <title>Challenge Types: DNS-01 challenge</title>
            <author initials="" surname="Let's Encrypt">
              <organization/>
            </author>
            <date year="2020"/>
          </front>
        </reference>
        <reference anchor="LETSENCRYPT-90-DAYS-RENEWAL" target="https://letsencrypt.org/2015/11/09/why-90-days.html">
          <front>
            <title>Why ninety-day lifetimes for certificates?</title>
            <author initials="" surname="Let's Encrypt">
              <organization/>
            </author>
            <date year="2015"/>
          </front>
        </reference>
        <reference anchor="GOOGLE-WORKSPACE-TXT" target="https://support.google.com/a/answer/2716802">
          <front>
            <title>TXT record values</title>
            <author initials="" surname="Google">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="CLOUDFLARE-DELEGATED" target="https://blog.cloudflare.com/introducing-dcv-delegation/">
          <front>
            <title>Auto-renew TLS certificates with DCV Delegation</title>
            <author initials="" surname="Google">
              <organization/>
            </author>
            <date year="2023"/>
          </front>
        </reference>
        <reference anchor="GOOGLE-WORKSPACE-CNAME" target="https://support.google.com/a/answer/112038">
          <front>
            <title>CNAME record values</title>
            <author initials="" surname="Google">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="DOCUSIGN-CNAME" target="https://support.docusign.com/s/document-item?rsc_301=&amp;bundleId=rrf1583359212854&amp;topicId=gso1583359141256_1.html">
          <front>
            <title>Claim a Domain</title>
            <author initials="" surname="DocuSign Admin for Organization Management">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ACM-CNAME" target="https://docs.aws.amazon.com/acm/latest/userguide/dns-validation.html">
          <front>
            <title>Option 1: DNS Validation</title>
            <author initials="" surname="AWS">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="GITHUB-TXT" target="https://docs.github.com/en/github/setting-up-and-managing-organizations-and-teams/verifying-your-organizations-domain">
          <front>
            <title>Verifying your organization's domain</title>
            <author initials="" surname="GitHub">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="ATLASSIAN-VERIFY" target="https://support.atlassian.com/user-management/docs/verify-a-domain-to-manage-accounts/#Verify-over-DNS">
          <front>
            <title>Verify over DNS</title>
            <author initials="" surname="Atlassian">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <?line 265?>

<section anchor="appendix">
      <name>Appendix</name>
      <t>A survey of several different methods deployed today for DNS based domain control validation follows.</t>
      <section anchor="survey-of-techniques">
        <name>Survey of Techniques</name>
        <section anchor="txt-based">
          <name>TXT based</name>
          <t>TXT records is usually the default option for domain control validation. The service provider asks the user to add a DNS TXT record (perhaps through their domain host or DNS provider) at the domain with a certain value. Then the service provider does a DNS TXT query for the domain being verified and checks that the correct value is present. For example, this is what a DNS TXT record could look like for a provider Foo:</t>
          <artwork><![CDATA[
example.com.   IN   TXT   "237943648324687364"
]]></artwork>
          <t>Here, the value "237943648324687364" serves as the randomly-generated TXT value being added to prove ownership of the domain to Foo provider. Note that in this construction provider Foo would have to query for all TXT records at "example.com" to get the validating record. Although the original DNS protocol specifications did not associate any semantics with the DNS TXT record, <xref target="RFC1464"/> describes how to use them to store attributes in the form of ASCII text key-value pairs for a particular domain. In practice, there is wide variation in the content of DNS TXT records used for domain control validation, and they often do not follow the key-value pair model. Even so, the RDATA <xref target="RFC1034"/> portion of the DNS TXT record has to contain the value being used to verify the domain. The value is usually a Random Token in order to guarantee that the entity who requested that the domain be verified (i.e. the person managing the account at Foo provider) is the one who has (direct or delegated) access to DNS records for the domain. After a TXT record has been added, the service provider will usually take some time to verify that the DNS TXT record with the expected token exists for the domain. The generated token typically expires in a few days.</t>
          <t>Some providers use a prefix of <tt>_PROVIDER_NAME-challenge</tt> in the Name field of the TXT record challenge. For ACME, the full Host is <tt>_acme-challenge.&lt;YOUR_DOMAIN&gt;</tt>. Such patterns are useful for doing targeted domain control validation. The ACME protocol (<xref target="RFC8555"/>) has a challenge type <tt>DNS-01</tt> that lets a user prove domain ownership. In this challenge, an implementing CA asks you to create a TXT record with a randomly-generated token at <tt>_acme-challenge.&lt;YOUR_DOMAIN&gt;</tt>:</t>
          <artwork><![CDATA[
_acme-challenge.example.com.  IN  TXT "cE3A8qQpEzAIYq-T9DWNdLJ1_YRXamdxcjGTbzrOH5L"
]]></artwork>
          <t><xref target="RFC8555"/> (section 8.4) places requirements on the Random Token.</t>
          <section anchor="lets-encrypt">
            <name>Let's Encrypt</name>
            <t>The ACME example in <xref target="txt-based"/> is implemented by Let's Encrypt <xref target="DNS-01"/>.</t>
          </section>
          <section anchor="google-workspace">
            <name>Google Workspace</name>
            <t><xref target="GOOGLE-WORKSPACE-TXT"/> asks the user to sign in with their administrative account and obtain their token as part of the setup process for Google Workspace. The verification token is a 68-character string that begins with "google-site-verification=", followed by 43 characters. Google recommends a TTL of 3600 seconds. The owner name of the TXT record is the domain or subdomain name being verified.</t>
          </section>
          <section anchor="github">
            <name>GitHub</name>
            <t>GitHub asks you to create a DNS TXT record under <tt>_github-challenge-ORGANIZATION.&lt;YOUR_DOMAIN&gt;</tt>, where ORGANIZATION stands for the GitHub organization name <xref target="GITHUB-TXT"/>. The code is a numeric code that expires in 7 days.</t>
          </section>
        </section>
        <section anchor="cname-examples">
          <name>CNAME based</name>
          <section anchor="docusign">
            <name>DocuSign</name>
            <t><xref target="DOCUSIGN-CNAME"/> asks the user to add a CNAME record with the "Host Name" set to be a 32-digit random value pointing to <tt>verifydomain.docusign.net.</tt>.</t>
          </section>
          <section anchor="google-workspace-1">
            <name>Google Workspace</name>
            <t><xref target="GOOGLE-WORKSPACE-CNAME"/> lets you specify a CNAME record for verifying domain ownership. The user gets a unique 12-character string that is added as "Host", with TTL 3600 (or default) and Destination an 86-character string beginning with "gv-" and ending with ".domainverify.googlehosted.com.".</t>
          </section>
          <section anchor="delegated-examples">
            <name>Delegated Domain Control Validation</name>
            <section anchor="cloudflare">
              <name>Cloudflare</name>
              <t>In order to be issued a TLS cert from a Certificate Authority like Let’s Encrypt, the requester needs to prove that they control the domain. Typically, this is done via the <xref target="DNS-01"/> challenge. Let’s Encrypt only issues certs with a 90 day validity period for security reasons <xref target="LETSENCRYPT-90-DAYS-RENEWAL"/>. This means that after 90 days, the DNS-01 challenge has to be re-done and the random token has to be replaced with a new one. Doing this manually is error-prone. Content Delivery Networks like Cloudflare offer to automate this process using a CNAME record in the user's DNS that points to the validation record in Cloudflare's zone <xref target="CLOUDFLARE-DELEGATED"/>.</t>
            </section>
            <section anchor="aws-certificate-manager-acm">
              <name>AWS Certificate Manager (ACM)</name>
              <t>AWS Certificate Manager <xref target="ACM-CNAME"/> allows delegated domain control validation <xref target="delegated"/>. The record name for the CNAME looks like:</t>
              <artwork><![CDATA[
 `_<random-token1>.example.com.   IN   CNAME _<random-token2>.acm-validations.aws.`
]]></artwork>
              <t>The CNAME points to:</t>
              <artwork><![CDATA[
 `_<random-token2>.acm-validations.aws.   IN   TXT <random-token3>`
]]></artwork>
              <t>Here, the random tokens are used for the following:</t>
              <ul spacing="normal">
                <li>
                  <tt>&lt;random-token1&gt;</tt>: Unique sub-domain, so there's no clashes when looking up the validation record.</li>
                <li>
                  <tt>&lt;random-token2&gt;</tt>: Proves to ACM that the requester controls the DNS for the requested domain.</li>
                <li>
                  <tt>&lt;random-token3&gt;</tt>: The actual token being verified.</li>
              </ul>
              <t>Note that if there are more than 5 CNAMEs being chained, then this method does not work.</t>
            </section>
          </section>
          <section anchor="atlassian">
            <name>Atlassian</name>
            <t>Some services ask the DNS record to exist in perpetuity <xref target="ATLASSIAN-VERIFY"/>. If the record is removed, the user gets a limited amount of time to re-add it before they lose domain validation status.</t>
          </section>
        </section>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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
AA==

-->

</rfc>
