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

<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 156?>

<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, Certification 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 in a way that 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>
          <t><tt>Validation record</tt>: the DNS record that is used to prove ownership of a domain name (<xref target="RFC8499"/>). 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 name being verified and checks if it contains the unguessable value.</t>
        </li>
        <li>
          <t><tt>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 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>User</tt>: the owner or operator of a domain in the DNS who needs to prove ownership of that domain to a provider.</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="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 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 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 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 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 create domain validation records at the same domain 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 share the domain name.</t>
      <t>This specification proposes the use of application-specific labels in the domain validation record to address these issues.</t>
    </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 domain owner 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 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. New applications should consider having different application names for different scopes, as described below in <xref target="scope-indication"/>. 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 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="RFC8499"/>) where care may need to be taken when validating control. For example, there are security risks if a 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. See <xref target="constraint-examples"/> for cases where DNS records can be used as constraints complementary to domain verification.</t>
      </section>
    </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="scope-indication">
          <name>Scope Indication</name>
          <t>For applications that may apply more broadly than to a single host name, the RECOMMENDED approach is to differentiate the application-specific underscore prefix labels to also include the scope (see #scope). In particular:</t>
          <ul spacing="normal">
            <li>
              <t>"<tt>_&lt;PROVIDER_RELEVANT_NAME&gt;-host-challenge.example.com</tt>" applies only to the specific host name of "example.com" and not to anything underneath it.</t>
            </li>
            <li>
              <t>"<tt>_&lt;PROVIDER_RELEVANT_NAME&gt;-wildcard-challenge.example.com</tt>" applies to all host names at the level immediately underneath "example.com". For example, it would apply to "foo.example.com" but not "example.com" nor "quux.bar.example.com"</t>
            </li>
            <li>
              <t>"<tt>_&lt;PROVIDER_RELEVANT_NAME&gt;-domain-challenge.example.com</tt>" applies to the entire domain "example.com" as well as its subdomains. For example, it would apply to all of "example.com", "foo.example.com", and "quux.bar.example.com"</t>
            </li>
          </ul>
        </section>
        <section anchor="random-token">
          <name>Random Token</name>
          <t>A unique token used in the challenge. It should be a random value issued between parties (provider to user, 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 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 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 provider's application specification.</t>
        <t>Consumers of the provider services need to relay information from a provider's website or APIs 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>
        <t>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.</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>When a 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>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" SHALL 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-records">
        <name>CNAME Records</name>
        <t>CNAME records MAY be used instead of TXT records, either for Delegated Domain Control Validation (<xref target="delegated"/>) or where specified by providers to support users who are unable to create TXT records.</t>
        <t>A provider supporting CNAME records MUST specify the use of an underscore-prefixed label (e.g., <tt>_foo-&lt;token&gt;</tt> or even the less-recommended <tt>_&lt;token&gt;</tt>) as a CNAME MUST 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, a provider 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.</t>
        <t>In practice, many providers that employ CNAMEs for domain control validation today use a random subdomain label, which also works to avoid collisions. But adding an provider-specific component in addition (such as <tt>_foo-&lt;RANDOM&gt;-challenge</tt>) would make 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="cname-dcv">
          <name>CNAME Records for Domain Control Validation</name>
          <t>A provider may specify using CNAME records instead of TXT records for Domain Control Validation. In this case, the target of the CNAME would contain the base16-encoded (or base32-encoded) random token followed by a suffix specified by the provider. For example:</t>
          <artwork><![CDATA[
_foo-challenge.example.com.  IN   CNAME <random-token>.dcv.provider.example.
]]></artwork>
        </section>
        <section anchor="delegated">
          <name>Delegated Domain Control Validation</name>
          <t>Separately, CNAME records also 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 gives the user 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 base16-encoded (or base32-encoded) random tokens are generated as in <xref target="format"/>. For example:</t>
          <artwork><![CDATA[
_foo-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. TXT "<provider-random-token>"
]]></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 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>
          <t>See <xref target="delegated-examples"/> for examples.</t>
        </section>
        <section anchor="multiple">
          <name>Domain Control Validation Supporting Multiple Intermediaries</name>
          <t>There are use-cases where a user may wish to simultaneously use multiple intermediaries or multiple independent accounts with a 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, providers may support prefixing the challenge with a label containing an unique account identifier of the form <tt>_&lt;identifier-token&gt;</tt> and following the requirements of <xref target="random-token"/>, specified as either base32 or base16 encoded. This identifier token should be stable over time and would be provided to the user by the 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>._foo-challenge.example.com.  IN   TXT  "3419...3d206c4"
]]></artwork>
          <t>or</t>
          <artwork><![CDATA[
_<identifier-token>._foo-challenge.example.com.  IN   CNAME  "<intermediary-random-token>.dcv.intermediary.example."
]]></artwork>
          <t>When performing validation, the provider would resolve the DNS name containing the appropriate identifier token.</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 as long as the user is still relying on the intermediary.</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>Amiguity 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 host name, 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>
      <t>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>
      <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 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 public suffix domains which are in the "PRIVATE" 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 public suffix domains to demonstrate control over their domain, such as to be added to the Public Suffix List (<xref target="psl-example"/>) 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>Providers SHOULD NOT allow verification of ownership for domains which are public suffixes in the "ICANN" division. For example, "_foo-challenge.co.uk" would not be allowed.</t>
          </li>
          <li>
            <t>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 anchor="sec-normative-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 anchor="sec-informative-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="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="RFC8659">
          <front>
            <title>DNS Certification Authority Authorization (CAA) Resource Record</title>
            <author fullname="P. Hallam-Baker" initials="P." surname="Hallam-Baker"/>
            <author fullname="R. Stradling" initials="R." surname="Stradling"/>
            <author fullname="J. Hoffman-Andrews" initials="J." surname="Hoffman-Andrews"/>
            <date month="November" year="2019"/>
            <abstract>
              <t>The Certification Authority Authorization (CAA) DNS Resource Record allows a DNS domain name holder to specify one or more Certification Authorities (CAs) authorized to issue certificates for that domain name. CAA Resource Records allow a public CA to implement additional controls to reduce the risk of unintended certificate mis-issue. This document defines the syntax of the CAA record and rules for processing CAA records by CAs.</t>
              <t>This document obsoletes RFC 6844.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8659"/>
          <seriesInfo name="DOI" value="10.17487/RFC8659"/>
        </reference>
        <reference anchor="RFC8499">
          <front>
            <title>DNS Terminology</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="A. Sullivan" initials="A." surname="Sullivan"/>
            <author fullname="K. Fujiwara" initials="K." surname="Fujiwara"/>
            <date month="January" year="2019"/>
            <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 sometimes 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 obsoletes RFC 7719 and updates RFC 2308.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="219"/>
          <seriesInfo name="RFC" value="8499"/>
          <seriesInfo name="DOI" value="10.17487/RFC8499"/>
        </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>
        <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="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="Cloudflare">
              <organization/>
            </author>
            <date year="2023"/>
          </front>
        </reference>
        <reference anchor="AKAMAI-DELEGATED" target="https://techdocs.akamai.com/property-mgr/reference/onboard-a-secure-by-default-property">
          <front>
            <title>Onboard a secure by default property</title>
            <author initials="" surname="Akamai Technologies">
              <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>
        <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>
      </references>
    </references>
    <?line 376?>

<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 anchor="psl-example">
            <name>Public Suffix List</name>
            <t>The Public Suffix List (<xref target="PSL"/>) asks for owners of private domains to authenticate by creating a TXT record containing the pull request URL for adding the domain to the Public Suffix List.  For example, to authenticate "example.com" submitted under pull request 100, a requestor would add:</t>
            <artwork><![CDATA[
_psl.example.com.  IN TXT "https://github.com/publicsuffix/list/pull/100"
]]></artwork>
          </section>
        </section>
        <section anchor="cname-examples">
          <name>CNAME based</name>
          <section anchor="cname-dcv-examples">
            <name>CNAME for Domain Control Validation</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>
          <section anchor="delegated-examples">
            <name>Delegated Domain Control Validation</name>
            <section anchor="content-delivery-networks-cdns-akamai-and-cloudflare">
              <name>Content Delivery Networks (CDNs): Akamai and Cloudflare</name>
              <t>In order to be issued a TLS cert from a Certification 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 Akamai and Cloudflare offer to automate this process using a CNAME record in the user's DNS that points to the validation record in the CDN's zone (<xref target="AKAMAI-DELEGATED"/> and <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>
                  <t><tt>&lt;random-token1&gt;</tt>: Unique sub-domain, so there's no clashes when looking up the validation record.</t>
                </li>
                <li>
                  <t><tt>&lt;random-token2&gt;</tt>: Proves to ACM that the requester controls the DNS for the requested domain.</t>
                </li>
                <li>
                  <t><tt>&lt;random-token3&gt;</tt>: The actual token being verified.</t>
                </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 anchor="constraint-examples">
            <name>Constraints on Domains and Subdomains</name>
            <section anchor="caa-records">
              <name>CAA records</name>
              <t>While the ACME protocol (<xref target="RFC8555"/>) specifies a way to demonstrate ownership over a given domain, Certification Authorities are required to use it in-conjunction with <xref target="RFC8659"/> that specifies CAA records. CAA allows a domain owner to apply policy across a domain and its subdomains to limit which Certification Authorities may issue certificates.</t>
            </section>
          </section>
        </section>
      </section>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA719e3PbRrbn//oUWLrqRtohqJft2N4kdxhJdnRHljSibI93
7pQNEk0SIxBg0IBkRuWq/Rr79faT7Hn1C4BsT3J3UzMJRQLo7tOnz/mdJ+I4
3qqzOlcvosFxuUqyIjoqi7oq8+htkmdpUmdlETU6KxbR8flksJVMp5W6/dar
03JWJCt4eFol8zrOVD2P00KX6zil2+NbVWXzbEY3xrWaLYvs10bpeO9wC75U
i7LavIims/XWVrauXkR11ej6YG/v+d7B1o3a3JVV+iI6LWpVFaqOj3GQrS1d
J0X6IcnLAgbeKA1fVCpZwYUn1y+39Cqp6g+/NmWt9IuoKLfW2Yvo73U5G0a6
rODKuYZPmxV++MfWVtLUy7J6sRXFWxH8kxVw02QUTZJlNqVveH2TZXabFN7X
ZbVIiuw3WtiL6OcquVXRpJzXd0ml6AIF689fRJpuvEmaXOO9f17g16NZudpq
D/lLA5QJhmxWQG33dTjkJMmVnpfVrDUcXv7QKJej6F3ZADW1N84lzC34Ohxn
nN2qwh9iDdeP7vj6Pyf46ygrw3FORtH5ZlHJfTzMSZXd+N+2RrlJ4OnRNXJI
mZeLTGl/TOCimz8hd/25oCeM4O6traKsVnD/rYLti65eHu3vHT6Wjwf7+8/N
t4+fmm+f7X9vPj4/xG+3smLuP4R+erz37Kn74/Dxof3j2ZMnT+wfzw/29+wf
T59+f+Aue/rkufvj8XP3x+HhofxxGh+P+NDU/7yL02nZFOlBvK7Kaa5WMbB4
rVaqqGGKePXl5Ixvw3/Meb5spnk2iybNfJ59is4yXQ/sNXBU4ZKDvYMD+5Xl
dPtPzLv1uvwty/MkeolzoP1wQyXVQtUvomVdr/WL3d01DalpRNyDXTu9+Pj0
7enk9OJ88i0TjZjqv2++/zGKXlbJjXCIP82Bmeciq5fNFA9AMOXdHMbevctu
st2XNIFHaXabaVixHvBKxm8vTo/jl1fjV69Pzq/H17Cg7npg9AVuDovD8W0J
krGYKZgdS8XOog6/vqi/wKKaf2YgPpLuj3Bu32afMvXgvsBISV0lsxtVjfCY
0N6AcN7tyOUEZxvP/RXIJsLU47397mqPlkmeq2KhouvNGmUqXxjNzPc9C977
+oLPVP2djk6KWbVZ1w8uLFe1VnyNWZPetSPHNc5o9xEsDWYU2+95QWcn15OT
86Or95fX8fO9+Hj8fhJfnZyfvBv3HKZ3y01UZKBlNnGabKI8m6s6WymNnBrN
VFWzGlP637vL3X/y/2q5+Ozd/f3dvee7d8sNrgImp0fLepXzGl9dXLw6O4nf
XVz9ZXI5PjqJr/923V0cfBlVagbaNLpNctC/g69P+FVZLvKHOU436zWo09GC
LqOTluwmhb5T1e7B9/tPn4EGp5uPzi7eHL88G1+dxMcnZyevxtcnx90Zjpu6
jEGwq7vo+mwSEDy6g8McHR+9jY5VrhbEsr/vjB3lZZPOc6Oh+5Y1Bd0zmtnr
aF0ZIqC0mQHqidPZbZzaacjJGf9l/Hp8+qXlXRTTMgHqJ5FWs6ZS0XQTpWoO
mrSOQOavYbmb37emhxRn3+IQf+EBGiV0E4tHGT1eLapdwEQKNmGmdkuecJzE
POF4CueCJxybWx7gwKPz8euTHjGCX///5ML9/YO9w2ci2y6O3kxOX50/OLk8
yVawOwx6v2Fex+WsmWQLkP7pCsQ+CokLD9BEr5MiWZAG/+rcYUcAUS8Kmr1G
CdfgfXEGCODfKz37cLi3/+O/TUE35+o0/bGq5vtPnh0ePgH8cfDsyeN/q8t1
NoMfFrqUH/Yf7x88efph35MT46PXD639Yk0z3ifB7uH8b6DC+N3kYZVEjHYH
/18lv5W8umS22s3xTNe7jVbVoslStYvC+9aO6su20+tf3vzcL9Heol2xQTtk
UzZVACZBzKbfuo2vsvqXZvrlNXhYQhWCLHa1qmuUBw1o1CKNV7jd+Lc/EU0/
1WCa6N1bM98Y59u6jKcrG3V9Np5MTsfn8duTq9OX7x9aelTCI0O48fA21Xmi
dZY8jOsMLybmSlou7hEvjTiZlS+vBASDWHggt/mSOJnNAEHWoI95ijFOMYYp
8somb34+vgA5eR5fj/9ycgHL665t0kz5sTDDG4X3f4uQEAD78DaqW5WjzBqt
+ErSraqI30x4Te/UdHeCci6rN7t2Dh/sHLbgnziOo2SqEWWBDQrnexMl63Uu
ti3I9eo2m4G2gs/1UlmjNSqUSqO6jG5l2+4KeOAyW0eIK8S4Lucge2ThGd8v
5vc52E7RZKNBFkTbQMqdUXQNvy5AU1ZJHsEYKxI+9TLTqElgBjqCjw+b74Nh
BGwZzcCanSoYtFBi0CcglStAihuczkoBrVMd6Wa2jBLNdtgw+uX6+nIX/zUZ
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
4YaCL/wWoVJRZaxHriehvnKNrkuudcAG0JbAktjH1CU71ibrBCl60fbgw2CH
zVXAKzBmQRUXsBuYbksAiWNdQdW3nRuBJ5GtrZ1tvcjBUpYjWLVXHpKZQnjr
T+UyVeCenmr9iGgZ7i45JjgWY/xGHhpFRclf+q1aqGC6UwCBSYU8dDim30jD
5aH5B68tFsxBbAmGliHaKZIXmXjnJytLMeAomDBqnf/amXZEhtcc3iLzKRdO
uSaJXFjsFZqidxb0q2nq7OUKofOHXr4wPh93XD9hf3ipBKErE1tLQa9xmAK3
4VPG0mYdVJ7tuI6I0LVW775ZwLRYD1vFm6zgrzaG5wiVaN6JHefadl7nKKbr
Mc8lifQZY5J+61O02BqbHG1MMu5++OVUR9aSHY9Vgtra+lMlz6bj29iGo7tM
1nhlJa07PU+PaU8l+XgmfT7IRJUIIAoxCRw03D41BOyeP53635t5hP1iTYuR
B5uC2+xScjEySKficONe63SC4bTeOw5PtFYvEfqyvIny7Mb05rJTfVmWEvsK
Y1BeZCsaHBx+//wx2A7PDg8eP332PXwabG39oiRX0ZQK9FzldVevbRJJvold
9hCOwPeLM8dond4W0H56LszcCzm7XE97/EpniAXrbTmP3e60e/Um7S4IXq9Q
rz+PKZUZG8lBXvAqW2SFVMvZvuWtXjVpxgLPJhWQc9qUEXj5zm13n1cA5L1X
AoMuUrsLN63YoYsqz1rZVvKZV4RwfVGtPtWdIiNhFPdOF+N9CXKYbbiu/003
xn8m+ac+dcmV8sVTb/PIN7YNLnfaLQ3Oak06WpWpykfRCWbX61LalpAjjym2
d4gUo6yKMBPXOzDLxLgKbBanz6CmX4ttbe/cUtf2Uk/UtUqcM7/vbJNgWy3l
atzI0VVvqG7BM4Jb7b28xHRX4YqGlaaWnfw+MYlScWIC3O8flx2T1MONPDla
uc0Rjqh0CZbpjhfi9NsPhbIMWJ+iEUmbjOTJohM97BeUhGKsUqDedeXKxEU7
rw9o75Q9HljdKbEZpDEFf7uTvF76aYt8qQsyc+WV9GCYKwBi+LrMra0Jv4jI
YBD22ks9MDDQxw+28wnGfLzcd3MEqC0S7FVuPTm+dHY5eyjTsfshk4qSTn8p
uSfmxw/JbKU8yPTD+4s3Vx84V+qnj6OIMgrX6JmoJD/T66Il0V3zBpevKNmg
ASN3JMYWi//YkSa+zm2AieLRR27Q+DGS9yFg43RWxyzAfcMO5biXSu0a6/u+
RUodG7Nq35SNB+2Tzt4nfRpF3kNUf41qJuWjdVE3FYOyOWcnh+Nnv/51ffLb
+PT9r/H18+N35+nZf+x/eH/1t2SVfpr989X19Lfq4pcnZ6AbvRdQYIsC25ty
h+OUYQMSg999OcHJYY9a737dshsks2SnhgNcFOK1pGTzOngEXM0bxq8swCH4
PZnRO6wOWcPkcPZ974aFh3fwFrkdDUBiWNXqt2clENoptrt8ZpKRvAA+CwgM
z/uJ2+3Z+V3rg3pTtKeip89i21oEOwnaHndTtchMT60Bv/IzxlLq4C3zPw6G
QQL+40OvUcnITMV7vxJw5PUZzv3w6d4eZpOWhemT4UWTuqdepK85G5VXttPz
whi7UfTGSQDYUsi4tSXf9J6Vlqzk2PTHD3yv4/f44urV+Pz0f1Jj99YJMQnm
/iX8MhYnXGUKQddmWgMwkX0JJ0akrk2aSyZvmYDVzfgbyaq18vd7I3tp2X19
BR/5ngc+Fl90mBGF6P1y/Bo7etNadutadXMsyosb4P4TLTl+FADqIClqzU3j
uQPrm6sz24QojAM+6EdpZ0u25xEiUOc44w0NRt/f28PgmfxZmtQumIyRdUC2
roAj+fZNrz/H0Xb3qaDa1esYs4/rcWyyq+weX/PNtTzt+x/Z1+WiWArfxdsn
kNgADJJ3LEoYkDpFdTwwlc7UguvwIE4BrNdhLy5K95E8hI8MRARI2LfuFqoe
fRyZiX6THDUTJ0WJR9b2yQ4njQSzL37tUaLXZs0L0biciLp/8ID8y7QreiQ6
gKgjwqAAI+m1zW0w0STfkVegof8zkZyE6NnT7qNJqhbWzzZY3MbcIE9SOPjb
EU+flyPvW0arGyQb8uDAHPR/sc6oyyoPpQRrygnWO/aV1+TRdW/0xqpMC8qn
tg1bYt+BZHqkPPTuJDKsQc/+n//1v62mHdqEDX6ZYuvdRt1XYgVQ1cBSZ91T
Bh+2iMDrnBb3EWRrBpK8yK+NwGXYTO3neyhhGfrRu584JjPv6S0PQ52dXE9O
zo+u3l9e42vkj8fvJ/HVyfnJu/EZC3Z8mYlKTKcvzkziIbTtkh028V5aL3MF
x97PTQwqO/zLJMFLVoBve8c3MgCr2BwAsHzYkMCSmqoqKyySx2se5gvauF6m
kL4wLI2xfEb6JxtsYlLYg1MriN/Vt0Q9mYMPvj4OeBTuotAtaK72m+FR2sEM
7++Pzi7eHL88G1+d+D/uWDk0fjfxGFXJ+8SraBuA487W1kM/w4jmRd84FDvc
vyWlMsil7FaYGaDAhOI36SHZRSVhcryf1Lz/06jPEcV3h5ce/DQC7O69AJxf
Gv6R8QDfYUn/wHAPPMP3fwXXH/700fd8devirFeDvSwSRiTP+8fWQj++iN6w
2MZYkQ3ClOxT+Y68wbM80Uuu4yiIeOSCWPcz0qgzyAEOcmnrmWCHnTHtRJNs
qmtUZObvXBAmkNEe4BAHuHb5sHxuO/jV887NvXDril8MDNrliSlZ41tBUuCb
1mz/NpIw1MsueBOS0RzuLeVsrttATEI1S+GrJ0vXgxHk3hosDhR3wP6t16cj
M5+2c4+DJiq+AjbdApMVd3CaWycGSDhEJVntvQkZM1B1XyI69hdvLPQ9CptI
H3tNpCcueAjwqad/tFWK47Fx22AYCnOO6i+a+abGRJs3wobxQ88jy8F97qhm
2PfhVzGb1yZT/qK4KemVWfgGw3820saf5Dubz0+f4OtJ/f5O8BRvOSP6QyRV
+DIBF6WRVjDJrCq1dxUlEAVdZPEWblLJYaOHF7JKRKsG70ccbf1fu6fKczGN
AAA=

-->

</rfc>
