<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.14 (Ruby 3.1.2) -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-dnsop-domain-verification-techniques-00" category="info" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.8.0 -->
  <front>
    <title abbrev="Domain Verification Techniques">Survey of Domain Verification Techniques using DNS</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-dnsop-domain-verification-techniques-00"/>
    <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="2022" month="July" day="28"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <t>Many services on the Internet need to verify ownership or control of a domain in the Domain Name System (DNS) <xref target="RFC1034"/> <xref target="RFC1035"/>. This verification is often done by requesting a specific DNS record to be visible in the domain. This document surveys various techniques in wide use today, the pros and cons of each, and proposes some 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/ShivanKaul/draft-sahib-domain-verification-techniques"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>Many providers of internet services need domain owners to prove that they control a particular domain before they can operate a services or grant some privilege to the associated 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 domain control. This document describes common practices and pitfalls associated with using DNS based techniques for domain verification. Other techniques such as email or HTTP(S) based verification are out-of-scope.</t>
      <t>In practice, DNS-based verification takes the form of the provider generating a random value visible only to the requester, and then asking the requester to create a DNS record containing this random value 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>Based on the survey, this document also recommends using TXT-based domain verification which is time-bound and targeted to the 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>
      <t>Provider: 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.</t>
    </section>
    <section anchor="verification-techniques">
      <name>Verification Techniques</name>
      <section anchor="txt-based">
        <name>TXT based</name>
        <t>TXT record-based DNS domain verification is usually the default option for DNS verification. 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 value exists. For example, this is what a DNS TXT verification record could look like:</t>
        <artwork><![CDATA[
example.com.   IN   TXT   "foo-verification=bar-237943648324687364"
]]></artwork>
        <t>Here, the value "bar-237943648324687364" for the attribute "foo-verification" serves as the randomly-generated TXT value being added to prove ownership of the domain to Foo provider. 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 verification, and they often do not follow the key-value pair model. Even so, the rdata portion of the DNS TXT record has to contain the value being used to verify the domain. The value is usually a randomly-generated 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. The generated token typically expires in a few days. The TXT record is placed at the domain being verified ("example.com" in the example above). 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. Some providers expire the code after a set amount of time.</t>
        <t>As an example, 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 value.</t>
      </section>
      <section anchor="cname-based">
        <name>CNAME based</name>
        <t>Less commonly than TXT record verification, service providers also provide the ability to verify domain ownership via CNAME records. One reason for using CNAME is for the case where the user cannot create TXT records. One common reason is that the domain name may already have CNAME record that aliases it to a 3rd-party target domain. CNAMEs have a technical restriction that no other record types can be placed along side them at the same domain name (<xref target="RFC1034"/>, Section 3.6.2). The CNAME based domain verification method typically uses a randomized label prepended to the domain name being verified. For example:</t>
        <artwork><![CDATA[
_random-token1.example.com.   IN   CNAME _random-token2.validation.com.`
]]></artwork>
      </section>
      <section anchor="common-patterns">
        <name>Common Patterns</name>
        <section anchor="name">
          <name>Name</name>
          <t>Some providers use a suffix 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 verification, as discussed in <xref target="targeted-domain-verification"/> because if the provider knows what it is looking for (domain in the case of ACME) it can specifically do a DNS query for that TXT record, as opposed to having to do a TXT query for the apex.</t>
          <t>ACME does the same name construction for CNAME records.</t>
        </section>
        <section anchor="rdata">
          <name>RDATA</name>
          <t>One pattern that quite a few providers follow is constructing the rdata of the TXT DNS record in the form of <tt>PROVIDER-SERVICE-domain-verification=</tt> followed by the random value being checked for. This is in accordance with <xref target="RFC1464"/> which mandates that attributes must be stored as key-value pairs.</t>
        </section>
      </section>
    </section>
    <section anchor="recommendations">
      <name>Recommendations</name>
      <section anchor="targeted-domain-verification">
        <name>Targeted Domain Verification</name>
        <t>The TXT record being used for domain verification is most commonly placed at the domain name being verified. For example, if <tt>example.com</tt> is being verified, then the DNS TXT record will have <tt>example.com</tt> in the Name section. Unfortunately, this practice does not scale very well. Many services are now attempting to verify domain names, causing many of these TXT records to be placed at that same location at the top of the domain (the APEX).</t>
        <t>When a DNS administrator sees 15 DNS TXT records for their domain based on only random letters, they can no longer determine which service or vendor the DNS TXT records were added for. This causes administrators to leave all DNS TXT records in there, as they want to avoid breaking a service. Over time, the domain ends up with a lot of unnecessary, unknown and untraceable DNS TXT records.</t>
        <t>It is recommended that providers use a prefix (eg "_foo.example.com") instead of using the top of the domain ("APEX") directly, such as:</t>
        <artwork><![CDATA[
_foo.example.com.  IN   TXT    "bar-237943648324687364"
]]></artwork>
        <t>An operational issue arises from the DNS protocol only being able to query for "all TXT records" at a single location: if multiple services all require TXT records, this can cause the DNS answer for TXT records to become very large. It has been observed that some well known domains had so many services deployed that their DNS TXT answer did not fit in a single UDP DNS packet. This results in fragmentation which is known to be vulnerable to various attacks <xref target="AVOID-FRAGMENTATION"/>. It can also lead to UDP packet truncation, causing a retry over TCP. Not all networks properly transport DNS over TCP and some DNS software mistakenly believe TCP support is optional <xref target="RFC9210"/>.</t>
        <t>A malicious service that promises to deliver something after domain verification 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.</t>
      </section>
      <section anchor="txt-vs-cname">
        <name>TXT vs CNAME</name>
        <t>CNAME records cannot co-exist with any other data. What happens when both a CNAME and other data such as a TXT record or NS record exist depends on the DNS implementation. But most likely, either the CNAME or the other records will be silently ignored. The user interface for adding a record might not check for this. It might also break in unexpected ways: if a CNAME is added for continuous authorization, and for another service a TXT record is added, the TXT record might work but the CNAME record might break.</t>
        <t>Another issue with CNAME records is that they MUST NOT point to another CNAME. But where this might be true in an initial deployment, if the target that the CNAME points to is changed from a non-CNAME record to a CNAME record, some DNS software might no longer resolve this as expected.</t>
        <t>Early web-based DNS administration tools did not always have the TXT record available in the menu for DNS record types, while CNAME would be available. However as many anti-spam measures now require TXT records, they are now widely supported. The CNAME method should only be used for delegating authorization to an actual subdomain, for example:</t>
        <artwork><![CDATA[
recruitment.example.com.   IN   CNAME   example.recruitment-vendor.com.
]]></artwork>
      </section>
      <section anchor="time-bound-checking">
        <name>Time-bound checking</name>
        <t>After domain verification is done, there is typically no need for the TXT or CNAME record to continue to exist as the presence of the domain-verifying 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 verifying DNS record once the verification is done and the service provider doing the verification should specify how long the verification will take (i.e. after how much time can the verifying DNS record be deleted).</t>
        <t>If a provider will use the DNS TXT record only for a one-time verification, they should clearly indicate this in the RDATA of the TXT record, so a DNS administrator at the target domain can easily spot an obsolete record in the future. For example:</t>
        <artwork><![CDATA[
_provider-token.example.com.   IN   TXT "type=activation_only expiry=2023-10-12 token=TOKENDATA"
]]></artwork>
        <t>If a provider requires the continued presence of the TXT record as proof that the domain owner is still authorizing the service, this should also be clear from the TXT record RDATA. For example:</t>
        <artwork><![CDATA[
_provider-service.example.com.   IN   TXT "type=continued_service expiry=never token=TOKENDATA"
]]></artwork>
      </section>
    </section>
    <section anchor="email-sending-authorization">
      <name>Email sending authorization</name>
      <t>Some vendors use a hosted service that wants to generate emails that appear to be from the customer. When a customer has deployed anti-spam meassures such as DKIM <xref target="RFC6376"/>, DMARC <xref target="RFC7489"/> or SPF <xref target="RFC7208"/>, the vendor's mail service needs to be added to the list of allowed mail servers. However, some customers might not want to give permission for a vendor to send emails from their entire domain. It is recommended that a vendor uses a subdomain. If the vendor's domain is example-vendor.com, and the customer domain is example-customer.com, the vendor could use the subdomain example-customer.example-vendor.com to send emails. Alternatively, the customer could delegate a subdomain example-vendor.example-customer.com to the vendoer for email sending, as those email addresses would have a stronger origin appearance of being emails send by the customer to their clients.</t>
      <t>Besides requiring proof of ownership of the domain, the customer needs to authorize the hosted service to send email on their behalf.</t>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <t>Both the provider and the service being authenticated and authorized should be obvious from the TXT content to prevent malicious services from misleading the domain owner into certifying a different provider or service.</t>
      <t>DNSSEC <xref target="RFC4033"/> can be employed by the domain owner to protect against domain name spoofing.</t>
    </section>
    <section anchor="operational-considerations">
      <name>Operational Considerations</name>
      <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 extremely detailed help pages, that are accessible without needing a login on the provider website, as the DNS adminstrator 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>
    <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.V. Mockapetris" initials="P.V." surname="Mockapetris">
              <organization/>
            </author>
            <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="RFC1035">
          <front>
            <title>Domain names - implementation and specification</title>
            <author fullname="P.V. Mockapetris" initials="P.V." surname="Mockapetris">
              <organization/>
            </author>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised specification of the protocol and format used in the implementation of the Domain Name System.  It obsoletes RFC-883. This memo documents the details of the domain name client - server communication.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1035"/>
          <seriesInfo name="DOI" value="10.17487/RFC1035"/>
        </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">
              <organization/>
            </author>
            <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">
              <organization/>
            </author>
            <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="RFC4033">
          <front>
            <title>DNS Security Introduction and Requirements</title>
            <author fullname="R. Arends" initials="R." surname="Arends">
              <organization/>
            </author>
            <author fullname="R. Austein" initials="R." surname="Austein">
              <organization/>
            </author>
            <author fullname="M. Larson" initials="M." surname="Larson">
              <organization/>
            </author>
            <author fullname="D. Massey" initials="D." surname="Massey">
              <organization/>
            </author>
            <author fullname="S. Rose" initials="S." surname="Rose">
              <organization/>
            </author>
            <date month="March" year="2005"/>
            <abstract>
              <t>The Domain Name System Security Extensions (DNSSEC) add data origin authentication and data integrity to the Domain Name System.  This document introduces these extensions and describes their capabilities and limitations.  This document also discusses the services that the DNS security extensions do and do not provide.  Last, this document describes the interrelationships between the documents that collectively describe DNSSEC.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4033"/>
          <seriesInfo name="DOI" value="10.17487/RFC4033"/>
        </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">
              <organization/>
            </author>
            <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="AVOID-FRAGMENTATION">
          <front>
            <title>Fragmentation Avoidance in DNS</title>
            <author fullname="Kazunori Fujiwara">
              <organization>Japan Registry Services Co., Ltd.</organization>
            </author>
            <author fullname="Paul Vixie">
              <organization>AWS Security</organization>
            </author>
            <date day="3" month="July" year="2022"/>
            <abstract>
              <t>   EDNS0 enables a DNS server to send large responses using UDP and is
   widely deployed.  Path MTU discovery remains widely undeployed due to
   security issues, and IP fragmentation has exposed weaknesses in
   application protocols.  Currently, DNS is known to be the largest
   user of IP fragmentation.  It is possible to avoid IP fragmentation
   in DNS by limiting response size where possible, and signaling the
   need to upgrade from UDP to TCP transport where necessary.  This
   document proposes to avoid IP fragmentation in DNS.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-dnsop-avoid-fragmentation-07"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC8555">
          <front>
            <title>Automatic Certificate Management Environment (ACME)</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes">
              <organization/>
            </author>
            <author fullname="J. Hoffman-Andrews" initials="J." surname="Hoffman-Andrews">
              <organization/>
            </author>
            <author fullname="D. McCarney" initials="D." surname="McCarney">
              <organization/>
            </author>
            <author fullname="J. Kasten" initials="J." surname="Kasten">
              <organization/>
            </author>
            <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="RFC6376">
          <front>
            <title>DomainKeys Identified Mail (DKIM) Signatures</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker">
              <organization/>
            </author>
            <author fullname="T. Hansen" initials="T." role="editor" surname="Hansen">
              <organization/>
            </author>
            <author fullname="M. Kucherawy" initials="M." role="editor" surname="Kucherawy">
              <organization/>
            </author>
            <date month="September" year="2011"/>
            <abstract>
              <t>DomainKeys Identified Mail (DKIM) permits a person, role, or organization that owns the signing domain to claim some responsibility for a message by associating the domain with the message.  This can be an author's organization, an operational relay, or one of their agents.  DKIM separates the question of the identity of the Signer of the message from the purported author of the message.  Assertion of responsibility is validated through a cryptographic signature and by querying the Signer's domain directly to retrieve the appropriate public key.  Message transit from author to recipient is through relays that typically make no substantive change to the message content and thus preserve the DKIM signature.</t>
              <t>This memo obsoletes RFC 4871 and RFC 5672.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="76"/>
          <seriesInfo name="RFC" value="6376"/>
          <seriesInfo name="DOI" value="10.17487/RFC6376"/>
        </reference>
        <reference anchor="RFC7208">
          <front>
            <title>Sender Policy Framework (SPF) for Authorizing Use of Domains in Email, Version 1</title>
            <author fullname="S. Kitterman" initials="S." surname="Kitterman">
              <organization/>
            </author>
            <date month="April" year="2014"/>
            <abstract>
              <t>Email on the Internet can be forged in a number of ways.  In particular, existing protocols place no restriction on what a sending host can use as the "MAIL FROM" of a message or the domain given on the SMTP HELO/EHLO commands.  This document describes version 1 of the Sender Policy Framework (SPF) protocol, whereby ADministrative Management Domains (ADMDs) can explicitly authorize the hosts that are allowed to use their domain names, and a receiving host can check such authorization.</t>
              <t>This document obsoletes RFC 4408.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7208"/>
          <seriesInfo name="DOI" value="10.17487/RFC7208"/>
        </reference>
        <reference anchor="RFC7489">
          <front>
            <title>Domain-based Message Authentication, Reporting, and Conformance (DMARC)</title>
            <author fullname="M. Kucherawy" initials="M." role="editor" surname="Kucherawy">
              <organization/>
            </author>
            <author fullname="E. Zwicky" initials="E." role="editor" surname="Zwicky">
              <organization/>
            </author>
            <date month="March" year="2015"/>
            <abstract>
              <t>Domain-based Message Authentication, Reporting, and Conformance (DMARC) is a scalable mechanism by which a mail-originating organization can express domain-level policies and preferences for message validation, disposition, and reporting, that a mail-receiving organization can use to improve mail handling.</t>
              <t>Originators of Internet Mail need to be able to associate reliable and authenticated domain identifiers with messages, communicate policies about messages that use those identifiers, and report about mail using those identifiers.  These abilities have several benefits: Receivers can provide feedback to Domain Owners about the use of their domains; this feedback can provide valuable insight about the management of internal operations and the presence of external domain name abuse.</t>
              <t>DMARC does not produce or encourage elevated delivery privilege of authenticated email.  DMARC is a mechanism for policy distribution that enables increasingly strict handling of messages that fail authentication checks, ranging from no action, through altered delivery, up to message rejection.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7489"/>
          <seriesInfo name="DOI" value="10.17487/RFC7489"/>
        </reference>
        <reference anchor="RFC9210">
          <front>
            <title>DNS Transport over TCP - Operational Requirements</title>
            <author fullname="J. Kristoff" initials="J." surname="Kristoff">
              <organization/>
            </author>
            <author fullname="D. Wessels" initials="D." surname="Wessels">
              <organization/>
            </author>
            <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="LETSENCRYPT" 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="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="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="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>
    <section anchor="appendix">
      <name>Appendix</name>
      <t>The survey done in this document found several varying methods for DNS domain verification techniques across providers. This Appendix lists them, for completeness.</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="LETSENCRYPT"/>.</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 verification 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 neme being verified.</t>
        <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="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. This fits under <xref target="targeted-domain-verification"/>.</t>
      </section>
      <section anchor="aws-certificate-manager-acm">
        <name>AWS Certificate Manager (ACM)</name>
        <t>To get issued a certificate by AWS Certificate Manager (ACM), you can create a CNAME record to verify domain ownership <xref target="ACM-CNAME"/>. The record name for the CNAME looks like:</t>
        <artwork><![CDATA[
 `_<random-token1>.example.com.   IN   CNAME _RANDOM-TOKEN.acm-validations.aws.`
]]></artwork>
        <t>Note that if there are more than 5 CNAMEs being chained, then this method does not work.</t>
      </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 verification status.</t>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
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
MCvZ5vxA38sKfNf/AcNnw/kcQwAA

-->

</rfc>
