<?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.17 (Ruby 3.1.4) -->
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="trust200902" docName="draft-ietf-dnsop-domain-verification-techniques-05" category="bcp" consensus="true" submissionType="IETF" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.22.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-05"/>
    <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="July" day="08"/>
    <keyword>Internet-Draft</keyword>
    <abstract>
      <?line 174?>

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

<section anchor="introduction">
      <name>Introduction</name>
      <t>Many Application Service Providers of internet services need domain owners to prove that they control a particular DNS domain before the Application Service Provider can operate services for or grant some privilege to that domain. For instance, Certification Authorities (CAs) ask requesters of TLS certificates to prove that they operate the domain they are requesting the certificate for. Application Service Providers generally allow for several different ways of proving control of a domain. In practice, DNS-based methods take the form of the Application Service Provider generating a random token and asking the requester to create a DNS record containing this random token and placing it at a location within the domain that the Application Service Provider can query for. Generally only one temporary DNS record is sufficient for proving domain ownership.</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.
<?line -6?>
      </t>
      <ul spacing="normal">
        <li>
          <t><tt>Application Service Provider</tt>: an internet-based provider of a service, for e.g., a Certification Authority or a service that allows for user-controlled websites. These services often require a User to verify that they control a domain. The Application Service Provider may be implementing a standard protocol for domain validation (such as <xref target="RFC8555"/>) or they may have their own specification.</t>
        </li>
        <li>
          <t><tt>Intermediary</tt>: an internet-based service that leverages the services of other providers on behalf of a User. For example, an Intermediary might be a service that allows for User-controlled websites and in-turn needs to use a Certification Authority provider to get TLS certificates for the User on behalf of the website.</t>
        </li>
        <li>
          <t><tt>Validation Record</tt>: the DNS record that is used to prove ownership of a domain name (<xref target="RFC9499"/>). It typically contains an unguessable value generated by the Application Service Provider which serves as a challenge. The Application Service Provider looks for the Validation Record in the zone of the domain name being verified and checks if it contains the unguessable value.</t>
        </li>
        <li>
          <t><tt>User</tt>: the owner or operator of a domain in the DNS who needs to prove ownership of that domain to an Application Service Provider.</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>The presence of a Validation Record with a predictable domain name (either as a TXT record for the exact domain name where control is being validated or with a well-known label) can allow attackers to enumerate utilized set of Application Service Providers.</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.  (The ACME protocol is addressing this in <xref target="ACME-SCOPED-CHALLENGE"/>.)</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="RFC9499"/>) where care may need to be taken when validating control. For example, there are security risks if an Application Service Provider can be tricked into believing that an attacker has control over ".co.uk" or ".com". The volunteer-managed Public Suffix List <xref target="PSL"/> is one mechanism available today that can be useful for identifying public suffixes.</t>
        <t>Future specifications may provide better mechanisms or recommendations for defining domain boundaries or for enabling organizational administrators to place constraints on domains and subdomains. 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>
      <t>All Domain Control Validation mechanisms are implemented by a resource record with:</t>
      <t>1) A domain name related to the domain name being validated
2) A Validation Record, either directly in RDATA or as the target of a CNAME (or chain of CNAMEs)</t>
      <t>Both of these are issued to the User by either an Application Service Provider or an Intermediary. An issued random token then needs to exist in at least one of these to demonstrate the User has control over the domain name in-question. Variations on this approach exist to meet different uses.</t>
      <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 (Application Service Provider to User, Application Service Provider to Intermediary, or Intermediary to User) with the following properties:</t>
        <ol spacing="normal" type="1"><li>
            <t>MUST have at least 128 bits of entropy.</t>
          </li>
          <li>
            <t>base64url (<xref section="5" sectionFormat="comma" target="RFC4648"/>) encoded, base32 (<xref section="6" sectionFormat="comma" target="RFC4648"/>) encoded, or base16 (<xref section="8" sectionFormat="comma" target="RFC4648"/>) encoded.</t>
          </li>
        </ol>
        <t>See <xref target="RFC4086"/> for additional information on randomness requirements.</t>
        <t>Base32 encoding or hexadecimal base16 encoding are RECOMMENDED to be specified when the random token would exist in a DNS label such as in a CNAME target.  This is because base64 relies mixed case (and DNS is case-insensitive as clarified in <xref target="RFC4343"/>) and because some base64 characters ("/", "+", and "=") may not be permitted by implementations that limit allowed characters to those allowed in hostnames.  If base32 is used, it SHOULD be specified in way that safely omits the trailing padding ("=").  Note that DNS labels are limited to 63 octets which limits how large such a token may be.</t>
        <t>This random token is placed in either the RDATA or a domain name, as described in the rest of this section.  Some methods of validation may involve multiple independent random tokens.</t>
      </section>
      <section anchor="name">
        <name>Validation Record Domain Name</name>
        <t>The RECOMMENDED format for a Validation Record's domain name is application-specific underscore prefix labels. Domain Control Validation Records are constructed by the Application Service Provider by prepending the label "<tt>_&lt;PROVIDER_RELEVANT_NAME&gt;-challenge</tt>" to the domain name being validated (e.g. "_foo-challenge.example.com"). The prefixed "_" is used to avoid collisions with existing hostnames.</t>
        <t>If an Application Service Provider has an application-specific need to have multiple validations for the same label, multiple prefixes can be used, such as "<tt>_&lt;FEATURE&gt;._&lt;PROVIDER_RELEVANT_NAME&gt;-challenge</tt>".</t>
        <t>An Application Service Provider may also specify prepending a random token to the name, such as "<tt>&lt;RANDOM_TOKEN&gt;._&lt;PROVIDER_RELEVANT_NAME&gt;-challenge</tt>". This can be done either as part of the challenge itself (<xref target="cname-dcv"/>, to support multiple Intermediaries (<xref target="multiple"/>), or to make it harder for a third party to scan what Application Service Providers are being used by a given domain name.</t>
        <section anchor="scope-indication">
          <name>Scope Indication</name>
          <t>For applications that may apply more broadly than to a single hostname, the RECOMMENDED approach is to differentiate the application-specific underscore prefix labels to also include the scope (see <xref target="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 hostname 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 hostnames 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 Service 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 the ACME DNS challenge specification <xref target="ACME-SCOPED-CHALLENGE"/> has incorporated this scope indication format.</t>
          <t>Application owners SHOULD consult the IANA "Underscored and Globally Scoped DNS Node Names" registry <xref target="UNDERSCORE-REGISTRY"/> to confirm there are no collisions with existing entries.</t>
        </section>
        <section anchor="cname-considerations">
          <name>CNAME Considerations</name>
          <t>Any Validation Records that might include a CNAME MUST have a name that is distinct from the domain name being validated, as a CNAME MUST NOT be placed at the same domain name that is being validated.  The recommended format in <xref target="name"/> as well as others below all have this property.</t>
          <t>This is for the same reason already cited in <xref target="pitfalls"/>. CNAME records cannot co-exist with other data, and there may already be other record types that exist at the domain name. Instead, as with the TXT record recommendation, an Application Service 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>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>
      </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 as the Validation Record. The name is constructed as described in <xref target="name"/>, and RDATA MUST contain at least a Random Token (constructed as in <xref target="random-token"/>). If 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>This again allows the Application Service Provider to query only for application-specific records it needs, while giving flexibility to the User adding the DNS record (i.e. they can be given permission to only add records under a specific prefix by the DNS administrator). Whether or not multiple Validation Records can exist for the same domain is up to the Application Service Provider's application specification.</t>
        <t>Application Service Providers MUST validate that a random token in the TXT record matches the one that they gave to the User for that specific domain name.</t>
        <section anchor="metadata">
          <name>Token Metadata</name>
          <t>It may be desirable to associate metadata with the token in a Validation Record. When specified, metadata SHOULD be encoded in the RDATA via space-separated ASCII key-value pairs <xref target="RFC1464"/>, with the key "token" prefixing the random token. For example:</t>
          <artwork><![CDATA[
_foo-challenge.example.com.  IN   TXT  "token=3419...3d206c4"
]]></artwork>
          <t>If there are multiple tokens required, each one MUST be in a separate RR to allow them to match up with any additional attributes.  For example:</t>
          <artwork><![CDATA[
_foo-challenge.example.com.  IN   TXT  "token=3419...3d206c4 attr=bar"
                             IN   TXT  "token=5454...45dc45a attr=quux"
]]></artwork>
          <t>The token MUST be the first element in the key-value list. If the TXT record RDATA is not prefixed with <tt>token=</tt> then <xref target="RFC1464"/> encoding MUST NOT be assumed (as this might split the trailing "==" or "=" at the end of base64 encoding).</t>
          <t>If an alternate syntax is used by the Application Service Provider for token metadata, they MUST specify a grammar for it.</t>
        </section>
        <section anchor="expiry-metadata">
          <name>Metadata For Expiry</name>
          <t>Application Service Providers MUST provide clear instructions on when a Validation Record can be removed.</t>
          <t>These instructions SHOULD be encoded in the RDATA as token metadata (<xref target="metadata"/> using the key "expiry" to hold a time after which it is safe to remove the Validation Record. For example:</t>
          <artwork><![CDATA[
_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>A simpler variation of the expiry time is also ISO 8601 valid and can also be specified, using the "full-date" format. For example:</t>
          <artwork><![CDATA[
_foo-challenge.example.com.  IN   TXT  "token=3419...3d206c4 expiry=2023-02-08"
]]></artwork>
          <t>Alternatively, if the record should never expire (for instance, if it may be checked periodically by the Application Service Provider) and should not be removed, the key "expiry" SHALL be set to have value "never".</t>
          <artwork><![CDATA[
_foo-challenge.example.com.  IN   TXT  "token=3419...3d206c4 expiry=never"
]]></artwork>
          <t>The "expiry" key MAY be omitted in cases where the Application Service Provider has clarified the record expiry policy out-of-band (<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="delegated">
        <name>Delegated Domain Control Validation</name>
        <t>Delegated domain control validation lets a User delegate the domain control validation process for their domain to an Intermediary without having to hand over full DNS access.  It is a variation of the above TXT record validation (<xref target="txt-record"/>) that indirectly inserts a CNAME record prior to the TXT record.</t>
        <t>The Intermediary gives the User a CNAME record to add for the domain and Application Service Provider being validated that points to the Intermediary's 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="random-token"/>. 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.  IN   TXT "<provider-random-token>"
]]></artwork>
        <t>Such a setup is especially useful when the Application Service Provider wants to periodically re-issue the challenge. 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 an Application Service Provider. For example, a hostname may be using a "multi-CDN" where the hostname simultaneously uses multiple Content Delivery Network (CDN) providers.</t>
        <t>To support this, Application Service Providers may support prefixing the challenge with a label containing an unique account identifier of the form <tt>_&lt;identifier-token&gt;</tt> 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 Application Service Provider, or by an Intermediary in the case where domain validation is delegated (<xref target="delegated"/>).</t>
        <t>The resulting record could either directly contain a TXT record or a CNAME (as in <xref target="delegated"/>).  For example:</t>
        <artwork><![CDATA[
_<identifier-token>._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 Application Service Provider would resolve the DNS name containing the appropriate identifier token.</t>
        <t>Application Service Providers may wish to always prepend the <tt>_&lt;identifier-token&gt;</tt> to make it harder for third parties to scan, even absent supporting multiple intermediaries.</t>
      </section>
      <section anchor="specification-of-validation-records">
        <name>Specification of Validation Records</name>
        <t>Validation Records need to be securely relayed from an Application Service Provider to a DNS administrator. Application Service Providers and intermediaries SHOULD offer detailed and easily-accessible help pages, keeping in mind that the DNS administrator might not have a login account on the website of the Application Service Provider or Intermediary. Similarly, for clarity, the exact and full DNS record (including a Fully Qualified Domain Name and DNS record type) to be added SHOULD be provided along with help instructions.  Where possible, APIs SHOULD be used to relay instructions.</t>
      </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 Application Service Provider doing the validation should specify how long the validation will take (i.e. after how much time can the validation DNS record be deleted).</t>
        <t>Some Application Service Providers currently require the Validation Record to remain in the zone indefinitely for periodic revalidation purposes. This practice should be discouraged. Subsequent validation actions using an already disclosed secret are no guarantee that the original owner is still in control of the domain, and a new challenge needs to be issued.</t>
        <t>One exception is if the record is being used as part of a delegated domain control validation setup (<xref target="delegated"/>); in that case, the CNAME record that points to the actual validation TXT record cannot be removed as long as the User is still relying on the Intermediary.</t>
      </section>
      <section anchor="ttl-considerations">
        <name>TTL Considerations</name>
        <t>The TTL <xref target="RFC1034"/> for Validation Records SHOULD be short to allow recovering from potential misconfigurations. These records will not be polled frequently so caching or resolver load will not be an issue.</t>
        <t>The Application Service Provider looking up a Validation Record may have to wait for up to the SOA minimum TTL (negative caching TTL) of the enclosing zone for the record to become visible, if it has been previously queried. If the application User wants to make the Validation Record visible more quickly they may need to work with the DNS administrator to see if they are willing to lower the SOA minimum TTL (which has implications across the entire zone).</t>
        <t>Application Service Provider's verifiers MAY wish to either use dedicated DNS resolvers configured with a low maximum negative caching TTL or flush Validation Records from resolver caches prior to issuing queries.</t>
      </section>
      <section anchor="cname-dcv">
        <name>CNAME Records for Domain Control Validation</name>
        <t>CNAME records MAY be used instead of TXT records where specified by Application Service Providers to support Users who are unable to create TXT records. Two forms of this are common: including the challenge token in the domain name itself, or including the challenge token as a part of the CNAME target. This approach has a number of limitatations relative to using TXT records.</t>
        <section anchor="random-token-in-domain-names">
          <name>Random Token in Domain Names</name>
          <t>Application Service Providers MAY include the random token in a domain name that is related to the domain name being validated.  An Application Service Provider including the random token in a domain name MUST specify the use of an underscore-prefixed label (e.g., <tt>_&lt;token&gt;._foo</tt> or <tt>_foo-&lt;token&gt;</tt>). The resource record is then a CNAME to a domain name specified by the Application Service Provider. The Application Service Provider uses the presence of a resource record with this domain name to perform the validation, validating the both presence of the record as well as the CNAME target. For example:</t>
          <artwork><![CDATA[
_<random-token>._foo-challenge.example.com.  IN   CNAME "dcv.provider.example."
]]></artwork>
          <t>In practice, many Application Service Providers that employ CNAMEs for domain control validation today use an entirely random subdomain label which works to avoid accidential collisions, but which could allow for a malicious Application Service Provider to smuggle instructions from some other Application Service Provider. Adding an provider-specific component in addition (such as <tt>_&lt;token&gt;._foo-challenge</tt> or <tt>_foo-&lt;token&gt;-challenge</tt>) make it easier for the domain owner to keep track of why and for what service a Validation Record has been deployed.</t>
          <t>Since the random token exists entirely in the challenge, it is not possible to delegate Domain Control Validation challenges of this form to Intermediaries in a way that allows the Intermediary to refresh the challenge over time.</t>
        </section>
        <section anchor="random-token-in-cname-targets">
          <name>Random Token in CNAME Targets</name>
          <t>An Application Service 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 Application Service Provider. For example:</t>
          <artwork><![CDATA[
_foo-challenge.example.com.  IN   CNAME "<random-token>.dcv.provider.example."
]]></artwork>
          <t>The Application Service Provider then validates that the target of the CNAME matches the token provided. This approach has similar properties to TXT records (<xref target="txt-record"/>) but does not allow for additional attributes such as expiry to be added.</t>
          <t>As mentioned in <xref target="cname-considerations"/>, the domain name of the Validation Record MUST be distinct from the domain name being validated.</t>
        </section>
      </section>
      <section anchor="interactions-with-dname">
        <name>Interactions with DNAME</name>
        <t>Domain control validation in the presence of a DNAME <xref target="RFC6672"/> is 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 Application 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 Application Service 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>If token values aren't long enough or lack adequate entropy there's a risk that a malicious actor could produce a token that could be confused with an application-specific underscore prefix label.</t>
      <t>Ambiguity of scope introduces risks, as described in <xref target="scope"/>. Distinguishing the scope in the application-specific label, along with good documentation, should help make it clear to DNS administrators whether the record applies to a single hostname, a wildcard, or an entire domain. Always using this indication rather than having a default scope reduces ambiguity, especially for protocols that may have used a shared application-specific label for different scopes in the past. While it would also have been possible to include the scope in as an attribute in the TXT record, that has more potential for ambiguity and misleading an operator, such as if an implementation ignores attribute it doesn't recognize but an attacker includes the attribute to mislead the DNS administrator.</t>
      <t>Application Service Providers and intermediaries should use authenticated channels to convey instructions and random tokens to Users. Otherwise an attacker in the middle could alter the instructions, potentially allowing the attacker to provision the service instead of the User.</t>
      <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 Application 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, Application Service Providers SHOULD attempt to query and confirm the Validation Record by matching responses from multiple DNS resolvers on unpredictable geographically diverse IP addresses to reduce an attacker's ability to complete a challenge by spoofing DNS. Alternatively, Application Service Providers MAY perform multiple queries spread out over a longer time period to reduce the chance of receiving spoofed DNS answers.</t>
      <section 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>Application Service 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>Application Service Providers MAY allow verification of ownership for domains which are public suffixes in the "PRIVATE" division, although it would be preferable to apply additional safety checks in this case.</t>
          </li>
        </ul>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <t>This document has no IANA actions.</t>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references 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="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="RFC1464">
          <front>
            <title>Using the Domain Name System To Store Arbitrary String Attributes</title>
            <author fullname="R. Rosenbaum" initials="R." surname="Rosenbaum"/>
            <date month="May" year="1993"/>
            <abstract>
              <t>This paper describes a simple means to associate arbitrary string information (ASCII text) with attributes that have not been defined by the DNS. This memo defines an Experimental Protocol for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="1464"/>
          <seriesInfo name="DOI" value="10.17487/RFC1464"/>
        </reference>
        <reference anchor="RFC4086">
          <front>
            <title>Randomness Requirements for Security</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <author fullname="J. Schiller" initials="J." surname="Schiller"/>
            <author fullname="S. Crocker" initials="S." surname="Crocker"/>
            <date month="June" year="2005"/>
            <abstract>
              <t>Security systems are built on strong cryptographic algorithms that foil pattern analysis attempts. However, the security of these systems is dependent on generating secret quantities for passwords, cryptographic keys, and similar quantities. The use of pseudo-random processes to generate secret quantities can result in pseudo-security. A sophisticated attacker may find it easier to reproduce the environment that produced the secret quantities and to search the resulting small set of possibilities than to locate the quantities in the whole of the potential number space.</t>
              <t>Choosing random quantities to foil a resourceful and motivated adversary is surprisingly difficult. This document points out many pitfalls in using poor entropy sources or traditional pseudo-random number generation techniques for generating such quantities. It recommends the use of truly random hardware techniques and shows that the existing hardware on many systems can be used for this purpose. It provides suggestions to ameliorate the problem when a hardware solution is not available, and it gives examples of how large such quantities need to be for some applications. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="106"/>
          <seriesInfo name="RFC" value="4086"/>
          <seriesInfo name="DOI" value="10.17487/RFC4086"/>
        </reference>
        <reference anchor="RFC4343">
          <front>
            <title>Domain Name System (DNS) Case Insensitivity Clarification</title>
            <author fullname="D. Eastlake 3rd" initials="D." surname="Eastlake 3rd"/>
            <date month="January" year="2006"/>
            <abstract>
              <t>Domain Name System (DNS) names are "case insensitive". This document explains exactly what that means and provides a clear specification of the rules. This clarification updates RFCs 1034, 1035, and 2181. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4343"/>
          <seriesInfo name="DOI" value="10.17487/RFC4343"/>
        </reference>
        <reference anchor="RFC8555">
          <front>
            <title>Automatic Certificate Management Environment (ACME)</title>
            <author fullname="R. Barnes" initials="R." surname="Barnes"/>
            <author fullname="J. Hoffman-Andrews" initials="J." surname="Hoffman-Andrews"/>
            <author fullname="D. McCarney" initials="D." surname="McCarney"/>
            <author fullname="J. Kasten" initials="J." surname="Kasten"/>
            <date month="March" year="2019"/>
            <abstract>
              <t>Public Key Infrastructure using X.509 (PKIX) certificates are used for a number of purposes, the most significant of which is the authentication of domain names. Thus, certification authorities (CAs) in the Web PKI are trusted to verify that an applicant for a certificate legitimately represents the domain name(s) in the certificate. As of this writing, this verification is done through a collection of ad hoc mechanisms. This document describes a protocol that a CA and an applicant can use to automate the process of verification and certificate issuance. The protocol also provides facilities for other certificate management functions, such as certificate revocation.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8555"/>
          <seriesInfo name="DOI" value="10.17487/RFC8555"/>
        </reference>
        <reference anchor="RFC9210">
          <front>
            <title>DNS Transport over TCP - Operational Requirements</title>
            <author fullname="J. Kristoff" initials="J." surname="Kristoff"/>
            <author fullname="D. Wessels" initials="D." surname="Wessels"/>
            <date month="March" year="2022"/>
            <abstract>
              <t>This document updates RFCs 1123 and 1536. This document requires the operational practice of permitting DNS messages to be carried over TCP on the Internet as a Best Current Practice. This operational requirement is aligned with the implementation requirements in RFC 7766. The use of TCP includes both DNS over unencrypted TCP as well as over an encrypted TLS session. The document also considers the consequences of this form of DNS communication and the potential operational issues that can arise when this Best Current Practice is not upheld.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="235"/>
          <seriesInfo name="RFC" value="9210"/>
          <seriesInfo name="DOI" value="10.17487/RFC9210"/>
        </reference>
        <reference anchor="RFC6672">
          <front>
            <title>DNAME Redirection in the DNS</title>
            <author fullname="S. Rose" initials="S." surname="Rose"/>
            <author fullname="W. Wijngaards" initials="W." surname="Wijngaards"/>
            <date month="June" year="2012"/>
            <abstract>
              <t>The DNAME record provides redirection for a subtree of the domain name tree in the DNS. That is, all names that end with a particular suffix are redirected to another part of the DNS. This document obsoletes the original specification in RFC 2672 as well as updates the document on representing IPv6 addresses in DNS (RFC 3363). [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6672"/>
          <seriesInfo name="DOI" value="10.17487/RFC6672"/>
        </reference>
        <reference anchor="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="RFC9499">
          <front>
            <title>DNS Terminology</title>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman"/>
            <author fullname="K. Fujiwara" initials="K." surname="Fujiwara"/>
            <date month="March" year="2024"/>
            <abstract>
              <t>The Domain Name System (DNS) is defined in literally dozens of different RFCs. The terminology used by implementers and developers of DNS protocols, and by operators of DNS systems, has changed in the decades since the DNS was first defined. This document gives current definitions for many of the terms used in the DNS in a single document.</t>
              <t>This document updates RFC 2308 by clarifying the definitions of "forwarder" and "QNAME". It obsoletes RFC 8499 by adding multiple terms and clarifications. Comprehensive lists of changed and new definitions can be found in Appendices A and B.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="219"/>
          <seriesInfo name="RFC" value="9499"/>
          <seriesInfo name="DOI" value="10.17487/RFC9499"/>
        </reference>
        <reference anchor="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="ATPROTO-TXT" target="https://atproto.com/specs/handle#dns-txt-method">
          <front>
            <title>DNS TXT Method</title>
            <author initials="" surname="Bluesky">
              <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>
        <reference anchor="UNDERSCORE-REGISTRY" target="https://www.iana.org/assignments/dns-parameters/dns-parameters.xhtml#underscored-globally-scoped-dns-node-names">
          <front>
            <title>Underscored and Globally Scoped DNS Node Name</title>
            <author initials="" surname="IANA">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
    </references>
    <?line 468?>

<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 Application 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 Application 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 an Application Service 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 Application Service Provider. Note that in this construction Application Service 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 Application Service Provider Foo) is the one who has (direct or delegated) access to DNS records for the domain. After a TXT record has been added, the Application 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 Application Service 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="the-at-protocol">
            <name>The AT Protocol</name>
            <t>The Authenticated Transfer (AT) Protocol supports DNS TXT records for resolving social media "handles" (human-readable identifiers) to the User's persistent account identifier <xref target="ATPROTO-TXT"/>. For example, this is how the handle <tt>bsky.app</tt> would be resolved:</t>
            <artwork><![CDATA[
_atproto.bsky.app.  IN  TXT "did=did:plc:z72i7hdynmk6r22z27h6tvur"
]]></artwork>
          </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>
    <section anchor="acknowledgments">
      <name>Acknowledgments</name>
      <t>Thank you to Tim Wicinski, John Levine, Daniel Kahn Gillmor, Amir Omidi, Tuomo Soini, and many others for their feedback and suggestions on this document.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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
5/mcD9G1J+fqmGK/8/8BExvTlAGwAAA=

-->

</rfc>
