<?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-rfc2629 version 1.6.6 (Ruby 3.0.4) -->
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="pre5378Trust200902" docName="draft-ietf-httpbis-rfc6265bis-10" category="std" consensus="true" obsoletes="6265" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.12.4 -->
  <front>
    <title>Cookies: HTTP State Management Mechanism</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-rfc6265bis-10"/>
    <author initials="L." surname="Chen" fullname="Lily Chen" role="editor">
      <organization>Google LLC</organization>
      <address>
        <email>chlily@google.com</email>
      </address>
    </author>
    <author initials="S." surname="Englehardt" fullname="Steven Englehardt" role="editor">
      <organization>Mozilla</organization>
      <address>
        <email>senglehardt@mozilla.com</email>
      </address>
    </author>
    <author initials="M." surname="West" fullname="Mike West" role="editor">
      <organization>Google LLC</organization>
      <address>
        <email>mkwst@google.com</email>
        <uri>https://mikewest.org/</uri>
      </address>
    </author>
    <author initials="J." surname="Wilander" fullname="John Wilander" role="editor">
      <organization>Apple, Inc</organization>
      <address>
        <email>wilander@apple.com</email>
      </address>
    </author>
    <date/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <abstract>
      <t>This document defines the HTTP Cookie and Set-Cookie header fields. These
header fields can be used by HTTP servers to store state (called cookies) at
HTTP user agents, letting the servers maintain a stateful session over the
mostly stateless HTTP protocol. Although cookies have many historical
infelicities that degrade their security and privacy, the Cookie and Set-Cookie
header fields are widely used on the Internet. This document obsoletes RFC
6265.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-rfc6265bis/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        HTTP Working Group mailing list (<eref target="mailto:ietf-http-wg@w3.org"/>),
        which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/"/>.
        Working Group information can be found at <eref target="https://httpwg.org/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/httpwg/http-extensions/labels/6265bis"/>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction">
      <name>Introduction</name>
      <t>This document defines the HTTP Cookie and Set-Cookie header fields. Using
the Set-Cookie header field, an HTTP server can pass name/value pairs and
associated metadata (called cookies) to a user agent. When the user agent makes
subsequent requests to the server, the user agent uses the metadata and other
information to determine whether to return the name/value pairs in the Cookie
header field.</t>
      <t>Although simple on their surface, cookies have a number of complexities. For
example, the server indicates a scope for each cookie when sending it to the
user agent. The scope indicates the maximum amount of time in which the user
agent should return the cookie, the servers to which the user agent should
return the cookie, and the URI schemes for which the cookie is applicable.</t>
      <t>For historical reasons, cookies contain a number of security and privacy
infelicities. For example, a server can indicate that a given cookie is
intended for "secure" connections, but the Secure attribute does not provide
integrity in the presence of an active network attacker. Similarly, cookies
for a given host are shared across all the ports on that host, even though the
usual "same-origin policy" used by web browsers isolates content retrieved via
different ports.</t>
      <t>There are two audiences for this specification: developers of cookie-generating
servers and developers of cookie-consuming user agents.</t>
      <t>To maximize interoperability with user agents, servers SHOULD limit themselves
to the well-behaved profile defined in <xref target="sane-profile"/> when generating cookies.</t>
      <t>User agents MUST implement the more liberal processing rules defined in <xref target="ua-requirements"/>, in order to maximize interoperability with existing servers that do not
conform to the well-behaved profile defined in <xref target="sane-profile"/>.</t>
      <t>This document specifies the syntax and semantics of these header fields as they are
actually used on the Internet. In particular, this document does not create
new syntax or semantics beyond those in use today. The recommendations for
cookie generation provided in <xref target="sane-profile"/> represent a preferred subset of current
server behavior, and even the more liberal cookie processing algorithm provided
in <xref target="ua-requirements"/> does not recommend all of the syntactic and semantic variations in
use today. Where some existing software differs from the recommended protocol
in significant ways, the document contains a note explaining the difference.</t>
      <t>This document obsoletes <xref target="RFC6265"/>.</t>
    </section>
    <section anchor="conventions">
      <name>Conventions</name>
      <section anchor="conformance-criteria">
        <name>Conformance Criteria</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD",
"SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be
interpreted as described in <xref target="RFC2119"/>.</t>
        <t>Requirements phrased in the imperative as part of algorithms (such as "strip any
leading space characters" or "return false and abort these steps") are to be
interpreted with the meaning of the key word ("MUST", "SHOULD", "MAY", etc.)
used in introducing the algorithm.</t>
        <t>Conformance requirements phrased as algorithms or specific steps can be
implemented in any manner, so long as the end result is equivalent. In
particular, the algorithms defined in this specification are intended to be
easy to understand and are not intended to be performant.</t>
      </section>
      <section anchor="syntax-notation">
        <name>Syntax Notation</name>
        <t>This specification uses the Augmented Backus-Naur Form (ABNF) notation of
<xref target="RFC5234"/>.</t>
        <t>The following core rules are included by reference, as defined in <xref target="RFC5234"/>,
Appendix B.1: ALPHA (letters), CR (carriage return), CRLF (CR LF), CTLs
(controls), DIGIT (decimal 0-9), DQUOTE (double quote), HEXDIG
(hexadecimal 0-9/A-F/a-f), LF (line feed), NUL (null octet), OCTET (any
8-bit sequence of data except NUL), SP (space), HTAB (horizontal tab),
CHAR (any <xref target="USASCII"/> character), VCHAR (any visible <xref target="USASCII"/> character),
and WSP (whitespace).</t>
        <t>The OWS (optional whitespace) and BWS (bad whitespace) rules are defined in
Section 5.6.3 of <xref target="HTTPSEM"/>.</t>
      </section>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The terms "user agent", "client", "server", "proxy", and "origin server" have
the same meaning as in the HTTP/1.1 specification (<xref target="HTTPSEM"/>, Section 3).</t>
        <t>The request-host is the name of the host, as known by the user agent, to which
the user agent is sending an HTTP request or from which it is receiving an HTTP
response (i.e., the name of the host to which it sent the corresponding HTTP
request).</t>
        <t>The term request-uri refers to "target URI" as defined in Section 7.1 of
<xref target="HTTPSEM"/>.</t>
        <t>Two sequences of octets are said to case-insensitively match each other if and
only if they are equivalent under the i;ascii-casemap collation defined in
<xref target="RFC4790"/>.</t>
        <t>The term string means a sequence of non-NUL octets.</t>
        <t>The terms "active document", "ancestor browsing context", "browsing context",
"dedicated worker", "Document", "nested browsing context", "opaque origin",
"parent browsing context", "sandboxed origin browsing context flag", "shared
worker", "the worker's Documents", "top-level browsing context", and
"WorkerGlobalScope" are defined in <xref target="HTML"/>.</t>
        <t>"Service Workers" are defined in the Service Workers specification
<xref target="SERVICE-WORKERS"/>.</t>
        <t>The term "origin", the mechanism of deriving an origin from a URI, and the "the
same" matching algorithm for origins are defined in <xref target="RFC6454"/>.</t>
        <t>"Safe" HTTP methods include <tt>GET</tt>, <tt>HEAD</tt>, <tt>OPTIONS</tt>, and <tt>TRACE</tt>, as defined
in Section 9.2.1 of <xref target="HTTPSEM"/>.</t>
        <t>A domain's "public suffix" is the portion of a domain that is controlled by a
public registry, such as "com", "co.uk", and "pvt.k12.wy.us". A domain's
"registrable domain" is the domain's public suffix plus the label to its left.
That is, for <tt>https://www.site.example</tt>, the public suffix is <tt>example</tt>, and the
registrable domain is <tt>site.example</tt>. Whenever possible, user agents SHOULD
use an up-to-date public suffix list, such as the one maintained by the Mozilla
project at <xref target="PSL"/>.</t>
        <t>The term "request", as well as a request's "client", "current url", "method",
"target browsing context", and "url list", are defined in <xref target="FETCH"/>.</t>
        <t>The term "non-HTTP APIs" refers to non-HTTP mechanisms used to set and retrieve
cookies, such as a web browser API that exposes cookies to scripts.</t>
      </section>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <t>This section outlines a way for an origin server to send state information to a
user agent and for the user agent to return the state information to the origin
server.</t>
      <t>To store state, the origin server includes a Set-Cookie header field in an HTTP
response. In subsequent requests, the user agent returns a Cookie request
header field to the origin server. The Cookie header field contains cookies the user agent
received in previous Set-Cookie header fields. The origin server is free to ignore
the Cookie header field or use its contents for an application-defined purpose.</t>
      <t>Origin servers MAY send a Set-Cookie response header field with any response. An
origin server can include multiple Set-Cookie header fields in a single response.
The presence of a Cookie or a Set-Cookie header field does not preclude HTTP
caches from storing and reusing a response.</t>
      <t>Origin servers SHOULD NOT fold multiple Set-Cookie header fields into a single
header field. The usual mechanism for folding HTTP headers fields (i.e., as
defined in Section 5.3 of <xref target="HTTPSEM"/>) might change the semantics of the Set-Cookie header
field because the %x2C (",") character is used by Set-Cookie in a way that
conflicts with such folding.</t>
      <t>User agents MAY ignore Set-Cookie header fields based on response status codes or
the user agent's cookie policy (see <xref target="ignoring-cookies"/>).</t>
      <section anchor="examples">
        <name>Examples</name>
        <t>Using the Set-Cookie header field, a server can send the user agent a short string
in an HTTP response that the user agent will return in future HTTP requests that
are within the scope of the cookie. For example, the server can send the user
agent a "session identifier" named SID with the value 31d4d96e407aad42. The
user agent then returns the session identifier in subsequent requests.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></sourcecode>
        <t>The server can alter the default scope of the cookie using the Path and
Domain attributes. For example, the server can instruct the user agent to
return the cookie to every path and every subdomain of site.example.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42; Path=/; Domain=site.example

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></sourcecode>
        <t>As shown in the next example, the server can store multiple cookies at the user
agent. For example, the server can store a session identifier as well as the
user's preferred language by returning two Set-Cookie header fields. Notice
that the server uses the Secure and HttpOnly attributes to provide
additional security protections for the more sensitive session identifier (see
<xref target="sane-set-cookie-semantics"/>).</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42; Path=/; Secure; HttpOnly
Set-Cookie: lang=en-US; Path=/; Domain=site.example

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42; lang=en-US
]]></sourcecode>
        <t>Notice that the Cookie header field above contains two cookies, one named SID and
one named lang. If the server wishes the user agent to persist the cookie over
multiple "sessions" (e.g., user agent restarts), the server can specify an
expiration date in the Expires attribute. Note that the user agent might
delete the cookie before the expiration date if the user agent's cookie store
exceeds its quota or if the user manually deletes the server's cookie.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: lang=en-US; Expires=Wed, 09 Jun 2021 10:18:14 GMT

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42; lang=en-US
]]></sourcecode>
        <t>Finally, to remove a cookie, the server returns a Set-Cookie header field with an
expiration date in the past. The server will be successful in removing the
cookie only if the Path and the Domain attribute in the Set-Cookie header field
match the values used when the cookie was created.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: lang=; Expires=Sun, 06 Nov 1994 08:49:37 GMT

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></sourcecode>
      </section>
    </section>
    <section anchor="sane-profile">
      <name>Server Requirements</name>
      <t>This section describes the syntax and semantics of a well-behaved profile of the
Cookie and Set-Cookie header fields.</t>
      <section anchor="sane-set-cookie">
        <name>Set-Cookie</name>
        <t>The Set-Cookie HTTP response header field is used to send cookies from the server to
the user agent.</t>
        <section anchor="abnf-syntax">
          <name>Syntax</name>
          <t>Informally, the Set-Cookie response header field contains a cookie, which begins with a
name-value-pair, followed by zero or more attribute-value pairs. Servers
SHOULD NOT send Set-Cookie header fields that fail to conform to the following
grammar:</t>
          <sourcecode type="abnf"><![CDATA[
set-cookie        = set-cookie-string
set-cookie-string = BWS cookie-pair *( BWS ";" OWS cookie-av )
cookie-pair       = cookie-name BWS "=" BWS cookie-value
cookie-name       = 1*cookie-octet
cookie-value      = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
cookie-octet      = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
                    / %x80-FF
                      ; octets excluding CTLs,
                      ; whitespace DQUOTE, comma, semicolon,
                      ; and backslash

cookie-av         = expires-av / max-age-av / domain-av /
                    path-av / secure-av / httponly-av /
                    samesite-av / extension-av
expires-av        = "Expires" BWS "=" BWS sane-cookie-date
sane-cookie-date  =
    <IMF-fixdate, defined in [HTTPSEM], Section 5.6.7>
max-age-av        = "Max-Age" BWS "=" BWS non-zero-digit *DIGIT
non-zero-digit    = %x31-39
                      ; digits 1 through 9
domain-av         = "Domain" BWS "=" BWS domain-value
domain-value      = <subdomain>
                      ; see details below
path-av           = "Path" BWS "=" BWS path-value
path-value        = *av-octet
secure-av         = "Secure"
httponly-av       = "HttpOnly"
samesite-av       = "SameSite" BWS "=" BWS samesite-value
samesite-value    = "Strict" / "Lax" / "None"
extension-av      = *av-octet
av-octet          = %x20-3A / %x3C-7E
                      ; any CHAR except CTLs or ";"
]]></sourcecode>
          <t>Note that some of the grammatical terms above reference documents that use
different grammatical notations than this document (which uses ABNF from
<xref target="RFC5234"/>).</t>
          <t>The semantics of the cookie-value are not defined by this document.</t>
          <t>To maximize compatibility with user agents, servers that wish to store arbitrary
data in a cookie-value SHOULD encode that data, for example, using Base64
<xref target="RFC4648"/>.</t>
          <t>The domain-value is a subdomain as defined by <xref target="RFC1034"/>, Section 3.5, and
as enhanced by <xref target="RFC1123"/>, Section 2.1. Thus, domain-value is a string of
<xref target="USASCII"/> characters, such as one obtained by applying the "ToASCII" operation
defined in <xref section="4" sectionFormat="of" target="RFC3490"/>.</t>
          <t>Per the grammar above, the cookie-value MAY be wrapped in DQUOTE characters.
Note that in this case, the initial and trailing DQUOTE characters are not
stripped. They are part of the cookie-value, and will be included in Cookie
header fields sent to the server.</t>
          <t>The portions of the set-cookie-string produced by the cookie-av term are
known as attributes. To maximize compatibility with user agents, servers SHOULD
NOT produce two attributes with the same name in the same set-cookie-string.
(See <xref target="storage-model"/> for how user agents handle this case.)</t>
          <t>Servers SHOULD NOT include more than one Set-Cookie header field in the same
response with the same cookie-name. (See <xref target="set-cookie"/> for how user agents
handle this case.)</t>
          <t>If a server sends multiple responses containing Set-Cookie header fields
concurrently to the user agent (e.g., when communicating with the user agent
over multiple sockets), these responses create a "race condition" that can lead
to unpredictable behavior.</t>
          <t>NOTE: Some existing user agents differ in their interpretation of two-digit
years. To avoid compatibility issues, servers SHOULD use the rfc1123-date
format, which requires a four-digit year.</t>
          <t>NOTE: Some user agents store and process dates in cookies as 32-bit UNIX time_t
values. Implementation bugs in the libraries supporting time_t processing on
some systems might cause such user agents to process dates after the year 2038
incorrectly.</t>
        </section>
        <section anchor="sane-set-cookie-semantics">
          <name>Semantics (Non-Normative)</name>
          <t>This section describes simplified semantics of the Set-Cookie header field. These
semantics are detailed enough to be useful for understanding the most common
uses of cookies by servers. The full semantics are described in <xref target="ua-requirements"/>.</t>
          <t>When the user agent receives a Set-Cookie header field, the user agent stores the
cookie together with its attributes. Subsequently, when the user agent makes
an HTTP request, the user agent includes the applicable, non-expired cookies
in the Cookie header field.</t>
          <t>If the user agent receives a new cookie with the same cookie-name,
domain-value, and path-value as a cookie that it has already stored, the
existing cookie is evicted and replaced with the new cookie. Notice that
servers can delete cookies by sending the user agent a new cookie with an
Expires attribute with a value in the past.</t>
          <t>Unless the cookie's attributes indicate otherwise, the cookie is returned only
to the origin server (and not, for example, to any subdomains), and it expires
at the end of the current session (as defined by the user agent). User agents
ignore unrecognized cookie attributes (but not the entire cookie).</t>
          <section anchor="attribute-expires">
            <name>The Expires Attribute</name>
            <t>The Expires attribute indicates the maximum lifetime of the cookie,
represented as the date and time at which the cookie expires. The user agent is
not required to retain the cookie until the specified date has passed. In fact,
user agents often evict cookies due to memory pressure or privacy concerns.</t>
            <t>The user agent MUST limit the maximum value of the Expires attribute.
The limit SHOULD NOT be greater than 400 days (34560000 seconds) in the future.
The RECOMMENDED limit is 400 days in the future, but the user agent MAY adjust
the limit (see <xref target="cookie-policy"/>).
Expires attributes that are greater than the limit MUST be reduced to the limit.</t>
          </section>
          <section anchor="attribute-max-age">
            <name>The Max-Age Attribute</name>
            <t>The Max-Age attribute indicates the maximum lifetime of the cookie,
represented as the number of seconds until the cookie expires. The user agent is
not required to retain the cookie for the specified duration. In fact, user
agents often evict cookies due to memory pressure or privacy concerns.</t>
            <t>The user agent MUST limit the maximum value of the Max-Age attribute.
The limit SHOULD NOT be greater than 400 days (34560000 seconds) in duration.
The RECOMMENDED limit is 400 days in duration, but the user agent MAY adjust
the limit (see <xref target="cookie-policy"/>).
Max-Age attributes that are greater than the limit MUST be reduced to the limit.</t>
            <t>NOTE: Some existing user agents do not support the Max-Age attribute. User
agents that do not support the Max-Age attribute ignore the attribute.</t>
            <t>If a cookie has both the Max-Age and the Expires attribute, the Max-Age
attribute has precedence and controls the expiration date of the cookie. If a
cookie has neither the Max-Age nor the Expires attribute, the user agent
will retain the cookie until "the current session is over" (as defined by the
user agent).</t>
          </section>
          <section anchor="attribute-domain">
            <name>The Domain Attribute</name>
            <t>The Domain attribute specifies those hosts to which the cookie will be sent.
For example, if the value of the Domain attribute is "site.example", the user
agent will include the cookie in the Cookie header field when making HTTP requests to
site.example, www.site.example, and www.corp.site.example. (Note that a
leading %x2E ("."), if present, is ignored even though that character is not
permitted, but a trailing %x2E ("."), if present, will cause the user agent to
ignore the attribute.)  If the server omits the Domain attribute, the user
agent will return the cookie only to the origin server.</t>
            <t>WARNING: Some existing user agents treat an absent Domain attribute as if the
Domain attribute were present and contained the current host name. For
example, if site.example returns a Set-Cookie header field without a Domain
attribute, these user agents will erroneously send the cookie to
www.site.example as well.</t>
            <t>The user agent will reject cookies unless the Domain attribute specifies a
scope for the cookie that would include the origin server. For example, the
user agent will accept a cookie with a Domain attribute of "site.example" or
of "foo.site.example" from foo.site.example, but the user agent will not accept
a cookie with a Domain attribute of "bar.site.example" or of
"baz.foo.site.example".</t>
            <t>NOTE: For security reasons, many user agents are configured to reject Domain
attributes that correspond to "public suffixes". For example, some user
agents will reject Domain attributes of "com" or "co.uk". (See <xref target="storage-model"/> for
more information.)</t>
          </section>
          <section anchor="attribute-path">
            <name>The Path Attribute</name>
            <t>The scope of each cookie is limited to a set of paths, controlled by the
Path attribute. If the server omits the Path attribute, the user agent will
use the "directory" of the request-uri's path component as the default value.
(See <xref target="cookie-path"/> for more details.)</t>
            <t>The user agent will include the cookie in an HTTP request only if the path
portion of the request-uri matches (or is a subdirectory of) the cookie's
Path attribute, where the %x2F ("/") character is interpreted as a directory
separator.</t>
            <t>Although seemingly useful for isolating cookies between different paths within
a given host, the Path attribute cannot be relied upon for security (see
<xref target="security-considerations"/>).</t>
          </section>
          <section anchor="attribute-secure">
            <name>The Secure Attribute</name>
            <t>The Secure attribute limits the scope of the cookie to "secure" channels
(where "secure" is defined by the user agent). When a cookie has the Secure
attribute, the user agent will include the cookie in an HTTP request only if
the request is transmitted over a secure channel (typically HTTP over Transport
Layer Security (TLS) <xref target="RFC2818"/>).</t>
          </section>
          <section anchor="attribute-httponly">
            <name>The HttpOnly Attribute</name>
            <t>The HttpOnly attribute limits the scope of the cookie to HTTP requests. In
particular, the attribute instructs the user agent to omit the cookie when
providing access to cookies via non-HTTP APIs.</t>
            <t>Note that the HttpOnly attribute is independent of the Secure attribute: a
cookie can have both the HttpOnly and the Secure attribute.</t>
          </section>
          <section anchor="attribute-samesite">
            <name>The SameSite Attribute</name>
            <t>The "SameSite" attribute limits the scope of the cookie such that it will only
be attached to requests if those requests are same-site, as defined by the
algorithm in <xref target="same-site-requests"/>. For example, requests for
<tt>https://site.example/sekrit-image</tt> will attach same-site cookies if and only if
initiated from a context whose "site for cookies" is an origin with a scheme and
registered domain of "https" and "site.example" respectively.</t>
            <t>If the "SameSite" attribute's value is "Strict", the cookie will only be sent
along with "same-site" requests. If the value is "Lax", the cookie will be sent
with same-site requests, and with "cross-site" top-level navigations, as
described in <xref target="strict-lax"/>. If the value is "None", the cookie will be sent
with same-site and cross-site requests. If the "SameSite" attribute's value is
something other than these three known keywords, the attribute's value will be
subject to a default enforcement mode that is equivalent to "Lax".</t>
            <t>The "SameSite" attribute affects cookie creation as well as delivery. Cookies
which assert "SameSite=Lax" or "SameSite=Strict" cannot be set in responses to
cross-site subresource requests, or cross-site nested navigations. They can be
set along with any top-level navigation, cross-site or otherwise.</t>
          </section>
        </section>
        <section anchor="cookie-name-prefixes">
          <name>Cookie Name Prefixes</name>
          <t><xref target="weak-confidentiality"/> and <xref target="weak-integrity"/> of this document spell out some of the drawbacks of cookies'
historical implementation. In particular, it is impossible for a server to have
confidence that a given cookie was set with a particular set of attributes. In
order to provide such confidence in a backwards-compatible way, two common sets
of requirements can be inferred from the first few characters of the cookie's
name.</t>
          <t>The normative requirements for the prefixes described below are detailed in the
storage model algorithm defined in <xref target="storage-model"/>.</t>
          <section anchor="the-secure-prefix">
            <name>The "__Secure-" Prefix</name>
            <t>If a cookie's name begins with a case-sensitive match for the string
<tt>__Secure-</tt>, then the cookie will have been set with a <tt>Secure</tt> attribute.</t>
            <t>For example, the following <tt>Set-Cookie</tt> header field would be rejected by a conformant
user agent, as it does not have a <tt>Secure</tt> attribute.</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example
]]></sourcecode>
            <t>Whereas the following <tt>Set-Cookie</tt> header field would be accepted if set from a secure origin
(e.g. "https://site.example/"), and rejected otherwise:</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example; Secure
]]></sourcecode>
          </section>
          <section anchor="the-host-prefix">
            <name>The "__Host-" Prefix</name>
            <t>If a cookie's name begins with a case-sensitive match for the string
<tt>__Host-</tt>, then the cookie will have been set with a <tt>Secure</tt> attribute, a
<tt>Path</tt> attribute with a value of <tt>/</tt>, and no <tt>Domain</tt> attribute.</t>
            <t>This combination yields a cookie that hews as closely as a cookie can to
treating the origin as a security boundary. The lack of a <tt>Domain</tt> attribute
ensures that the cookie's <tt>host-only-flag</tt> is true, locking the cookie to a
particular host, rather than allowing it to span subdomains. Setting the <tt>Path</tt>
to <tt>/</tt> means that the cookie is effective for the entire host, and won't be
overridden for specific paths. The <tt>Secure</tt> attribute ensures that the cookie
is unaltered by non-secure origins, and won't span protocols.</t>
            <t>Ports are the only piece of the origin model that <tt>__Host-</tt> cookies continue
to ignore.</t>
            <t>For example, the following cookies would always be rejected:</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Host-SID=12345
Set-Cookie: __Host-SID=12345; Secure
Set-Cookie: __Host-SID=12345; Domain=site.example
Set-Cookie: __Host-SID=12345; Domain=site.example; Path=/
Set-Cookie: __Host-SID=12345; Secure; Domain=site.example; Path=/
]]></sourcecode>
            <t>While the following would be accepted if set from a secure origin (e.g.
"https://site.example/"), and rejected otherwise:</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Host-SID=12345; Secure; Path=/
]]></sourcecode>
          </section>
        </section>
      </section>
      <section anchor="sane-cookie">
        <name>Cookie</name>
        <section anchor="syntax">
          <name>Syntax</name>
          <t>The user agent sends stored cookies to the origin server in the Cookie header field.
If the server conforms to the requirements in <xref target="sane-set-cookie"/> (and the user agent
conforms to the requirements in <xref target="ua-requirements"/>), the user agent will send a Cookie
header field that conforms to the following grammar:</t>
          <sourcecode type="abnf"><![CDATA[
cookie        = cookie-string
cookie-string = cookie-pair *( ";" SP cookie-pair )
]]></sourcecode>
        </section>
        <section anchor="semantics">
          <name>Semantics</name>
          <t>Each cookie-pair represents a cookie stored by the user agent. The
cookie-pair contains the cookie-name and cookie-value the user agent
received in the Set-Cookie header field.</t>
          <t>Notice that the cookie attributes are not returned. In particular, the server
cannot determine from the Cookie  field alone when a cookie will expire, for
which hosts the cookie is valid, for which paths the cookie is valid, or
whether the cookie was set with the Secure or HttpOnly attributes.</t>
          <t>The semantics of individual cookies in the Cookie header field are not defined by
this document. Servers are expected to imbue these cookies with
application-specific semantics.</t>
          <t>Although cookies are serialized linearly in the Cookie header field, servers SHOULD
NOT rely upon the serialization order. In particular, if the Cookie header field
contains two cookies with the same name (e.g., that were set with different
Path or Domain attributes), servers SHOULD NOT rely upon the order in which
these cookies appear in the header field.</t>
        </section>
      </section>
    </section>
    <section anchor="ua-requirements">
      <name>User Agent Requirements</name>
      <t>This section specifies the Cookie and Set-Cookie header fields in sufficient
detail that a user agent implementing these requirements precisely can
interoperate with existing servers (even those that do not conform to the
well-behaved profile described in <xref target="sane-profile"/>).</t>
      <t>A user agent could enforce more restrictions than those specified herein (e.g.,
restrictions specified by its cookie policy, described in <xref target="cookie-policy"/>).
However, such additional restrictions may reduce the likelihood that a user
agent will be able to interoperate with existing servers.</t>
      <section anchor="subcomponent-algorithms">
        <name>Subcomponent Algorithms</name>
        <t>This section defines some algorithms used by user agents to process specific
subcomponents of the Cookie and Set-Cookie header fields.</t>
        <section anchor="cookie-date">
          <name>Dates</name>
          <t>The user agent MUST use an algorithm equivalent to the following algorithm to
parse a cookie-date. Note that the various boolean flags defined as a part
of the algorithm (i.e., found-time, found-day-of-month, found-month,
found-year) are initially "not set".</t>
          <ol spacing="normal" type="1"><li>
              <t>Using the grammar below, divide the cookie-date into date-tokens.  </t>
              <sourcecode type="abnf"><![CDATA[
cookie-date     = *delimiter date-token-list *delimiter
date-token-list = date-token *( 1*delimiter date-token )
date-token      = 1*non-delimiter

delimiter       = %x09 / %x20-2F / %x3B-40 / %x5B-60 / %x7B-7E
non-delimiter   = %x00-08 / %x0A-1F / DIGIT / ":" / ALPHA
                  / %x7F-FF
non-digit       = %x00-2F / %x3A-FF

day-of-month    = 1*2DIGIT [ non-digit *OCTET ]
month           = ( "jan" / "feb" / "mar" / "apr" /
                    "may" / "jun" / "jul" / "aug" /
                    "sep" / "oct" / "nov" / "dec" ) *OCTET
year            = 2*4DIGIT [ non-digit *OCTET ]
time            = hms-time [ non-digit *OCTET ]
hms-time        = time-field ":" time-field ":" time-field
time-field      = 1*2DIGIT
]]></sourcecode>
            </li>
            <li>
              <t>Process each date-token sequentially in the order the date-tokens
appear in the cookie-date:  </t>
              <ol spacing="normal" type="1"><li>If the found-time flag is not set and the token matches the
 time production, set the found-time flag and set the hour-value,
 minute-value, and second-value to the numbers denoted by the digits
 in the date-token, respectively. Skip the remaining sub-steps and
 continue to the next date-token.</li>
                <li>If the found-day-of-month flag is not set and the date-token matches
 the day-of-month production, set the found-day-of-month flag and set
 the day-of-month-value to the number denoted by the date-token. Skip
 the remaining sub-steps and continue to the next date-token.</li>
                <li>If the found-month flag is not set and the date-token matches the
 month production, set the found-month flag and set the month-value
 to the month denoted by the date-token. Skip the remaining sub-steps
 and continue to the next date-token.</li>
                <li>If the found-year flag is not set and the date-token matches the
 year production, set the found-year flag and set the year-value to
 the number denoted by the date-token. Skip the remaining sub-steps
 and continue to the next date-token.</li>
              </ol>
            </li>
            <li>If the year-value is greater than or equal to 70 and less than or equal to
99, increment the year-value by 1900.</li>
            <li>
              <t>If the year-value is greater than or equal to 0 and less than or equal to
69, increment the year-value by 2000.  </t>
              <ol spacing="normal" type="1"><li>NOTE: Some existing user agents interpret two-digit years differently.</li>
              </ol>
            </li>
            <li>
              <t>Abort these steps and fail to parse the cookie-date if:  </t>
              <ul spacing="normal">
                <li>at least one of the found-day-of-month, found-month, found-year, or
found-time flags is not set,</li>
                <li>the day-of-month-value is less than 1 or greater than 31,</li>
                <li>the year-value is less than 1601,</li>
                <li>the hour-value is greater than 23,</li>
                <li>the minute-value is greater than 59, or</li>
                <li>the second-value is greater than 59.</li>
              </ul>
              <t>
(Note that leap seconds cannot be represented in this syntax.)</t>
            </li>
            <li>Let the parsed-cookie-date be the date whose day-of-month, month,
year, hour, minute, and second (in UTC) are the
day-of-month-value, the month-value, the year-value, the hour-value,
the minute-value, and the second-value, respectively. If no such date
exists, abort these steps and fail to parse the cookie-date.</li>
            <li>Return the parsed-cookie-date as the result of this algorithm.</li>
          </ol>
        </section>
        <section anchor="canonicalized-host-names">
          <name>Canonicalized Host Names</name>
          <t>A canonicalized host name is the string generated by the following algorithm:</t>
          <ol spacing="normal" type="1"><li>Convert the host name to a sequence of individual domain name labels.</li>
            <li>Convert each label that is not a Non-Reserved LDH (NR-LDH) label, to an
A-label (see Section 2.3.2.1 of <xref target="RFC5890"/> for the former and latter), or
to a "punycode label" (a label resulting from the "ToASCII" conversion in
Section 4 of <xref target="RFC3490"/>), as appropriate (see <xref target="idna-migration"/> of this
specification).</li>
            <li>Concatenate the resulting labels, separated by a %x2E (".") character.</li>
          </ol>
        </section>
        <section anchor="domain-matching">
          <name>Domain Matching</name>
          <t>A string domain-matches a given domain string if at least one of the following
conditions hold:</t>
          <ul spacing="normal">
            <li>The domain string and the string are identical. (Note that both the domain
string and the string will have been canonicalized to lower case at this
point.)</li>
            <li>
              <t>All of the following conditions hold:  </t>
              <ul spacing="normal">
                <li>The domain string is a suffix of the string.</li>
                <li>The last character of the string that is not included in the domain
string is a %x2E (".") character.</li>
                <li>The string is a host name (i.e., not an IP address).</li>
              </ul>
            </li>
          </ul>
        </section>
        <section anchor="cookie-path">
          <name>Paths and Path-Match</name>
          <t>The user agent MUST use an algorithm equivalent to the following algorithm to
compute the default-path of a cookie:</t>
          <ol spacing="normal" type="1"><li>Let uri-path be the path portion of the request-uri if such a portion
exists (and empty otherwise).</li>
            <li>If the uri-path is empty or if the first character of the uri-path is
not a %x2F ("/") character, output %x2F ("/") and skip the remaining steps.</li>
            <li>If the uri-path contains no more than one %x2F ("/") character, output
%x2F ("/") and skip the remaining step.</li>
            <li>Output the characters of the uri-path from the first character up to, but
not including, the right-most %x2F ("/").</li>
          </ol>
          <t>A request-path path-matches a given cookie-path if at least one of the
following conditions holds:</t>
          <ul spacing="normal">
            <li>
              <t>The cookie-path and the request-path are identical.  </t>
              <t>
Note that this differs from the rules in <xref target="RFC3986"/> for equivalence of the
path component, and hence two equivalent paths can have different cookies.</t>
            </li>
            <li>The cookie-path is a prefix of the request-path, and the last character
of the cookie-path is %x2F ("/").</li>
            <li>The cookie-path is a prefix of the request-path, and the first character
of the request-path that is not included in the cookie-path is a %x2F
("/") character.</li>
          </ul>
        </section>
      </section>
      <section anchor="same-site-requests">
        <name>"Same-site" and "cross-site" Requests</name>
        <t>Two origins are same-site if they satisfy the "same site" criteria defined in
<xref target="SAMESITE"/>. A request is "same-site" if the following criteria are true:</t>
        <ol spacing="normal" type="1"><li>The request is not the result of a cross-site redirect. That is,
the origin of every url in the request's url list is same-site with the
request's current url's origin.</li>
          <li>The request is not the result of a reload navigation triggered through a
user interface element (as defined by the user agent; e.g., a request
triggered by the user clicking a refresh button on a toolbar).</li>
          <li>The request's current url's origin is same-site with the request's
client's "site for cookies" (which is an origin), or if the request has no
client or the request's client is null.</li>
        </ol>
        <t>Requests which are the result of a reload navigation triggered through a user
interface element are same-site if the reloaded document was originally
navigated to via a same-site request. A request that is not "same-site" is
instead "cross-site".</t>
        <t>The request's client's "site for cookies" is calculated depending upon its
client's type, as described in the following subsections:</t>
        <section anchor="document-requests">
          <name>Document-based requests</name>
          <t>The URI displayed in a user agent's address bar is the only security context
directly exposed to users, and therefore the only signal users can reasonably
rely upon to determine whether or not they trust a particular website. The
origin of that URI represents the context in which a user most likely believes
themselves to be interacting. We'll define this origin, the top-level browsing
context's active document's origin, as the "top-level origin".</t>
          <t>For a document displayed in a top-level browsing context, we can stop here: the
document's "site for cookies" is the top-level origin.</t>
          <t>For documents which are displayed in nested browsing contexts, we need to audit
the origins of each of a document's ancestor browsing contexts' active documents
in order to account for the "multiple-nested scenarios" described in Section 4
of <xref target="RFC7034"/>. A document's "site for cookies" is the top-level origin if and
only if the top-level origin is same-site with the document's origin, and with
each of the document's ancestor documents' origins. Otherwise its "site for
cookies" is an origin set to an opaque origin.</t>
          <t>Given a Document (<tt>document</tt>), the following algorithm returns its "site for
cookies":</t>
          <ol spacing="normal" type="1"><li>Let <tt>top-document</tt> be the active document in <tt>document</tt>'s browsing context's
top-level browsing context.</li>
            <li>Let <tt>top-origin</tt> be the origin of <tt>top-document</tt>'s URI if <tt>top-document</tt>'s
sandboxed origin browsing context flag is set, and <tt>top-document</tt>'s origin
otherwise.</li>
            <li>Let <tt>documents</tt> be a list containing <tt>document</tt> and each of <tt>document</tt>'s
ancestor browsing contexts' active documents.</li>
            <li>
              <t>For each <tt>item</tt> in <tt>documents</tt>:  </t>
              <ol spacing="normal" type="1"><li>Let <tt>origin</tt> be the origin of <tt>item</tt>'s URI if <tt>item</tt>'s sandboxed origin
browsing context flag is set, and <tt>item</tt>'s origin otherwise.</li>
                <li>If <tt>origin</tt> is not same-site with <tt>top-origin</tt>, return an origin set to
an opaque origin.</li>
              </ol>
            </li>
            <li>Return <tt>top-origin</tt>.</li>
          </ol>
        </section>
        <section anchor="worker-requests">
          <name>Worker-based requests</name>
          <t>Worker-driven requests aren't as clear-cut as document-driven requests, as
there isn't a clear link between a top-level browsing context and a worker.
This is especially true for Service Workers <xref target="SERVICE-WORKERS"/>, which may
execute code in the background, without any document visible at all.</t>
          <t>Note: The descriptions below assume that workers must be same-origin with
the documents that instantiate them. If this invariant changes, we'll need to
take the worker's script's URI into account when determining their status.</t>
          <section anchor="dedicated-and-shared-requests">
            <name>Dedicated and Shared Workers</name>
            <t>Dedicated workers are simple, as each dedicated worker is bound to one and only
one document. Requests generated from a dedicated worker (via <tt>importScripts</tt>,
<tt>XMLHttpRequest</tt>, <tt>fetch()</tt>, etc) define their "site for cookies" as that
document's "site for cookies".</t>
            <t>Shared workers may be bound to multiple documents at once. As it is quite
possible for those documents to have distinct "site for cookies" values, the
worker's "site for cookies" will be an origin set to an opaque origin in cases
where the values are not all same-site with the worker's origin, and the
worker's origin in cases where the values agree.</t>
            <t>Given a WorkerGlobalScope (<tt>worker</tt>), the following algorithm returns its "site
for cookies":</t>
            <ol spacing="normal" type="1"><li>Let <tt>site</tt> be <tt>worker</tt>'s origin.</li>
              <li>
                <t>For each <tt>document</tt> in <tt>worker</tt>'s Documents:  </t>
                <ol spacing="normal" type="1"><li>Let <tt>document-site</tt> be <tt>document</tt>'s "site for cookies" (as defined
in <xref target="document-requests"/>).</li>
                  <li>If <tt>document-site</tt> is not same-site with <tt>site</tt>, return an origin
set to an opaque origin.</li>
                </ol>
              </li>
              <li>Return <tt>site</tt>.</li>
            </ol>
          </section>
          <section anchor="service-workers">
            <name>Service Workers</name>
            <t>Service Workers are more complicated, as they act as a completely separate
execution context with only tangential relationship to the Document which
registered them.</t>
            <t>Requests which simply pass through a Service Worker will be handled as described
above: the request's client will be the Document or Worker which initiated the
request, and its "site for cookies" will be those defined in
<xref target="document-requests"/> and <xref target="dedicated-and-shared-requests"/></t>
            <t>Requests which are initiated by the Service Worker itself (via a direct call to
<tt>fetch()</tt>, for instance), on the other hand, will have a client which is a
ServiceWorkerGlobalScope. Its "site for cookies" will be the Service Worker's
URI's origin.</t>
            <t>Given a ServiceWorkerGlobalScope (<tt>worker</tt>), the following algorithm returns its
"site for cookies":</t>
            <ol spacing="normal" type="1"><li>Return <tt>worker</tt>'s origin.</li>
            </ol>
          </section>
        </section>
      </section>
      <section anchor="ignoring-cookies">
        <name>Ignoring Set-Cookie Header Fields</name>
        <t>User agents MAY ignore Set-Cookie header fields contained in responses with 100-level
status codes or based on its cookie policy (see <xref target="cookie-policy"/>).</t>
        <t>All other Set-Cookie header fields SHOULD be processed according to <xref target="set-cookie"/>.
That is, Set-Cookie header fields contained in responses with non-100-level status
codes (including those in responses with 400- and 500-level status codes)
SHOULD be processed unless ignored according to the user agent's cookie policy.</t>
      </section>
      <section anchor="set-cookie">
        <name>The Set-Cookie Header Field</name>
        <t>When a user agent receives a Set-Cookie header field in an HTTP response, the
user agent MAY ignore the Set-Cookie header field in its entirety
(see <xref target="ignoring-cookies"/>).</t>
        <t>If the user agent does not ignore the Set-Cookie header field in its entirety,
the user agent MUST parse the field-value of the Set-Cookie header field as a
set-cookie-string (defined below).</t>
        <t>NOTE: The algorithm below is more permissive than the grammar in <xref target="sane-set-cookie"/>.
For example, the algorithm strips leading and trailing whitespace from the
cookie name and value (but maintains internal whitespace), whereas the grammar
in <xref target="sane-set-cookie"/> forbids whitespace in these positions. In addition, the
algorithm below accommodates some characters that are not cookie-octets
according to the grammar in <xref target="sane-set-cookie"/>. User agents use this algorithm
so as to interoperate with servers that do not follow the recommendations in
<xref target="sane-profile"/>.</t>
        <t>NOTE: As set-cookie-string may originate from a non-HTTP API, it is not
guaranteed to be free of CTL characters, so this algorithm handles them
explicitly. Horizontal tab (%x09) is excluded from the CTL characters that
lead to set-cookie-string rejection, as it is considered whitespace, which is
handled separately.</t>
        <t>NOTE: The set-cookie-string may contain octet sequences that appear
percent-encoded as per <xref section="2.1" sectionFormat="of" target="RFC3986"/>. However, a user agent
MUST NOT decode these sequences and instead parse the individual octets
as specified in this algorithm.</t>
        <t>A user agent MUST use an algorithm equivalent to the following algorithm to
parse a set-cookie-string:</t>
        <ol spacing="normal" type="1"><li>If the set-cookie-string contains a %x00-08 / %x0A-1F / %x7F character
(CTL characters excluding HTAB):
Abort these steps and ignore the set-cookie-string entirely.</li>
          <li>
            <t>If the set-cookie-string contains a %x3B (";") character:  </t>
            <ol spacing="normal" type="1"><li>The name-value-pair string consists of the characters up to, but not
including, the first %x3B (";"), and the unparsed-attributes consist of
the remainder of the set-cookie-string (including the %x3B (";") in
question).</li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>The name-value-pair string consists of all the characters contained in
the set-cookie-string, and the unparsed-attributes is the empty
string.</li>
            </ol>
          </li>
          <li>
            <t>If the name-value-pair string lacks a %x3D ("=") character, then the name
string is empty, and the value string is the value of name-value-pair.  </t>
            <t>
Otherwise, the name string consists of the characters up to, but not
including, the first %x3D ("=") character, and the (possibly empty) value
string consists of the characters after the first %x3D ("=") character.</t>
          </li>
          <li>Remove any leading or trailing WSP characters from the name string and the
value string.</li>
          <li>If the sum of the lengths of the name string and the value string is more
than 4096 octets, abort these steps and ignore the set-cookie-string entirely.</li>
          <li>The cookie-name is the name string, and the cookie-value is the value string.</li>
        </ol>
        <t>The user agent MUST use an algorithm equivalent to the following algorithm to
parse the unparsed-attributes:</t>
        <ol spacing="normal" type="1"><li>If the unparsed-attributes string is empty, skip the rest of these steps.</li>
          <li>Discard the first character of the unparsed-attributes (which will be a
%x3B (";") character).</li>
          <li>
            <t>If the remaining unparsed-attributes contains a %x3B (";") character:  </t>
            <ol spacing="normal" type="1"><li>Consume the characters of the unparsed-attributes up to, but not
including, the first %x3B (";") character.</li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>Consume the remainder of the unparsed-attributes.</li>
            </ol>
            <t>
Let the cookie-av string be the characters consumed in this step.</t>
          </li>
          <li>
            <t>If the cookie-av string contains a %x3D ("=") character:  </t>
            <ol spacing="normal" type="1"><li>The (possibly empty) attribute-name string consists of the characters
up to, but not including, the first %x3D ("=") character, and the
(possibly empty) attribute-value string consists of the characters
after the first %x3D ("=") character.</li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>The attribute-name string consists of the entire cookie-av string,
and the attribute-value string is empty.</li>
            </ol>
          </li>
          <li>Remove any leading or trailing WSP characters from the attribute-name
string and the attribute-value string.</li>
          <li>If the attribute-value is longer than 1024 octets, ignore the cookie-av
string and return to Step 1 of this algorithm.</li>
          <li>Process the attribute-name and attribute-value according to the
requirements in the following subsections. (Notice that attributes with
unrecognized attribute-names are ignored.)</li>
          <li>Return to Step 1 of this algorithm.</li>
        </ol>
        <t>When the user agent finishes parsing the set-cookie-string, the user agent is
said to "receive a cookie" from the request-uri with name cookie-name,
value cookie-value, and attributes cookie-attribute-list. (See <xref target="storage-model"/>
for additional requirements triggered by receiving a cookie.)</t>
        <section anchor="the-expires-attribute">
          <name>The Expires Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Expires", the
user agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>Let the expiry-time be the result of parsing the attribute-value as
cookie-date (see <xref target="cookie-date"/>).</li>
            <li>If the attribute-value failed to parse as a cookie date, ignore the
cookie-av.</li>
            <li>Let cookie-age-limit be the maximum age of the cookie (which SHOULD be 400 days
in the future or sooner, see <xref target="attribute-expires"/>).</li>
            <li>If the expiry-time is more than cookie-age-limit, the user agent MUST set the
expiry time to cookie-age-limit in seconds.</li>
            <li>If the expiry-time is earlier than the earliest date the user agent can
represent, the user agent MAY replace the expiry-time with the earliest
representable date.</li>
            <li>Append an attribute to the cookie-attribute-list with an attribute-name
of Expires and an attribute-value of expiry-time.</li>
          </ol>
        </section>
        <section anchor="the-max-age-attribute">
          <name>The Max-Age Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Max-Age", the
user agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>If the first character of the attribute-value is not a DIGIT or a "-"
character, ignore the cookie-av.</li>
            <li>If the remainder of attribute-value contains a non-DIGIT character, ignore
the cookie-av.</li>
            <li>Let delta-seconds be the attribute-value converted to an integer.</li>
            <li>Let cookie-age-limit be the maximum age of the cookie (which SHOULD be 400 days
or less, see <xref target="attribute-max-age"/>).</li>
            <li>Set delta-seconds to the smaller of its present value and cookie-age-limit.</li>
            <li>If delta-seconds is less than or equal to zero (0), let expiry-time be
the earliest representable date and time. Otherwise, let the expiry-time
be the current date and time plus delta-seconds seconds.</li>
            <li>Append an attribute to the cookie-attribute-list with an attribute-name
of Max-Age and an attribute-value of expiry-time.</li>
          </ol>
        </section>
        <section anchor="the-domain-attribute">
          <name>The Domain Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Domain", the user
agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>Let cookie-domain be the attribute-value.</li>
            <li>If cookie-domain starts with %x2E ("."), let cookie-domain be cookie-domain
without its leading %x2E (".").</li>
            <li>Convert the cookie-domain to lower case.</li>
            <li>Append an attribute to the cookie-attribute-list with an attribute-name
of Domain and an attribute-value of cookie-domain.</li>
          </ol>
        </section>
        <section anchor="the-path-attribute">
          <name>The Path Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Path", the user
agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>
              <t>If the attribute-value is empty or if the first character of the
attribute-value is not %x2F ("/"):  </t>
              <ol spacing="normal" type="1"><li>Let cookie-path be the default-path.</li>
              </ol>
              <t>
Otherwise:  </t>
              <ol spacing="normal" type="1"><li>Let cookie-path be the attribute-value.</li>
              </ol>
            </li>
            <li>Append an attribute to the cookie-attribute-list with an attribute-name
of Path and an attribute-value of cookie-path.</li>
          </ol>
        </section>
        <section anchor="the-secure-attribute">
          <name>The Secure Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Secure", the
user agent MUST append an attribute to the cookie-attribute-list with an
attribute-name of Secure and an empty attribute-value.</t>
        </section>
        <section anchor="the-httponly-attribute">
          <name>The HttpOnly Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "HttpOnly", the
user agent MUST append an attribute to the cookie-attribute-list with an
attribute-name of HttpOnly and an empty attribute-value.</t>
        </section>
        <section anchor="the-samesite-attribute">
          <name>The SameSite Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "SameSite", the
user agent MUST process the cookie-av as follows:</t>
          <ol spacing="normal" type="1"><li>Let <tt>enforcement</tt> be "Default".</li>
            <li>If cookie-av's attribute-value is a case-insensitive match for "None",
set <tt>enforcement</tt> to "None".</li>
            <li>If cookie-av's attribute-value is a case-insensitive match for "Strict",
set <tt>enforcement</tt> to "Strict".</li>
            <li>If cookie-av's attribute-value is a case-insensitive match for "Lax", set
<tt>enforcement</tt> to "Lax".</li>
            <li>Append an attribute to the cookie-attribute-list with an attribute-name
of "SameSite" and an attribute-value of <tt>enforcement</tt>.</li>
          </ol>
          <section anchor="strict-lax">
            <name>"Strict" and "Lax" enforcement</name>
            <t>Same-site cookies in "Strict" enforcement mode will not be sent along with
top-level navigations which are triggered from a cross-site document context.
As discussed in <xref target="top-level-navigations"/>, this might or might not be compatible
with existing session management systems. In the interests of providing a
drop-in mechanism that mitigates the risk of CSRF attacks, developers may set
the <tt>SameSite</tt> attribute in a "Lax" enforcement mode that carves out an
exception which sends same-site cookies along with cross-site requests if and
only if they are top-level navigations which use a "safe" (in the <xref target="HTTPSEM"/>
sense) HTTP method. (Note that a request's method may be changed from POST
to GET for some redirects (see Sections 15.4.2 and 15.4.3 of <xref target="HTTPSEM"/>); in
these cases, a request's "safe"ness is determined based on the method of the
current redirect hop.)</t>
            <t>Lax enforcement provides reasonable defense in depth against CSRF attacks that
rely on unsafe HTTP methods (like <tt>POST</tt>), but does not offer a robust defense
against CSRF as a general category of attack:</t>
            <ol spacing="normal" type="1"><li>Attackers can still pop up new windows or trigger top-level navigations in
order to create a "same-site" request (as described in <xref target="document-requests"/>), which
is only a speedbump along the road to exploitation.</li>
              <li>Features like <tt>&lt;link rel='prerender'&gt;</tt> <xref target="prerendering"/> can be exploited
to create "same-site" requests without the risk of user detection.</li>
            </ol>
            <t>When possible, developers should use a session management mechanism such as
that described in <xref target="top-level-navigations"/> to mitigate the risk of CSRF more
completely.</t>
          </section>
          <section anchor="lax-allowing-unsafe">
            <name>"Lax-Allowing-Unsafe" enforcement</name>
            <t>As discussed in <xref target="unsafe-top-level-requests"/>, compatibility concerns may
necessitate the use of a "Lax-allowing-unsafe" enforcement mode that allows
cookies to be sent with a cross-site HTTP request if and only if it is a
top-level request, regardless of request method. That is, the
"Lax-allowing-unsafe" enforcement mode waives the requirement for the HTTP
request's method to be "safe" in the <tt>SameSite</tt> enforcement step of the
retrieval algorithm in <xref target="retrieval-algorithm"/>. (All cookies, regardless of
<tt>SameSite</tt> enforcement mode, may be set for top-level navigations, regardless of
HTTP request method, as specified in <xref target="storage-model"/>.)</t>
            <t>"Lax-allowing-unsafe" is not a distinct value of the <tt>SameSite</tt> attribute.
Rather, user agents MAY apply "Lax-allowing-unsafe" enforcement only to cookies
that did not explicitly specify a <tt>SameSite</tt> attribute (i.e., those whose
same-site-flag was set to "Default" by default). To limit the scope of this
compatibility mode, user agents which apply "Lax-allowing-unsafe" enforcement
SHOULD restrict the enforcement to cookies which were created recently.
Deployment experience has shown a cookie age of 2 minutes or less to be a
reasonable limit.</t>
            <t>If the user agent uses "Lax-allowing-unsafe" enforcement, it MUST apply the
following modification to the retrieval algorithm defined in
<xref target="retrieval-algorithm"/>:</t>
            <t>Replace the condition in the penultimate bullet point of step 1 of the retrieval
algorithm reading</t>
            <artwork><![CDATA[
 * The HTTP request associated with the retrieval uses a "safe"
   method.
]]></artwork>
            <t>with</t>
            <artwork><![CDATA[
 * At least one of the following is true:

   1.  The HTTP request associated with the retrieval uses a "safe"
       method.

   2.  The cookie's same-site-flag is "Default" and the amount of
       time elapsed since the cookie's creation-time is at most a
       duration of the user agent's choosing.
]]></artwork>
          </section>
        </section>
      </section>
      <section anchor="storage-model">
        <name>Storage Model</name>
        <t>The user agent stores the following fields about each cookie: name, value,
expiry-time, domain, path, creation-time, last-access-time,
persistent-flag, host-only-flag, secure-only-flag, http-only-flag,
and same-site-flag.</t>
        <t>When the user agent "receives a cookie" from a request-uri with name
cookie-name, value cookie-value, and attributes cookie-attribute-list, the
user agent MUST process the cookie as follows:</t>
        <ol spacing="normal" type="1"><li>A user agent MAY ignore a received cookie in its entirety. See
<xref target="ignoring-cookies"/>.</li>
          <li>If cookie-name is empty and cookie-value is empty, abort these steps and
ignore the cookie entirely.</li>
          <li>If the cookie-name or the cookie-value contains a
%x00-08 / %x0A-1F / %x7F character (CTL characters excluding HTAB),
abort these steps and ignore the cookie entirely.</li>
          <li>If the sum of the lengths of cookie-name and cookie-value is more than
4096 octets, abort these steps and ignore the cookie entirely.</li>
          <li>Create a new cookie with name cookie-name, value cookie-value. Set the
creation-time and the last-access-time to the current date and time.</li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an attribute-name
of "Max-Age":  </t>
            <ol spacing="normal" type="1"><li>Set the cookie's persistent-flag to true.</li>
              <li>Set the cookie's expiry-time to attribute-value of the last
attribute in the cookie-attribute-list with an attribute-name of
"Max-Age".</li>
            </ol>
            <t>
Otherwise, if the cookie-attribute-list contains an attribute with an
attribute-name of "Expires" (and does not contain an attribute with an
attribute-name of "Max-Age"):  </t>
            <ol spacing="normal" type="1"><li>Set the cookie's persistent-flag to true.</li>
              <li>Set the cookie's expiry-time to attribute-value of the last
attribute in the cookie-attribute-list with an attribute-name of
"Expires".</li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>Set the cookie's persistent-flag to false.</li>
              <li>Set the cookie's expiry-time to the latest representable date.</li>
            </ol>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an
attribute-name of "Domain":  </t>
            <ol spacing="normal" type="1"><li>Let the domain-attribute be the attribute-value of the last
attribute in the cookie-attribute-list with both an
attribute-name of "Domain" and an attribute-value whose
length is no more than 1024 octets. (Note that a leading %x2E
("."), if present, is ignored even though that character is not
permitted, but a trailing %x2E ("."), if present, will cause
the user agent to ignore the attribute.)</li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>Let the domain-attribute be the empty string.</li>
            </ol>
          </li>
          <li>If the domain-attribute contains a character that is not in the range of <xref target="USASCII"/>
characters, abort these steps and ignore the cookie entirely.</li>
          <li>
            <t>If the user agent is configured to reject "public suffixes" and the
domain-attribute is a public suffix:  </t>
            <ol spacing="normal" type="1"><li>
                <t>If the domain-attribute is identical to the canonicalized
request-host:      </t>
                <ol spacing="normal" type="1"><li>Let the domain-attribute be the empty string.</li>
                </ol>
                <t>
Otherwise:      </t>
                <ol spacing="normal" type="1"><li>Abort these steps and ignore the cookie entirely.</li>
                </ol>
              </li>
            </ol>
            <t>
NOTE: This step prevents <tt>attacker.example</tt> from disrupting the integrity of
<tt>site.example</tt> by setting a cookie with a Domain attribute of "example".</t>
          </li>
          <li>
            <t>If the domain-attribute is non-empty:  </t>
            <ol spacing="normal" type="1"><li>
                <t>If the canonicalized request-host does not domain-match the
domain-attribute:      </t>
                <ol spacing="normal" type="1"><li>Abort these steps and ignore the cookie entirely.</li>
                </ol>
                <t>
Otherwise:      </t>
                <ol spacing="normal" type="1"><li>Set the cookie's host-only-flag to false.</li>
                  <li>Set the cookie's domain to the domain-attribute.</li>
                </ol>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>Set the cookie's host-only-flag to true.</li>
              <li>Set the cookie's domain to the canonicalized request-host.</li>
            </ol>
          </li>
          <li>If the cookie-attribute-list contains an attribute with an
attribute-name of "Path", set the cookie's path to attribute-value of
the last attribute in the cookie-attribute-list with both an
attribute-name of "Path" and an attribute-value whose length is no
more than 1024 octets. Otherwise, set the cookie's path to the
default-path of the request-uri.</li>
          <li>If the cookie-attribute-list contains an attribute with an
attribute-name of "Secure", set the cookie's secure-only-flag to true.
Otherwise, set the cookie's secure-only-flag to false.</li>
          <li>If the scheme component of the request-uri does not denote a "secure"
    protocol (as defined by the user agent), and the cookie's secure-only-flag
    is true, then abort these steps and ignore the cookie entirely.</li>
          <li>If the cookie-attribute-list contains an attribute with an
attribute-name of "HttpOnly", set the cookie's http-only-flag to true.
Otherwise, set the cookie's http-only-flag to false.</li>
          <li>If the cookie was received from a "non-HTTP" API and the cookie's
http-only-flag is true, abort these steps and ignore the cookie entirely.</li>
          <li>
            <t>If the cookie's secure-only-flag is false, and the scheme component of
request-uri does not denote a "secure" protocol, then abort these steps and
ignore the cookie entirely if the cookie store contains one or more cookies
that meet all of the following criteria:  </t>
            <ol spacing="normal" type="1"><li>Their name matches the name of the newly-created cookie.</li>
              <li>Their secure-only-flag is true.</li>
              <li>Their domain domain-matches the domain of the newly-created cookie, or
vice-versa.</li>
              <li>The path of the newly-created cookie path-matches the path of the
existing cookie.</li>
            </ol>
            <t>
Note: The path comparison is not symmetric, ensuring only that a
newly-created, non-secure cookie does not overlay an existing secure
cookie, providing some mitigation against cookie-fixing attacks. That is,
given an existing secure cookie named 'a' with a path of '/login', a
non-secure cookie named 'a' could be set for a path of '/' or '/foo', but
not for a path of '/login' or '/login/en'.</t>
          </li>
          <li>If the cookie-attribute-list contains an attribute with an
attribute-name of "SameSite", and an attribute-value of "Strict", "Lax", or
"None", set the cookie's same-site-flag to the attribute-value of the last
attribute in the cookie-attribute-list with an attribute-name of "SameSite".
Otherwise, set the cookie's same-site-flag to "Default".</li>
          <li>
            <t>If the cookie's <tt>same-site-flag</tt> is not "None":  </t>
            <ol spacing="normal" type="1"><li>If the cookie was received from a "non-HTTP" API, and the API was called
from a browsing context's active document whose "site for cookies" is
not same-site with the top-level origin, then abort these steps and
ignore the newly created cookie entirely.</li>
              <li>If the cookie was received from a "same-site" request (as defined in
<xref target="same-site-requests"/>), skip the remaining substeps and continue
processing the cookie.</li>
              <li>
                <t>If the cookie was received from a request which is navigating a
top-level browsing context <xref target="HTML"/> (e.g. if the request's "reserved
client" is either <tt>null</tt> or an environment whose "target browsing
context" is a top-level browing context), skip the remaining substeps
and continue processing the cookie.      </t>
                <t>
Note: Top-level navigations can create a cookie with any <tt>SameSite</tt>
value, even if the new cookie wouldn't have been sent along with
the request had it already existed prior to the navigation.</t>
              </li>
              <li>Abort these steps and ignore the newly created cookie entirely.</li>
            </ol>
          </li>
          <li>If the cookie's "same-site-flag" is "None", abort these steps and ignore the
cookie entirely unless the cookie's secure-only-flag is true.</li>
          <li>If the cookie-name begins with a case-sensitive match for the string
"__Secure-", abort these steps and ignore the cookie entirely unless the
cookie's secure-only-flag is true.</li>
          <li>
            <t>If the cookie-name begins with a case-sensitive match for the string
"__Host-", abort these steps and ignore the cookie entirely unless the
cookie meets all the following criteria:  </t>
            <ol spacing="normal" type="1"><li>The cookie's secure-only-flag is true.</li>
              <li>The cookie's host-only-flag is true.</li>
              <li>The cookie-attribute-list contains an attribute with an attribute-name
of "Path", and the cookie's path is <tt>/</tt>.</li>
            </ol>
          </li>
          <li>
            <t>If the cookie store contains a cookie with the same name, domain,
host-only-flag, and path as the newly-created cookie:  </t>
            <ol spacing="normal" type="1"><li>Let old-cookie be the existing cookie with the same name, domain,
host-only-flag, and path as the newly-created cookie. (Notice that this
algorithm maintains the invariant that there is at most one such
cookie.)</li>
              <li>If the newly-created cookie was received from a "non-HTTP" API and the
old-cookie's http-only-flag is true, abort these steps and ignore the
newly created cookie entirely.</li>
              <li>Update the creation-time of the newly-created cookie to match the
creation-time of the old-cookie.</li>
              <li>Remove the old-cookie from the cookie store.</li>
            </ol>
          </li>
          <li>Insert the newly-created cookie into the cookie store.</li>
        </ol>
        <t>A cookie is "expired" if the cookie has an expiry date in the past.</t>
        <t>The user agent MUST evict all expired cookies from the cookie store if, at any
time, an expired cookie exists in the cookie store.</t>
        <t>At any time, the user agent MAY "remove excess cookies" from the cookie store
if the number of cookies sharing a domain field exceeds some
implementation-defined upper bound (such as 50 cookies).</t>
        <t>At any time, the user agent MAY "remove excess cookies" from the cookie store
if the cookie store exceeds some predetermined upper bound (such as 3000
cookies).</t>
        <t>When the user agent removes excess cookies from the cookie store, the user
agent MUST evict cookies in the following priority order:</t>
        <ol spacing="normal" type="1"><li>Expired cookies.</li>
          <li>Cookies whose secure-only-flag is false, and which share a domain field
with more than a predetermined number of other cookies.</li>
          <li>Cookies that share a domain field with more than a predetermined number of
other cookies.</li>
          <li>All cookies.</li>
        </ol>
        <t>If two cookies have the same removal priority, the user agent MUST evict the
cookie with the earliest last-access-time first.</t>
        <t>When "the current session is over" (as defined by the user agent), the user
agent MUST remove from the cookie store all cookies with the persistent-flag
set to false.</t>
      </section>
      <section anchor="retrieval-model">
        <name>Retrieval Model</name>
        <t>This section defines how cookies are retrieved from a cookie store in the form
of a cookie-string. A "retrieval" is any event which requires generating a
cookie-string. For example, a retrieval may occur in order to build a Cookie
header field for an HTTP request, or may be required in order to return a
cookie-string from a call to a "non-HTTP" API that provides access to cookies. A
retrieval has an associated URI, same-site status, and type, which
are defined below depending on the type of retrieval.</t>
        <section anchor="cookie">
          <name>The Cookie Header Field</name>
          <t>The user agent includes stored cookies in the Cookie HTTP request header field.</t>
          <t>When the user agent generates an HTTP request, the user agent MUST NOT attach
more than one Cookie header field.</t>
          <t>A user agent MAY omit the Cookie header field in its entirety.  For example, the
user agent might wish to block sending cookies during "third-party" requests
from setting cookies (see <xref target="third-party-cookies"/>).</t>
          <t>If the user agent does attach a Cookie header field to an HTTP request, the
user agent MUST compute the cookie-string following the algorithm defined in
<xref target="retrieval-algorithm"/>, where the retrieval's URI is the request-uri, the
retrieval's same-site status is computed for the HTTP request as defined in
<xref target="same-site-requests"/>, and the retrieval's type is "HTTP".</t>
        </section>
        <section anchor="non-http">
          <name>Non-HTTP APIs</name>
          <t>The user agent MAY implement "non-HTTP" APIs that can be used to access
stored cookies.</t>
          <t>A user agent MAY return an empty cookie-string in certain contexts, such as
when a retrieval occurs within a third-party context (see
<xref target="third-party-cookies"/>).</t>
          <t>If a user agent does return cookies for a given call to a "non-HTTP" API with
an associated Document, then the user agent MUST compute the cookie-string
following the algorithm defined in <xref target="retrieval-algorithm"/>, where the
retrieval's URI is defined by the caller (see <xref target="DOM-DOCUMENT-COOKIE"/>), the
retrieval's same-site status is "same-site" if the Document's "site for
cookies" is same-site with the top-level origin as defined in
<xref target="document-requests"/> (otherwise it is "cross-site"), and the retrieval's type
is "non-HTTP".</t>
        </section>
        <section anchor="retrieval-algorithm">
          <name>Retrieval Algorithm</name>
          <t>Given a cookie store and a retrieval, the following algorithm returns a
cookie-string from a given cookie store.</t>
          <ol spacing="normal" type="1"><li>
              <t>Let cookie-list be the set of cookies from the cookie store that meets all
of the following requirements:  </t>
              <ul spacing="normal">
                <li>
                  <t>Either:      </t>
                  <ul spacing="normal">
                    <li>The cookie's host-only-flag is true and the canonicalized
host of the retrieval's URI is identical to the cookie's domain.</li>
                  </ul>
                  <t>
Or:      </t>
                  <ul spacing="normal">
                    <li>The cookie's host-only-flag is false and the canonicalized
host of the retrieval's URI domain-matches the cookie's domain.</li>
                  </ul>
                </li>
                <li>The retrieval's URI's path path-matches the cookie's path.</li>
                <li>
                  <t>If the cookie's secure-only-flag is true, then the retrieval's URI's
scheme must denote a "secure" protocol (as defined by the user agent).      </t>
                  <t>
NOTE: The notion of a "secure" protocol is not defined by this document.
Typically, user agents consider a protocol secure if the protocol makes
use of transport-layer security, such as SSL or TLS. For example, most
user agents consider "https" to be a scheme that denotes a secure
protocol.</t>
                </li>
                <li>If the cookie's http-only-flag is true, then exclude the cookie if the
retrieval's type is "non-HTTP".</li>
                <li>
                  <t>If the cookie's same-site-flag is not "None" and the retrieval's same-site
status is "cross-site", then exclude the cookie unless all of the
following conditions are met:      </t>
                  <ul spacing="normal">
                    <li>The retrieval's type is "HTTP".</li>
                    <li>The same-site-flag is "Lax" or "Default".</li>
                    <li>The HTTP request associated with the retrieval uses a "safe" method.</li>
                    <li>The target browsing context of the HTTP request associated with the
retrieval is a top-level browsing context.</li>
                  </ul>
                </li>
              </ul>
            </li>
            <li>
              <t>The user agent SHOULD sort the cookie-list in the following order:  </t>
              <ul spacing="normal">
                <li>Cookies with longer paths are listed before cookies with shorter
paths.</li>
                <li>Among cookies that have equal-length path fields, cookies with earlier
creation-times are listed before cookies with later creation-times.</li>
              </ul>
              <t>
NOTE: Not all user agents sort the cookie-list in this order, but this order
reflects common practice when this document was written, and, historically,
there have been servers that (erroneously) depended on this order.</t>
            </li>
            <li>Update the last-access-time of each cookie in the cookie-list to the
current date and time.</li>
            <li>
              <t>Serialize the cookie-list into a cookie-string by processing each cookie
in the cookie-list in order:  </t>
              <ol spacing="normal" type="1"><li>If the cookies' name is not empty, output the cookie's name followed by
the %x3D ("=") character.</li>
                <li>If the cookies' value is not empty, output the cookie's value.</li>
                <li>If there is an unprocessed cookie in the cookie-list, output the
characters %x3B and %x20 ("; ").</li>
              </ol>
            </li>
          </ol>
          <t>NOTE: Despite its name, the cookie-string is actually a sequence of octets, not
a sequence of characters.  To convert the cookie-string (or components
thereof) into a sequence of characters (e.g., for presentation to the user),
the user agent might wish to try using the UTF-8 character encoding <xref target="RFC3629"/>
to decode the octet sequence. This decoding might fail, however, because not
every sequence of octets is valid UTF-8.</t>
        </section>
      </section>
    </section>
    <section anchor="implementation-considerations">
      <name>Implementation Considerations</name>
      <section anchor="limits">
        <name>Limits</name>
        <t>Practical user agent implementations have limits on the number and size of
cookies that they can store. General-use user agents SHOULD provide each of the
following minimum capabilities:</t>
        <ul spacing="normal">
          <li>At least 50 cookies per domain.</li>
          <li>At least 3000 cookies total.</li>
        </ul>
        <t>User agents MAY limit the maximum number of cookies they store, and may evict
any cookie at any time (whether at the request of the user or due to
implementation limitations).</t>
        <t>Note that a limit on the maximum number of cookies also limits the total size of
the stored cookies, due to the length limits which MUST be enforced in
<xref target="set-cookie"/>.</t>
        <t>Servers SHOULD use as few and as small cookies as possible to avoid reaching
these implementation limits and to minimize network bandwidth due to the
Cookie header field being included in every request.</t>
        <t>Servers SHOULD gracefully degrade if the user agent fails to return one or more
cookies in the Cookie header field because the user agent might evict any cookie
at any time.</t>
      </section>
      <section anchor="application-programming-interfaces">
        <name>Application Programming Interfaces</name>
        <t>One reason the Cookie and Set-Cookie header fields use such esoteric syntax is
that many platforms (both in servers and user agents) provide a string-based
application programming interface (API) to cookies, requiring
application-layer programmers to generate and parse the syntax used by the
Cookie and Set-Cookie header fields, which many programmers have done incorrectly,
resulting in interoperability problems.</t>
        <t>Instead of providing string-based APIs to cookies, platforms would be
well-served by providing more semantic APIs. It is beyond the scope of this
document to recommend specific API designs, but there are clear benefits to
accepting an abstract "Date" object instead of a serialized date string.</t>
      </section>
      <section anchor="idna-migration">
        <name>IDNA Dependency and Migration</name>
        <t>IDNA2008 <xref target="RFC5890"/> supersedes IDNA2003 <xref target="RFC3490"/>. However, there are
differences between the two specifications, and thus there can be differences
in processing (e.g., converting) domain name labels that have been registered
under one from those registered under the other. There will be a transition
period of some time during which IDNA2003-based domain name labels will exist
in the wild. User agents SHOULD implement IDNA2008 <xref target="RFC5890"/> and MAY
implement <xref target="UTS46"/> or <xref target="RFC5895"/> in order to facilitate their IDNA transition.
If a user agent does not implement IDNA2008, the user agent MUST implement
IDNA2003 <xref target="RFC3490"/>.</t>
      </section>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <t>Cookies' primary privacy risk is their ability to correlate user activity. This
can happen on a single site, but is most problematic when activity is tracked across different,
seemingly unconnected Web sites to build a user profile.</t>
      <t>Over time, this capability (warned against explicitly in <xref target="RFC2109"/> and all of its successors)
has become widely used for varied reasons including:</t>
      <ul spacing="normal">
        <li>authenticating users across sites,</li>
        <li>assembling information on users,</li>
        <li>protecting against fraud and other forms of undesirable traffic,</li>
        <li>targeting advertisements at specific users or at users with specified attributes,</li>
        <li>measuring how often ads are shown to users, and</li>
        <li>recognizing when an ad resulted in a change in user behavior.</li>
      </ul>
      <t>While not every use of cookies is necessarily problematic for privacy, their potential for abuse
has become a widespread concern in the Internet community and broader society. In response to these concerns, user agents
have actively constrained cookie functionality in various ways (as allowed and encouraged by
previous specifications), while avoiding disruption to features they judge desirable for the health
of the Web.</t>
      <t>It is too early to declare consensus on which specific mechanism(s) should be used to mitigate cookies' privacy impact; user agents' ongoing changes to how they are handled are best characterised as experiments that
can provide input into that eventual consensus.</t>
      <t>Instead, this document describes limited, general mitigations against the privacy risks associated
with cookies that enjoy wide deployment at the time of writing. It is expected that implementations
will continue to experiment and impose stricter, more well-defined limitations on cookies over
time. Future versions of this document might codify those mechanisms based upon deployment
experience. If functions that currently rely on cookies can be supported by separate, targeted
mechanisms, they might be documented in separate specifications and stricter limitations on cookies
might become feasible.</t>
      <t>Note that cookies are not the only mechanism that can be used to track users across sites, so while
these mitigations are necessary to improve Web privacy, they are not sufficient on their own.</t>
      <section anchor="third-party-cookies">
        <name>Third-Party Cookies</name>
        <t>A "third-party" or cross-site cookie is one that is associated with embedded content (such as
scripts, images, stylesheets, frames) that is obtained from a different server than the one that
hosts the primary resource (usually, the Web page that the user is viewing). Third-party cookies
are often used to correlate users' activity on different sites.</t>
        <t>Because of their inherent privacy issues, most user agents now limit third-party cookies in a
variety of ways. Some completely block third-party cookies by refusing to process third-party
Set-Cookie header fields and refusing to send third-party Cookie header fields. Some partition
cookies based upon the first-party context, so that different cookies are sent depending on the
site being browsed. Some block cookies based upon user agent cookie policy and/or user controls.</t>
        <t>While this document does not endorse or require a specific approach, it is RECOMMENDED that user
agents adopt a policy for third-party cookies that is as restrictive as compatibility constraints
permit. Consequently, resources cannot rely upon third-party cookies being treated consistently by
user agents for the foreseeable future.</t>
      </section>
      <section anchor="cookie-policy">
        <name>Cookie Policy</name>
        <t>User agents MAY enforce a cookie policy consisting of restrictions on how
cookies may be used or ignored (see <xref target="ignoring-cookies"/>).</t>
        <t>A cookie policy may govern which domains or parties, as in first and third parties
(see <xref target="third-party-cookies"/>), for which the user agent will allow cookie access.
The policy can also define limits on cookie size, cookie expiry (see
<xref target="attribute-expires"/> and <xref target="attribute-max-age"/>), and the number of cookies per
domain or in total.</t>
        <t>The recomended cookie expiry upper limit is 400 days. User agents may set
a lower limit to enforce shorter data retention timelines, or set the limit higher
to support longer retention when appropriate (e.g., server-to-server
communication over HTTPS).</t>
        <t>The goal of a restrictive cookie policy is often to improve security or privacy.
User agents often allow users to change the cookie policy (see <xref target="user-controls"/>).</t>
      </section>
      <section anchor="user-controls">
        <name>User Controls</name>
        <t>User agents SHOULD provide users with a mechanism for managing the cookies
stored in the cookie store. For example, a user agent might let users delete
all cookies received during a specified time period or all the cookies related
to a particular domain. In addition, many user agents include a user interface
element that lets users examine the cookies stored in their cookie store.</t>
        <t>User agents SHOULD provide users with a mechanism for disabling cookies. When
cookies are disabled, the user agent MUST NOT include a Cookie header field in
outbound HTTP requests and the user agent MUST NOT process Set-Cookie header fields
in inbound HTTP responses.</t>
        <t>User agents MAY offer a way to change the cookie policy (see
<xref target="cookie-policy"/>).</t>
        <t>User agents MAY provide users the option of preventing persistent storage of
cookies across sessions. When configured thusly, user agents MUST treat all
received cookies as if the persistent-flag were set to false. Some popular
user agents expose this functionality via "private browsing" mode
<xref target="Aggarwal2010"/>.</t>
      </section>
      <section anchor="expiration-dates">
        <name>Expiration Dates</name>
        <t>Although servers can set the expiration date for cookies to the distant future,
most user agents do not actually retain cookies for multiple decades. Rather
than choosing gratuitously long expiration periods, servers SHOULD promote user
privacy by selecting reasonable cookie expiration periods based on the purpose
of the cookie. For example, a typical session identifier might reasonably be
set to expire in two weeks.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="overview-1">
        <name>Overview</name>
        <t>Cookies have a number of security pitfalls. This section overviews a few of the
more salient issues.</t>
        <t>In particular, cookies encourage developers to rely on ambient authority for
authentication, often becoming vulnerable to attacks such as cross-site request
forgery <xref target="CSRF"/>. Also, when storing session identifiers in cookies, developers
often create session fixation vulnerabilities.</t>
        <t>Transport-layer encryption, such as that employed in HTTPS, is insufficient to
prevent a network attacker from obtaining or altering a victim's cookies because
the cookie protocol itself has various vulnerabilities (see "Weak Confidentiality"
and "Weak Integrity", below). In addition, by default, cookies do not provide
confidentiality or integrity from network attackers, even when used in conjunction
with HTTPS.</t>
      </section>
      <section anchor="ambient-authority">
        <name>Ambient Authority</name>
        <t>A server that uses cookies to authenticate users can suffer security
vulnerabilities because some user agents let remote parties issue HTTP requests
from the user agent (e.g., via HTTP redirects or HTML forms). When issuing
those requests, user agents attach cookies even if the remote party does not
know the contents of the cookies, potentially letting the remote party exercise
authority at an unwary server.</t>
        <t>Although this security concern goes by a number of names (e.g., cross-site
request forgery, confused deputy), the issue stems from cookies being a form of
ambient authority. Cookies encourage server operators to separate designation
(in the form of URLs) from authorization (in the form of cookies).
Consequently, the user agent might supply the authorization for a resource
designated by the attacker, possibly causing the server or its clients to
undertake actions designated by the attacker as though they were authorized by
the user.</t>
        <t>Instead of using cookies for authorization, server operators might wish to
consider entangling designation and authorization by treating URLs as
capabilities. Instead of storing secrets in cookies, this approach stores
secrets in URLs, requiring the remote entity to supply the secret itself.
Although this approach is not a panacea, judicious application of these
principles can lead to more robust security.</t>
      </section>
      <section anchor="clear-text">
        <name>Clear Text</name>
        <t>Unless sent over a secure channel (such as TLS), the information in the Cookie
and Set-Cookie header fields is transmitted in the clear.</t>
        <ol spacing="normal" type="1"><li>All sensitive information conveyed in these header fields is exposed to an
eavesdropper.</li>
          <li>A malicious intermediary could alter the header fields as they travel in either
direction, with unpredictable results.</li>
          <li>A malicious client could alter the Cookie header fields before transmission,
with unpredictable results.</li>
        </ol>
        <t>Servers SHOULD encrypt and sign the contents of cookies (using whatever format
the server desires) when transmitting them to the user agent (even when sending
the cookies over a secure channel). However, encrypting and signing cookie
contents does not prevent an attacker from transplanting a cookie from one user
agent to another or from replaying the cookie at a later time.</t>
        <t>In addition to encrypting and signing the contents of every cookie, servers that
require a higher level of security SHOULD use the Cookie and Set-Cookie
header fields only over a secure channel. When using cookies over a secure channel,
servers SHOULD set the Secure attribute (see <xref target="attribute-secure"/>) for every
cookie. If a server does not set the Secure attribute, the protection
provided by the secure channel will be largely moot.</t>
        <t>For example, consider a webmail server that stores a session identifier in a
cookie and is typically accessed over HTTPS. If the server does not set the
Secure attribute on its cookies, an active network attacker can intercept any
outbound HTTP request from the user agent and redirect that request to the
webmail server over HTTP. Even if the webmail server is not listening for HTTP
connections, the user agent will still include cookies in the request. The
active network attacker can intercept these cookies, replay them against the
server, and learn the contents of the user's email. If, instead, the server had
set the Secure attribute on its cookies, the user agent would not have
included the cookies in the clear-text request.</t>
      </section>
      <section anchor="session-identifiers">
        <name>Session Identifiers</name>
        <t>Instead of storing session information directly in a cookie (where it might be
exposed to or replayed by an attacker), servers commonly store a nonce (or
"session identifier") in a cookie. When the server receives an HTTP request
with a nonce, the server can look up state information associated with the
cookie using the nonce as a key.</t>
        <t>Using session identifier cookies limits the damage an attacker can cause if the
attacker learns the contents of a cookie because the nonce is useful only for
interacting with the server (unlike non-nonce cookie content, which might itself
be sensitive). Furthermore, using a single nonce prevents an attacker from
"splicing" together cookie content from two interactions with the server, which
could cause the server to behave unexpectedly.</t>
        <t>Using session identifiers is not without risk. For example, the server SHOULD
take care to avoid "session fixation" vulnerabilities. A session fixation attack
proceeds in three steps. First, the attacker transplants a session identifier
from his or her user agent to the victim's user agent. Second, the victim uses
that session identifier to interact with the server, possibly imbuing the
session identifier with the user's credentials or confidential information.
Third, the attacker uses the session identifier to interact with server
directly, possibly obtaining the user's authority or confidential information.</t>
      </section>
      <section anchor="weak-confidentiality">
        <name>Weak Confidentiality</name>
        <t>Cookies do not provide isolation by port. If a cookie is readable by a service
running on one port, the cookie is also readable by a service running on another
port of the same server. If a cookie is writable by a service on one port, the
cookie is also writable by a service running on another port of the same server.
For this reason, servers SHOULD NOT both run mutually distrusting services on
different ports of the same host and use cookies to store security-sensitive
information.</t>
        <t>Cookies do not provide isolation by scheme. Although most commonly used with
the http and https schemes, the cookies for a given host might also be
available to other schemes, such as ftp and gopher. Although this lack of
isolation by scheme is most apparent in non-HTTP APIs that permit access to
cookies (e.g., HTML's document.cookie API), the lack of isolation by scheme
is actually present in requirements for processing cookies themselves (e.g.,
consider retrieving a URI with the gopher scheme via HTTP).</t>
        <t>Cookies do not always provide isolation by path. Although the network-level
protocol does not send cookies stored for one path to another, some user
agents expose cookies via non-HTTP APIs, such as HTML's document.cookie API.
Because some of these user agents (e.g., web browsers) do not isolate resources
received from different paths, a resource retrieved from one path might be able
to access cookies stored for another path.</t>
      </section>
      <section anchor="weak-integrity">
        <name>Weak Integrity</name>
        <t>Cookies do not provide integrity guarantees for sibling domains (and their
subdomains). For example, consider foo.site.example and bar.site.example. The
foo.site.example server can set a cookie with a Domain attribute of
"site.example" (possibly overwriting an existing "site.example" cookie set by
bar.site.example), and the user agent will include that cookie in HTTP requests
to bar.site.example. In the worst case, bar.site.example will be unable to
distinguish this cookie from a cookie it set itself. The foo.site.example
server might be able to leverage this ability to mount an attack against
bar.site.example.</t>
        <t>Even though the Set-Cookie header field supports the Path attribute, the Path
attribute does not provide any integrity protection because the user agent
will accept an arbitrary Path attribute in a Set-Cookie header field. For
example, an HTTP response to a request for http://site.example/foo/bar can set
a cookie with a Path attribute of "/qux". Consequently, servers SHOULD NOT
both run mutually distrusting services on different paths of the same host and
use cookies to store security-sensitive information.</t>
        <t>An active network attacker can also inject cookies into the Cookie header field
sent to https://site.example/ by impersonating a response from
http://site.example/ and injecting a Set-Cookie header field. The HTTPS server
at site.example will be unable to distinguish these cookies from cookies that
it set itself in an HTTPS response. An active network attacker might be able
to leverage this ability to mount an attack against site.example even if
site.example uses HTTPS exclusively.</t>
        <t>Servers can partially mitigate these attacks by encrypting and signing the
contents of their cookies, or by naming the cookie with the <tt>__Secure-</tt> prefix.
However, using cryptography does not mitigate the issue completely because an
attacker can replay a cookie he or she received from the authentic site.example
server in the user's session, with unpredictable results.</t>
        <t>Finally, an attacker might be able to force the user agent to delete cookies by
storing a large number of cookies. Once the user agent reaches its storage
limit, the user agent will be forced to evict some cookies. Servers SHOULD NOT
rely upon user agents retaining cookies.</t>
      </section>
      <section anchor="reliance-on-dns">
        <name>Reliance on DNS</name>
        <t>Cookies rely upon the Domain Name System (DNS) for security. If the DNS is
partially or fully compromised, the cookie protocol might fail to provide the
security properties required by applications.</t>
      </section>
      <section anchor="samesite-cookies">
        <name>SameSite Cookies</name>
        <section anchor="defense-in-depth">
          <name>Defense in depth</name>
          <t>"SameSite" cookies offer a robust defense against CSRF attack when deployed in
strict mode, and when supported by the client. It is, however, prudent to ensure
that this designation is not the extent of a site's defense against CSRF, as
same-site navigations and submissions can certainly be executed in conjunction
with other attack vectors such as cross-site scripting.</t>
          <t>Developers are strongly encouraged to deploy the usual server-side defenses
(CSRF tokens, ensuring that "safe" HTTP methods are idempotent, etc) to mitigate
the risk more fully.</t>
          <t>Additionally, client-side techniques such as those described in
<xref target="app-isolation"/> may also prove effective against CSRF, and are certainly worth
exploring in combination with "SameSite" cookies.</t>
        </section>
        <section anchor="top-level-navigations">
          <name>Top-level Navigations</name>
          <t>Setting the <tt>SameSite</tt> attribute in "strict" mode provides robust defense in
depth against CSRF attacks, but has the potential to confuse users unless sites'
developers carefully ensure that their cookie-based session management systems
deal reasonably well with top-level navigations.</t>
          <t>Consider the scenario in which a user reads their email at MegaCorp Inc's
webmail provider <tt>https://site.example/</tt>. They might expect that clicking on an
emailed link to <tt>https://projects.example/secret/project</tt> would show them the
secret project that they're authorized to see, but if <tt>https://projects.example</tt>
has marked their session cookies as <tt>SameSite=Strict</tt>, then this cross-site
navigation won't send them along with the request. <tt>https://projects.example</tt>
will render a 404 error to avoid leaking secret information, and the user will
be quite confused.</t>
          <t>Developers can avoid this confusion by adopting a session management system that
relies on not one, but two cookies: one conceptually granting "read" access,
another granting "write" access. The latter could be marked as <tt>SameSite=Strict</tt>,
and its absence would prompt a reauthentication step before executing any
non-idempotent action. The former could be marked as <tt>SameSite=Lax</tt>, in
order to allow users access to data via top-level navigation, or
<tt>SameSite=None</tt>, to permit access in all contexts (including cross-site
embedded contexts).</t>
        </section>
        <section anchor="mashups-and-widgets">
          <name>Mashups and Widgets</name>
          <t>The <tt>Lax</tt> and <tt>Strict</tt> values for the <tt>SameSite</tt> attribute are inappropriate
for some important use-cases. In particular, note that content intended for
embedding in cross-site contexts (social networking widgets or commenting
services, for instance) will not have access to same-site cookies. Cookies
which are required in these situations should be marked with <tt>SameSite=None</tt>
to allow access in cross-site contexts.</t>
          <t>Likewise, some forms of Single-Sign-On might require cookie-based authentication
in a cross-site context; these mechanisms will not function as intended with
same-site cookies and will also require <tt>SameSite=None</tt>.</t>
        </section>
        <section anchor="server-controlled">
          <name>Server-controlled</name>
          <t>SameSite cookies in and of themselves don't do anything to address the
general privacy concerns outlined in Section 7.1 of <xref target="RFC6265"/>. The "SameSite"
attribute is set by the server, and serves to mitigate the risk of certain kinds
of attacks that the server is worried about. The user is not involved in this
decision. Moreover, a number of side-channels exist which could allow a server
to link distinct requests even in the absence of cookies (for example, connection
and/or socket pooling between same-site and cross-site requests).</t>
        </section>
        <section anchor="reload-navigations">
          <name>Reload navigations</name>
          <t>Requests issued for reloads triggered through user interface elements (such as a
refresh button on a toolbar) are same-site only if the reloaded document was
originally navigated to via a same-site request. This differs from the handling
of other reload navigations, which are always same-site if top-level, since the
source browsing context's active document is precisely the document being
reloaded.</t>
          <t>This special handling of reloads triggered through a user interface element
avoids sending <tt>SameSite</tt> cookies on user-initiated reloads if they were
withheld on the original navigation (i.e., if the initial navigation were
cross-site). If the reload navigation were instead considered same-site, and
sent all the initially withheld <tt>SameSite</tt> cookies, the security benefits of
withholding the cookies in the first place would be nullified. This is
especially important given that the absence of <tt>SameSite</tt> cookies withheld on a
cross-site navigation request may lead to visible site breakage, prompting the
user to trigger a reload.</t>
          <t>For example, suppose the user clicks on a link from <tt>https://attacker.example/</tt>
to <tt>https://victim.example/</tt>. This is a cross-site request, so <tt>SameSite=Strict</tt>
cookies are withheld. Suppose this causes <tt>https://victim.example/</tt> to appear
broken, because the site only displays its sensitive content if a particular
<tt>SameSite</tt> cookie is present in the request. The user, frustrated by the
unexpectedly broken site, presses refresh on their browser's toolbar. To now
consider the reload request same-site and send the initially withheld <tt>SameSite</tt>
cookie would defeat the purpose of withholding it in the first place, as the
reload navigation triggered through the user interface may replay the original
(potentially malicious) request. Thus, the reload request should be considered
cross-site, like the request that initially navigated to the page.</t>
        </section>
        <section anchor="unsafe-top-level-requests">
          <name>Top-level requests with "unsafe" methods</name>
          <t>The "Lax" enforcement mode described in <xref target="strict-lax"/> allows a cookie to be
sent with a cross-site HTTP request if and only if it is a top-level navigation
with a "safe" HTTP method. Implementation experience shows that this is
difficult to apply as the default behavior, as some sites may rely on cookies
not explicitly specifying a <tt>SameSite</tt> attribute being included on top-level
cross-site requests with "unsafe" HTTP methods (as was the case prior to the
introduction of the <tt>SameSite</tt> attribute).</t>
          <t>For example, a login flow may involve a cross-site top-level <tt>POST</tt> request to
an endpoint which expects a cookie with login information. For such a cookie,
"Lax" enforcement is not appropriate, as it would cause the cookie to be
excluded due to the unsafe HTTP request method. On the other hand, "None"
enforcement would allow the cookie to be sent with all cross-site requests,
which may not be desirable due to the cookie's sensitive contents.</t>
          <t>The "Lax-allowing-unsafe" enforcement mode described in <xref target="lax-allowing-unsafe"/>
retains some of the protections of "Lax" enforcement (as compared to "None")
while still allowing cookies to be sent cross-site with unsafe top-level
requests.</t>
          <t>As a more permissive variant of "Lax" mode, "Lax-allowing-unsafe" mode
necessarily provides fewer protections against CSRF. Ultimately, the provision
of such an enforcement mode should be seen as a temporary, transitional measure
to ease adoption of "Lax" enforcement by default.</t>
        </section>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="iana-cookie">
        <name>Cookie</name>
        <t>The permanent message header field registry (see <xref target="RFC3864"/>) needs to be
updated with the following registration:</t>
        <dl>
          <dt>Header field name:</dt>
          <dd>
            <t>Cookie</t>
          </dd>
          <dt>Applicable protocol:</dt>
          <dd>
            <t>http</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>standard</t>
          </dd>
          <dt>Author/Change controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Specification document:</dt>
          <dd>
            <t>this specification (<xref target="cookie"/>)</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-set-cookie">
        <name>Set-Cookie</name>
        <t>The permanent message header field registry (see <xref target="RFC3864"/>) needs to be
updated with the following registration:</t>
        <dl>
          <dt>Header field name:</dt>
          <dd>
            <t>Set-Cookie</t>
          </dd>
          <dt>Applicable protocol:</dt>
          <dd>
            <t>http</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>standard</t>
          </dd>
          <dt>Author/Change controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Specification document:</dt>
          <dd>
            <t>this specification (<xref target="set-cookie"/>)</t>
          </dd>
        </dl>
      </section>
      <section anchor="cookie-attribute-registry">
        <name>Cookie Attribute Registry</name>
        <t>IANA is requested to create the "Cookie Attribute Registry", defining the
name space of attribute used to control cookies' behavior.
The registry should be maintained at
<eref target="https://www.iana.org/assignments/cookie-attribute-names">https://www.iana.org/assignments/cookie-attribute-names</eref>.</t>
        <section anchor="procedure">
          <name>Procedure</name>
          <t>Each registered attribute name is associated with a description, and a
reference detailing how the attribute is to be processed and stored.</t>
          <t>New registrations happen on a "RFC Required" basis (see Section 4.7 of
<xref target="RFC8126"/>). The attribute to be registered MUST match the <tt>extension-av</tt>
syntax defined in <xref target="abnf-syntax"/>. Note that attribute names are generally
defined in CamelCase, but technically accepted case-insensitively.</t>
        </section>
        <section anchor="registration">
          <name>Registration</name>
          <t>The "Cookie Attribute Registry" should be created with the registrations below:</t>
          <table>
            <thead>
              <tr>
                <th align="right">Name</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="right">Domain</td>
                <td align="left">
                  <xref target="attribute-domain"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Expires</td>
                <td align="left">
                  <xref target="attribute-expires"/> of this document</td>
              </tr>
              <tr>
                <td align="right">HttpOnly</td>
                <td align="left">
                  <xref target="attribute-httponly"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Max-Age</td>
                <td align="left">
                  <xref target="attribute-max-age"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Path</td>
                <td align="left">
                  <xref target="attribute-path"/> of this document</td>
              </tr>
              <tr>
                <td align="right">SameSite</td>
                <td align="left">
                  <xref target="attribute-samesite"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Secure</td>
                <td align="left">
                  <xref target="attribute-secure"/> of this document</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC1034">
          <front>
            <title>Domain names - concepts and facilities</title>
            <author fullname="P.V. Mockapetris" initials="P.V." surname="Mockapetris">
              <organization/>
            </author>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised basic definition of The Domain Name System.  It obsoletes RFC-882.  This memo describes the domain style names and their used for host address look up and electronic mail forwarding.  It discusses the clients and servers in the domain name system and the protocol used between them.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1034"/>
          <seriesInfo name="DOI" value="10.17487/RFC1034"/>
        </reference>
        <reference anchor="RFC1123">
          <front>
            <title>Requirements for Internet Hosts - Application and Support</title>
            <author fullname="R. Braden" initials="R." role="editor" surname="Braden">
              <organization/>
            </author>
            <date month="October" year="1989"/>
            <abstract>
              <t>This RFC is an official specification for the Internet community.  It incorporates by reference, amends, corrects, and supplements the primary protocol standards documents relating to hosts.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="3"/>
          <seriesInfo name="RFC" value="1123"/>
          <seriesInfo name="DOI" value="10.17487/RFC1123"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner">
              <organization/>
            </author>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification.  These words are often capitalized. This document defines these words as they should be interpreted in IETF documents.  This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC3490">
          <front>
            <title>Internationalizing Domain Names in Applications (IDNA)</title>
            <author initials="A." surname="Costello">
              <organization/>
            </author>
            <date year="2003" month="March"/>
          </front>
          <seriesInfo name="RFC" value="3490"/>
          <annotation>See <xref target="idna-migration"/> for an explanation why the normative reference to an obsoleted specification is needed.</annotation>
        </reference>
        <reference anchor="RFC4790">
          <front>
            <title>Internet Application Protocol Collation Registry</title>
            <author fullname="C. Newman" initials="C." surname="Newman">
              <organization/>
            </author>
            <author fullname="M. Duerst" initials="M." surname="Duerst">
              <organization/>
            </author>
            <author fullname="A. Gulbrandsen" initials="A." surname="Gulbrandsen">
              <organization/>
            </author>
            <date month="March" year="2007"/>
            <abstract>
              <t>Many Internet application protocols include string-based lookup, searching, or sorting operations.  However, the problem space for searching and sorting international strings is large, not fully explored, and is outside the area of expertise for the Internet Engineering Task Force (IETF).  Rather than attempt to solve such a large problem, this specification creates an abstraction framework so that application protocols can precisely identify a comparison function, and the repertoire of comparison functions can be extended in the future.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4790"/>
          <seriesInfo name="DOI" value="10.17487/RFC4790"/>
        </reference>
        <reference anchor="RFC5234">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker">
              <organization/>
            </author>
            <author fullname="P. Overell" initials="P." surname="Overell">
              <organization/>
            </author>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax.  Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications.  The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power.  The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges.  This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="RFC5890">
          <front>
            <title>Internationalized Domain Names for Applications (IDNA): Definitions and Document Framework</title>
            <author fullname="J. Klensin" initials="J." surname="Klensin">
              <organization/>
            </author>
            <date month="August" year="2010"/>
            <abstract>
              <t>This document is one of a collection that, together, describe the protocol and usage context for a revision of Internationalized Domain Names for Applications (IDNA), superseding the earlier version.  It describes the document collection and provides definitions and other material that are common to the set.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5890"/>
          <seriesInfo name="DOI" value="10.17487/RFC5890"/>
        </reference>
        <reference anchor="RFC6454">
          <front>
            <title>The Web Origin Concept</title>
            <author fullname="A. Barth" initials="A." surname="Barth">
              <organization/>
            </author>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document defines the concept of an "origin", which is often used as the scope of authority or privilege by user agents.  Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites.  In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string.  It also defines an HTTP header field, named "Origin", that indicates which origins are associated with an HTTP request.   [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6454"/>
          <seriesInfo name="DOI" value="10.17487/RFC6454"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton">
              <organization/>
            </author>
            <author fullname="B. Leiba" initials="B." surname="Leiba">
              <organization/>
            </author>
            <author fullname="T. Narten" initials="T." surname="Narten">
              <organization/>
            </author>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters.  To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper.  For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed.  This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="USASCII">
          <front>
            <title>Coded Character Set -- 7-bit American Standard Code for Information Interchange</title>
            <author>
              <organization>American National Standards Institute</organization>
            </author>
            <date year="1986"/>
          </front>
          <seriesInfo name="ANSI" value="X3.4"/>
        </reference>
        <reference anchor="FETCH" target="https://fetch.spec.whatwg.org/">
          <front>
            <title>Fetch</title>
            <author initials="A." surname="van Kesteren" fullname="Anne van Kesteren">
              <organization>Mozilla</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="HTML" target="https://html.spec.whatwg.org/">
          <front>
            <title>HTML</title>
            <author initials="I." surname="Hickson" fullname="Ian Hickson">
              <organization>Google, Inc.</organization>
            </author>
            <author initials="S." surname="Pieters" fullname="Simon Pieters">
              <organization>Opera</organization>
            </author>
            <author initials="A." surname="van Kesteren" fullname="Anne van Kesteren">
              <organization>Mozilla</organization>
            </author>
            <author initials="P." surname="Jägenstedt" fullname="Philip Jägenstedt">
              <organization>Opera</organization>
            </author>
            <author initials="D." surname="Denicola" fullname="Domenic Denicola">
              <organization>Google, Inc.</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="DOM-DOCUMENT-COOKIE" target="https://html.spec.whatwg.org/#dom-document-cookie">
          <front>
            <title>HTML - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date year="2021" month="May" day="18"/>
          </front>
        </reference>
        <reference anchor="SAMESITE" target="https://html.spec.whatwg.org/#same-site">
          <front>
            <title>HTML - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date year="2021" month="January" day="26"/>
          </front>
        </reference>
        <reference anchor="SERVICE-WORKERS" target="http://www.w3.org/TR/service-workers/">
          <front>
            <title>Service Workers</title>
            <author initials="A." surname="Russell" fullname="Alex Russell">
              <organization/>
            </author>
            <author initials="J." surname="Song" fullname="Jungkee Song">
              <organization/>
            </author>
            <author initials="J." surname="Archibald" fullname="Jake Archibald">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="HTTPSEM">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="Roy T. Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke">
              <organization>greenbytes GmbH</organization>
            </author>
            <date day="12" month="September" year="2021"/>
            <abstract>
              <t>   The Hypertext Transfer Protocol (HTTP) is a stateless application-
   level protocol for distributed, collaborative, hypertext information
   systems.  This document describes the overall architecture of HTTP,
   establishes common terminology, and defines aspects of the protocol
   that are shared by all versions.  In this definition are core
   protocol elements, extensibility mechanisms, and the "http" and
   "https" Uniform Resource Identifier (URI) schemes.

   This document updates RFC 3864 and obsoletes RFC 2818, RFC 7231, RFC
   7232, RFC 7233, RFC 7235, RFC 7538, RFC 7615, RFC 7694, and portions
   of RFC 7230.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-semantics-19"/>
        </reference>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC2818">
          <front>
            <title>HTTP Over TLS</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla">
              <organization/>
            </author>
            <date month="May" year="2000"/>
            <abstract>
              <t>This memo describes how to use Transport Layer Security (TLS) to secure Hypertext Transfer Protocol (HTTP) connections over the Internet.  This memo provides information for the Internet community.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2818"/>
          <seriesInfo name="DOI" value="10.17487/RFC2818"/>
        </reference>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee">
              <organization/>
            </author>
            <author fullname="R. Fielding" initials="R." surname="Fielding">
              <organization/>
            </author>
            <author fullname="L. Masinter" initials="L." surname="Masinter">
              <organization/>
            </author>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource.  This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet.  The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier.  This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="RFC6265">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="A. Barth" initials="A." surname="Barth">
              <organization/>
            </author>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol.  Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet.  This document obsoletes RFC 2965.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
        <reference anchor="RFC3629">
          <front>
            <title>UTF-8, a transformation format of ISO 10646</title>
            <author fullname="F. Yergeau" initials="F." surname="Yergeau">
              <organization/>
            </author>
            <date month="November" year="2003"/>
            <abstract>
              <t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems.  The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo.  UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values.  This memo obsoletes and replaces RFC 2279.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="63"/>
          <seriesInfo name="RFC" value="3629"/>
          <seriesInfo name="DOI" value="10.17487/RFC3629"/>
        </reference>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson">
              <organization/>
            </author>
            <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>
        <reference anchor="RFC3864">
          <front>
            <title>Registration Procedures for Message Header Fields</title>
            <author fullname="G. Klyne" initials="G." surname="Klyne">
              <organization/>
            </author>
            <author fullname="M. Nottingham" initials="M." surname="Nottingham">
              <organization/>
            </author>
            <author fullname="J. Mogul" initials="J." surname="Mogul">
              <organization/>
            </author>
            <date month="September" year="2004"/>
            <abstract>
              <t>This specification defines registration procedures for the message header fields used by Internet mail, HTTP, Netnews and other 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="90"/>
          <seriesInfo name="RFC" value="3864"/>
          <seriesInfo name="DOI" value="10.17487/RFC3864"/>
        </reference>
        <reference anchor="RFC5895">
          <front>
            <title>Mapping Characters for Internationalized Domain Names in Applications (IDNA) 2008</title>
            <author fullname="P. Resnick" initials="P." surname="Resnick">
              <organization/>
            </author>
            <author fullname="P. Hoffman" initials="P." surname="Hoffman">
              <organization/>
            </author>
            <date month="September" year="2010"/>
            <abstract>
              <t>In the original version of the Internationalized Domain Names in Applications (IDNA) protocol, any Unicode code points taken from user input were mapped into a set of Unicode code points that "made sense", and then encoded and passed to the domain name system (DNS). The IDNA2008 protocol (described in RFCs 5890, 5891, 5892, and 5893) presumes that the input to the protocol comes from a set of "permitted" code points, which it then encodes and passes to the DNS, but does not specify what to do with the result of user input.  This document describes the actions that can be taken by an implementation between receiving user input and passing permitted code points to the new IDNA protocol.  This document is not an Internet Standards Track  specification; it is published for informational purposes.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5895"/>
          <seriesInfo name="DOI" value="10.17487/RFC5895"/>
        </reference>
        <reference anchor="RFC7034">
          <front>
            <title>HTTP Header Field X-Frame-Options</title>
            <author fullname="D. Ross" initials="D." surname="Ross">
              <organization/>
            </author>
            <author fullname="T. Gondrom" initials="T." surname="Gondrom">
              <organization/>
            </author>
            <date month="October" year="2013"/>
            <abstract>
              <t>To improve the protection of web applications against clickjacking, this document describes the X-Frame-Options HTTP header field, which declares a policy, communicated from the server to the client browser, regarding whether the browser may display the transmitted content in frames that are part of other web pages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7034"/>
          <seriesInfo name="DOI" value="10.17487/RFC7034"/>
        </reference>
        <reference anchor="UTS46" target="http://unicode.org/reports/tr46/">
          <front>
            <title>Unicode IDNA Compatibility Processing</title>
            <author initials="M." surname="Davis" fullname="Mark Davis">
              <organization/>
            </author>
            <author initials="M." surname="Suignard" fullname="Michel Suignard">
              <organization/>
            </author>
            <date year="2016" month="June"/>
          </front>
          <seriesInfo name="UNICODE" value="Unicode Technical Standards # 46"/>
        </reference>
        <reference anchor="CSRF" target="http://portal.acm.org/citation.cfm?id=1455770.1455782">
          <front>
            <title>Robust Defenses for Cross-Site Request Forgery</title>
            <author initials="A." surname="Barth" fullname="Adam Barth">
              <organization/>
            </author>
            <author initials="C." surname="Jackson">
              <organization/>
            </author>
            <author initials="J." surname="Mitchell">
              <organization/>
            </author>
            <date year="2008" month="October"/>
          </front>
          <seriesInfo name="DOI" value="10.1145/1455770.1455782"/>
          <seriesInfo name="ISBN" value="978-1-59593-810-7"/>
          <seriesInfo name="ACM" value="CCS '08: Proceedings of the 15th ACM conference on Computer and communications security (pages 75-88)"/>
        </reference>
        <reference anchor="Aggarwal2010" target="http://www.usenix.org/events/sec10/tech/full_papers/Aggarwal.pdf">
          <front>
            <title>An Analysis of Private Browsing Modes in Modern Browsers</title>
            <author initials="G." surname="Aggarwal">
              <organization/>
            </author>
            <author initials="E." surname="Burzstein">
              <organization/>
            </author>
            <author initials="C." surname="Jackson">
              <organization/>
            </author>
            <author initials="D." surname="Boneh">
              <organization/>
            </author>
            <date year="2010"/>
          </front>
        </reference>
        <reference anchor="app-isolation" target="http://www.collinjackson.com/research/papers/appisolation.pdf">
          <front>
            <title>App Isolation - Get the Security of Multiple Browsers with Just One</title>
            <author initials="E." surname="Chen" fullname="Eric Y. Chen">
              <organization/>
            </author>
            <author initials="J." surname="Bau" fullname="Jason Bau">
              <organization/>
            </author>
            <author initials="C." surname="Reis" fullname="Charles Reis">
              <organization/>
            </author>
            <author initials="A." surname="Barth" fullname="Adam Barth">
              <organization/>
            </author>
            <author initials="C." surname="Jackson" fullname="Collin Jackson">
              <organization/>
            </author>
            <date year="2011"/>
          </front>
        </reference>
        <reference anchor="prerendering" target="https://www.chromium.org/developers/design-documents/prerender">
          <front>
            <title>Chrome Prerendering</title>
            <author initials="C." surname="Bentzel" fullname="Chris Bentzel">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="I-D.ietf-httpbis-cookie-alone">
          <front>
            <title>Deprecate modification of 'secure' cookies from non-secure origins</title>
            <author fullname="Mike West">
	 </author>
            <date day="5" month="September" year="2016"/>
            <abstract>
              <t>   This document updates RFC6265 by removing the ability for a non-
   secure origin to set cookies with a 'secure' flag, and to overwrite
   cookies whose 'secure' flag is set.  This deprecation improves the
   isolation between HTTP and HTTPS origins, and reduces the risk of
   malicious interference.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-cookie-alone-01"/>
        </reference>
        <reference anchor="I-D.ietf-httpbis-cookie-prefixes">
          <front>
            <title>Cookie Prefixes</title>
            <author fullname="Mike West">
	 </author>
            <date day="23" month="February" year="2016"/>
            <abstract>
              <t>   This document updates RFC6265 by adding a set of restrictions upon
   the names which may be used for cookies with specific properties.
   These restrictions enable user agents to smuggle cookie state to the
   server within the confines of the existing "Cookie" request header
   syntax, and limits the ways in which cookies may be abused in a
   conforming user agent.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-cookie-prefixes-00"/>
        </reference>
        <reference anchor="I-D.ietf-httpbis-cookie-same-site">
          <front>
            <title>Same-Site Cookies</title>
            <author fullname="Mike West">
	 </author>
            <author fullname="Mark Goodwin">
	 </author>
            <date day="20" month="June" year="2016"/>
            <abstract>
              <t>   This document updates RFC6265 by defining a "SameSite" attribute
   which allows servers to assert that a cookie ought not to be sent
   along with cross-site requests.  This assertion allows user agents to
   mitigate the risk of cross-origin information leakage, and provides
   some protection against cross-site request forgery attacks.

              </t>
            </abstract>
          </front>
          <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-cookie-same-site-00"/>
        </reference>
        <reference anchor="PSL" target="https://publicsuffix.org/list/">
          <front>
            <title>Public Suffix List</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC2109">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="D. Kristol" initials="D." surname="Kristol">
              <organization/>
            </author>
            <author fullname="L. Montulli" initials="L." surname="Montulli">
              <organization/>
            </author>
            <date month="February" year="1997"/>
            <abstract>
              <t>This document specifies a way to create a stateful session with HTTP requests and responses.  It describes two new headers, Cookie and Set- Cookie, which carry state information between participating origin servers and user agents.  The method described here differs from Netscape's Cookie proposal, but it can interoperate with HTTP/1.0 user agents that use Netscape's method.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2109"/>
          <seriesInfo name="DOI" value="10.17487/RFC2109"/>
        </reference>
      </references>
    </references>
    <section anchor="changes">
      <name>Changes</name>
      <section anchor="draft-ietf-httpbis-rfc6265bis-00">
        <name>draft-ietf-httpbis-rfc6265bis-00</name>
        <ul spacing="normal">
          <li>Port <xref target="RFC6265"/> to Markdown. No (intentional) normative changes.</li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-01">
        <name>draft-ietf-httpbis-rfc6265bis-01</name>
        <ul spacing="normal">
          <li>
            <t>Fixes to formatting caused by mistakes in the initial port to Markdown:  </t>
            <ul spacing="normal">
              <li>
                <eref target="https://github.com/httpwg/http-extensions/issues/243">https://github.com/httpwg/http-extensions/issues/243</eref></li>
              <li>
                <eref target="https://github.com/httpwg/http-extensions/issues/246">https://github.com/httpwg/http-extensions/issues/246</eref></li>
            </ul>
          </li>
          <li>Addresses errata 3444 by updating the <tt>path-value</tt> and <tt>extension-av</tt>
grammar, errata 4148 by updating the <tt>day-of-month</tt>, <tt>year</tt>, and <tt>time</tt>
grammar, and errata 3663 by adding the requested note.
<eref target="https://www.rfc-editor.org/errata_search.php?rfc=6265">https://www.rfc-editor.org/errata_search.php?rfc=6265</eref></li>
          <li>Dropped <tt>Cookie2</tt> and <tt>Set-Cookie2</tt> from the IANA Considerations section:
<eref target="https://github.com/httpwg/http-extensions/issues/247">https://github.com/httpwg/http-extensions/issues/247</eref></li>
          <li>Merged the recommendations from <xref target="I-D.ietf-httpbis-cookie-alone"/>, removing
the ability for a non-secure origin to set cookies with a 'secure' flag, and
to overwrite cookies whose 'secure' flag is true.</li>
          <li>Merged the recommendations from <xref target="I-D.ietf-httpbis-cookie-prefixes"/>, adding
<tt>__Secure-</tt> and <tt>__Host-</tt> cookie name prefix processing instructions.</li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-02">
        <name>draft-ietf-httpbis-rfc6265bis-02</name>
        <ul spacing="normal">
          <li>Merged the recommendations from <xref target="I-D.ietf-httpbis-cookie-same-site"/>, adding
support for the <tt>SameSite</tt> attribute.</li>
          <li>
            <t>Closed a number of editorial bugs:  </t>
            <ul spacing="normal">
              <li>Clarified address bar behavior for SameSite cookies:
<eref target="https://github.com/httpwg/http-extensions/issues/201">https://github.com/httpwg/http-extensions/issues/201</eref></li>
              <li>Added the word "Cookies" to the document's name:
<eref target="https://github.com/httpwg/http-extensions/issues/204">https://github.com/httpwg/http-extensions/issues/204</eref></li>
              <li>Clarified that the <tt>__Host-</tt> prefix requires an explicit <tt>Path</tt> attribute:
<eref target="https://github.com/httpwg/http-extensions/issues/222">https://github.com/httpwg/http-extensions/issues/222</eref></li>
              <li>Expanded the options for dealing with third-party cookies to include a
brief mention of partitioning based on first-party:
<eref target="https://github.com/httpwg/http-extensions/issues/248">https://github.com/httpwg/http-extensions/issues/248</eref></li>
              <li>Noted that double-quotes in cookie values are part of the value, and are
not stripped: <eref target="https://github.com/httpwg/http-extensions/issues/295">https://github.com/httpwg/http-extensions/issues/295</eref></li>
              <li>Fixed the "site for cookies" algorithm to return something that makes
sense: <eref target="https://github.com/httpwg/http-extensions/issues/302">https://github.com/httpwg/http-extensions/issues/302</eref></li>
            </ul>
          </li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-03">
        <name>draft-ietf-httpbis-rfc6265bis-03</name>
        <ul spacing="normal">
          <li>Clarified handling of invalid SameSite values:
<eref target="https://github.com/httpwg/http-extensions/issues/389">https://github.com/httpwg/http-extensions/issues/389</eref></li>
          <li>Reflect widespread implementation practice of including a cookie's
<tt>host-only-flag</tt> when calculating its uniqueness:
<eref target="https://github.com/httpwg/http-extensions/issues/199">https://github.com/httpwg/http-extensions/issues/199</eref></li>
          <li>Introduced an explicit "None" value for the SameSite attribute:
<eref target="https://github.com/httpwg/http-extensions/issues/788">https://github.com/httpwg/http-extensions/issues/788</eref></li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-04">
        <name>draft-ietf-httpbis-rfc6265bis-04</name>
        <ul spacing="normal">
          <li>Allow <tt>SameSite</tt> cookies to be set for all top-level navigations.
<eref target="https://github.com/httpwg/http-extensions/issues/594">https://github.com/httpwg/http-extensions/issues/594</eref></li>
          <li>Treat <tt>Set-Cookie: token</tt> as creating the cookie <tt>("", "token")</tt>:
<eref target="https://github.com/httpwg/http-extensions/issues/159">https://github.com/httpwg/http-extensions/issues/159</eref></li>
          <li>Reject cookies with neither name nor value (e.g. <tt>Set-Cookie: =</tt> and
<tt>Set-Cookie:</tt>:  <eref target="https://github.com/httpwg/http-extensions/issues/159">https://github.com/httpwg/http-extensions/issues/159</eref></li>
          <li>Clarified behavior of multiple <tt>SameSite</tt> attributes in a cookie string:
<eref target="https://github.com/httpwg/http-extensions/issues/901">https://github.com/httpwg/http-extensions/issues/901</eref></li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-05">
        <name>draft-ietf-httpbis-rfc6265bis-05</name>
        <ul spacing="normal">
          <li>Typos and editorial fixes:
<eref target="https://github.com/httpwg/http-extensions/pull/1035">https://github.com/httpwg/http-extensions/pull/1035</eref>,
<eref target="https://github.com/httpwg/http-extensions/pull/1038">https://github.com/httpwg/http-extensions/pull/1038</eref>,
<eref target="https://github.com/httpwg/http-extensions/pull/1040">https://github.com/httpwg/http-extensions/pull/1040</eref>,
<eref target="https://github.com/httpwg/http-extensions/pull/1047">https://github.com/httpwg/http-extensions/pull/1047</eref>.</li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-06">
        <name>draft-ietf-httpbis-rfc6265bis-06</name>
        <ul spacing="normal">
          <li>Editorial fixes: <eref target="https://github.com/httpwg/http-extensions/issues/1059">https://github.com/httpwg/http-extensions/issues/1059</eref>,
<eref target="https://github.com/httpwg/http-extensions/issues/1158">https://github.com/httpwg/http-extensions/issues/1158</eref>.</li>
          <li>Created a registry for cookie attribute names:
<eref target="https://github.com/httpwg/http-extensions/pull/1060">https://github.com/httpwg/http-extensions/pull/1060</eref>.</li>
          <li>Tweaks to ABNF for <tt>cookie-pair</tt> and the <tt>Cookie</tt> header
production: <eref target="https://github.com/httpwg/http-extensions/issues/1074">https://github.com/httpwg/http-extensions/issues/1074</eref>,
<eref target="https://github.com/httpwg/http-extensions/issues/1119">https://github.com/httpwg/http-extensions/issues/1119</eref>.</li>
          <li>Fixed serialization for nameless/valueless cookies:
<eref target="https://github.com/httpwg/http-extensions/pull/1143">https://github.com/httpwg/http-extensions/pull/1143</eref>.</li>
          <li>Converted a normative reference to Mozilla's Public Suffix List <xref target="PSL"/> into
an informative reference:
<eref target="https://github.com/httpwg/http-extensions/issues/1159">https://github.com/httpwg/http-extensions/issues/1159</eref>.</li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-07">
        <name>draft-ietf-httpbis-rfc6265bis-07</name>
        <ul spacing="normal">
          <li>Moved instruction to ignore cookies with empty cookie-name and cookie-value
from <xref target="set-cookie"/> to <xref target="storage-model"/> to ensure that they apply to cookies
created without parsing a cookie string:
<eref target="https://github.com/httpwg/http-extensions/issues/1234">https://github.com/httpwg/http-extensions/issues/1234</eref>.</li>
          <li>Add a default enforcement value to the <tt>same-site-flag</tt>, equivalent to
"SameSite=Lax":
<eref target="https://github.com/httpwg/http-extensions/pull/1325">https://github.com/httpwg/http-extensions/pull/1325</eref>.</li>
          <li>Require a Secure attribute for "SameSite=None":
<eref target="https://github.com/httpwg/http-extensions/pull/1323">https://github.com/httpwg/http-extensions/pull/1323</eref>.</li>
          <li>Consider scheme when running the same-site algorithm:
 <eref target="https://github.com/httpwg/http-extensions/pull/1324">https://github.com/httpwg/http-extensions/pull/1324</eref>.</li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-08">
        <name>draft-ietf-httpbis-rfc6265bis-08</name>
        <ul spacing="normal">
          <li>Define "same-site" for reload navigation requests, e.g. those triggered via
user interface elements:
<eref target="https://github.com/httpwg/http-extensions/pull/1384">https://github.com/httpwg/http-extensions/pull/1384</eref></li>
          <li>Consider redirects when defining same-site:
<eref target="https://github.com/httpwg/http-extensions/pull/1348">https://github.com/httpwg/http-extensions/pull/1348</eref></li>
          <li>Align on using HTML terminology for origins:
<eref target="https://github.com/httpwg/http-extensions/pull/1416">https://github.com/httpwg/http-extensions/pull/1416</eref></li>
          <li>Modify cookie parsing and creation algorithms in <xref target="set-cookie"/> and
<xref target="storage-model"/> to explicitly handle control characters:
<eref target="https://github.com/httpwg/http-extensions/pull/1420">https://github.com/httpwg/http-extensions/pull/1420</eref></li>
          <li>Refactor cookie retrieval algorithm to support non-HTTP APIs:
<eref target="https://github.com/httpwg/http-extensions/pull/1428">https://github.com/httpwg/http-extensions/pull/1428</eref></li>
          <li>Define "Lax-allowing-unsafe" SameSite enforcement mode:
<eref target="https://github.com/httpwg/http-extensions/pull/1435">https://github.com/httpwg/http-extensions/pull/1435</eref></li>
          <li>Consistently use "header field" (vs 'header"):
<eref target="https://github.com/httpwg/http-extensions/pull/1527">https://github.com/httpwg/http-extensions/pull/1527</eref></li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-09">
        <name>draft-ietf-httpbis-rfc6265bis-09</name>
        <ul spacing="normal">
          <li>Update cookie size requirements:
<eref target="https://github.com/httpwg/http-extensions/pull/1563">https://github.com/httpwg/http-extensions/pull/1563</eref></li>
          <li>Reject cookies with control characters:
<eref target="https://github.com/httpwg/http-extensions/pull/1576">https://github.com/httpwg/http-extensions/pull/1576</eref></li>
          <li>No longer treat horizontal tab as a control character:
<eref target="https://github.com/httpwg/http-extensions/pull/1589">https://github.com/httpwg/http-extensions/pull/1589</eref></li>
          <li>Specify empty domain attribute handling:
<eref target="https://github.com/httpwg/http-extensions/pull/1709">https://github.com/httpwg/http-extensions/pull/1709</eref></li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-10">
        <name>draft-ietf-httpbis-rfc6265bis-10</name>
        <ul spacing="normal">
          <li>Standardize Max-Age/Expires upper bound:
<eref target="https://github.com/httpwg/http-extensions/pull/1732">https://github.com/httpwg/http-extensions/pull/1732</eref></li>
        </ul>
      </section>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>RFC 6265 was written by Adam Barth. This document is an update of RFC 6265,
adding features and aligning the specification with the reality of today's
deployments. Here, we're standing upon the shoulders of a giant since the
majority of the text is still Adam's.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA9y963LbSHco+r+fAoeulKUpkpbky9iaTHY0tjyjxLdtyXuS
SqU+gSQo4TMJMAAomeNynua8yXmxva7dqwFQku2Z2rvOV5WMTAB9Wb163S+j
0cg1ebPIDpPB87L8mGf1YfLb2dm75LRJmyx5nRbpRbbMiiZ5nU0v0yKvlwM3
K6dFuoRvZlU6b0Z51sxHl02zmuT1qJpPnxw8eYx/7u+5GQxymHx+cXR2/MVN
4R8XZbU5TOpm5spJXS6yBifED5zLV9Vhsqqyxw9/fHpWrevmYG/v2d6BS6ss
PUyOVqtFDiPkZVEnaTFL3mfpYnSWLzN3XVYfL6pyveKlu1V+mPxHU06HCfy/
vJjB6odJXVZNlc1r+GuzlD+aKp/Co2m5XKXyB24VHuXFIi+y/3R1A1P9LV2U
BWxjk9XJvb+5eplWzd/+a13S2ovSuausWGeHLknsKpKk2azgq99hdXlxkfyK
z+DXyxIhh+CqDx88wP9eX4zL6uIBPFum+eIw8fAcXV/88/VDfAjP0mp6Gb5b
5HVTj/nhgyN4lF9l9YN36wkA6YEdAIetslUZPr3Im8v1ZAybldnpP6PsU5MV
NYL3wSKdZIv6gZyj4w9GeV2vsxE94yPDZy5dN5dldehGME9eAEBejZPnl1kB
/2QceZUvNvpLVSKmZbO8KSv4J6wdMOoPOtTD5NeyvFhkyatXz+FRxqCYXi7g
83++oEe45DDP6Tg5LuDXy7SaNX620yaD04if3Djr6/KPfLFIw5R15r/95yU/
jCd+PU5+z+ow5ev8Y6a/fPUGlx+v68buL0nWVR4OawmDX8PYjCF+Df8Ca8gX
gJtZ5dfxL+VlYX+9cS14nbJhclJMw1qu5dt/TvEhrcYVZbWET64Ivd+/fL6/
9/CR/rl/8FD+PNjffyZ/Pnz0bA//hAmvsqrKZ3xx6BelNCdFk1UFrSRd5H/g
7XhRwhqK5A3spIYtxtd95+TFm6PdAY1RZxUQqbyYlzwLTXqY4LT0b6Y4QDoe
jvYe0i+Kofz2SP4rgHw3Tl6miwZIAcE+fvJbOZ8v0yL+/Qjwu6ybbLEoefgC
wHmaZcnnz/msSEfL/KKidX/5kszLCp4n2acVQJZ+TK4vN0lzmSUesHA751mV
FdMMyBW+rYRxltSrbJrPBQxJXidFls2y2Zgh/ehHhjT8+fjAn8rjp/7XJ48e
669P9w+e4J8fTo9On5+cHEbH8byEQeGKphVQwayCzTTJaJT8OJrkTXK0BIBP
YVmnSArhViT4Ou3sBA6BNgGLoyNFBnGRbTunozenJ4fJvz0cPzIHtf/s6ZOe
U2ohq67hjeCMX0wNE9ewj3WTwZcvj8+e/yZ7S6uLrAn3aJ4108sxAnR8fZk2
geR6MLzENzpLUXTRo7+CVfwr3Ec8MXnEt++oKLK+p9uozW9nr1/1L/WyWS5u
XCl+evNCTwB38+nHuozXeALLi3/vI1BEFcbdQYHgvgPOklV1NOhpvoTzj5/E
w75dZVX610KzNTTc3X/5//7fC+BncI2aaOR3l/kiX/U8vtOaX4yTF1mRT0uZ
VUcF8oU/tx/eCN4Xb1+PXrx9/uH18Zuz0fO3b//15PgrEOLerFyOQBBbo8Qy
mpLs1kaSZATc9wrJq96XiEQe7I/2Ho/2n27FJZgH5Jffjs5+/xV+OT16fXx6
cvZVi6wBOqM6b75lafujgy5p2LK04/f/6+T58ej3t+//9fj9aXeFsMDr62uV
l87ePwDydJVPsxHKjoC30f065WckuSlO30QT3q/rGthBjMCL7FP0IPoI2Pdp
WVxEX/zLurj4CGzEP2h/QVLeJF3M4s9SkD7CI5crUfYs++Dp/lNlzkBtlTmA
AKe/PjlQ7v3oySP/7tMnhqc87n72o4gCH85OHz3pBfkaL8MsI5ijDFo19YOm
evQkgvbgA7+VIJMH5gKyeJNP4JI2m+RdVU6zGrjIxTam8uHNyfO3L47NMGeg
p8CfEZO4lzx6MogQbP/JaG87dqmc9yK9ymNq9zqtPpqf2x+crvOLQpE5CIjT
y2xhnz0/ff+yF2IIo3QxTqdLAto0b4h2jKfz5f/IZz/vP3r8+Mcf98b036cH
FozvywmoTECA5kDWQIZCBv28Kut6dArXD7Sl/1oDKU1ewrBZtYlFpaeoqt2G
5b+A1nMZ4/gsXZqfow+eAwVOA6dp4/LrvEGYLLac6ou3ICnswz5how/6Np0k
J6e/vDlMnv0Iax89fvb42cPR0/290Y8qazx/jYLN89Pk/t7TQ8YjkISLizop
5yR/7T9uLvE1UPoKlb+AjyH+rVEIQhUT9UHEYRFD62wKsjmg5c4KlOI6+fHx
6OlTEkuPLi7S6jpdAF6J8LsVkr+O/dvdh8cA5nX1B7ClvAduN8EUGNMvoKRe
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
D5jlBAWfnwEA

-->

</rfc>
