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

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

<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>
          <t>The application provider will normally know which of these scoped DNS records to query based on the user's requested configuration. So this does not typically result in multiple queries for different possible scopes. If discovery of scope is needed for a specific application as part of the domain control validation process, then the scope could alternatively be encoded in a key value pair in the record data.</t>
          <t>Note that a proposed update to the ACME DNS challenge specification <xref target="ACME-SCOPED-CHALLENGE"/> has incorporated this scope indication format.</t>
        </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="ACME-SCOPED-CHALLENGE" target="https://datatracker.ietf.org/doc/draft-ietf-acme-scoped-dns-challenges/">
          <front>
            <title>ACME Scoped DNS Challenges</title>
            <author initials="A. A." surname="Chariton">
              <organization/>
            </author>
            <author initials="A. A." surname="Omidi">
              <organization/>
            </author>
            <author initials="J." surname="Kasten">
              <organization/>
            </author>
            <author initials="F." surname="Loukos">
              <organization/>
            </author>
            <author initials="S. A." surname="Janikowski">
              <organization/>
            </author>
            <date year="2024"/>
          </front>
        </reference>
        <reference anchor="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 392?>

<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:
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

-->

</rfc>
