<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.6.17 (Ruby 3.1.2) -->
<?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-11" category="std" consensus="true" obsoletes="6265" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.15.2 -->
  <front>
    <title>Cookies: HTTP State Management Mechanism</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-rfc6265bis-11"/>
    <author initials="S." surname="Bingler" fullname="Steven Bingler" role="editor">
      <organization>Google LLC</organization>
      <address>
        <email>bingler@google.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
                      ; US-ASCII characters 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>Per the grammar above, servers SHOULD NOT produce nameless cookies (i.e.: an
empty cookie-name) as such cookies may be unpredictably serialized by UAs when
sent back to the server.</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>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 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>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>NOTE: The name of an attribute-value pair is not case sensitive. So while they
are presented here in CamelCase, such as "HttpOnly" or "SameSite", any case is
accepted. E.x.: "httponly", "Httponly", "hTTPoNLY", etc.</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.)  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="server-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 user agent requirements for the prefixes described below are detailed in
<xref target="ua-name-prefixes"/>.</t>
          <t>To maximize compatibility with user agents servers SHOULD use prefixes as
described below.</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>How user agents handle Service Workers may differ, but user agents SHOULD
match the <xref target="SERVICE-WORKERS"/> specification.</t>
          </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="ua-name-prefixes">
        <name>Cookie Name Prefixes</name>
        <t>User agents' requirements for cookie name prefixes differ slightly from
servers' (<xref target="server-name-prefixes"/>) in that UAs MUST match the prefix string
case-insensitively.</t>
        <t>The normative requirements for the prefixes are detailed in the storage model
algorithm defined in <xref target="storage-model"/>.</t>
        <t>This is because some servers will process cookie case-insensitively, resulting
in them unintentionally miscapitalizing and accepting miscapitalized prefixes.</t>
        <t>For example, if a server sends the following <tt>Set-Cookie</tt> header field</t>
        <artwork><![CDATA[
Set-Cookie: __SECURE-SID=12345
]]></artwork>
        <t>to a UA which checks prefixes case-sensitively it will accept this cookie and
the server would incorrectly believe the cookie is subject the same guarantees
as one spelled <tt>__Secure-</tt>.</t>
        <t>Additionally the server is vulnerable to an attacker that purposefully
miscapitalizes a cookie in order to impersonate a prefixed cookie. For example,
a site already has a cookie <tt>__Secure-SID=12345</tt> and by some means an attacker
sends the following <tt>Set-Cookie</tt> header field for the site to a UA which checks
prefixes case-sensitively.</t>
        <artwork><![CDATA[
Set-Cookie: __SeCuRe-SID=evil
]]></artwork>
        <t>The next time a user visits the site the UA will send both cookies:</t>
        <artwork><![CDATA[
Cookie: __Secure-SID=12345; __SeCuRe-SID=evil
]]></artwork>
        <t>The server, being case-insensitive, won't be able to tell the difference
between the two cookies allowing the attacker to compromise the site.</t>
        <t>To prevent these issues, UAs MUST match cookie name prefixes case-insensitive.</t>
        <t>Note: Cookies with different names are still considered separate by UAs. So
both <tt>__Secure-foo=bar</tt> and <tt>__secure-foo=baz</tt> can exist as distinct cookies
simultaneously and both would have the requirements of the <tt>__Secure-</tt> prefix
applied.</t>
        <t>The following are examples of <tt>Set-Cookie</tt> header fields that would be rejected
by a conformant user agent.</t>
        <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example
Set-Cookie: __secure-SID=12345; Domain=site.example
Set-Cookie: __SECURE-SID=12345; Domain=site.example
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=/
Set-Cookie: __host-SID=12345; Secure; Domain=site.example; Path=/
Set-Cookie: __HOST-SID=12345; Secure; Domain=site.example; Path=/
]]></sourcecode>
        <t>Whereas the following <tt>Set-Cookie</tt> header fields would be accepted if set from
a secure origin.</t>
        <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example; Secure
Set-Cookie: __secure-SID=12345; Domain=site.example; Secure
Set-Cookie: __SECURE-SID=12345; Domain=site.example; Secure
Set-Cookie: __Host-SID=12345; Secure; Path=/
Set-Cookie: __host-SID=12345; Secure; Path=/
Set-Cookie: __HOST-SID=12345; Secure; Path=/
]]></sourcecode>
      </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 attribute-value is empty, ignore the cookie-av.</li>
            <li>If the first character of the attribute-value is neither a DIGIT, nor a "-"
character followed by a DIGIT, 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 a base 10 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.)</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-insensitive 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-insensitive 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-name is empty and either of the following conditions are
true, abort these steps and ignore the cookie:  </t>
            <ul spacing="normal">
              <li>the cookie-value begins with a case-insensitive match for the string
"__Secure-"</li>
              <li>the cookie-value begins with a case-insensitive match for the string
"__Host-"</li>
            </ul>
          </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>
                  <t>
NOTE: (For user agents configured to reject "public suffixes") It's
possible that the public suffix list was changed since a cookie was
created. If this change results in a cookie's domain becoming a public
suffix then that cookie is considered invalid as it would have been
rejected during creation (See <xref target="storage-model"/> step 9). User agents
should be careful to avoid retrieving these invalid cookies even if they
domain-match the host of the retrieval's URI.</t>
                </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>
        </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. Mockapetris" initials="P." 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" initials="R. T." surname="Fielding">
              <organization>Adobe</organization>
            </author>
            <author fullname="Mark Nottingham" initials="M." surname="Nottingham">
              <organization>Fastly</organization>
            </author>
            <author fullname="Julian Reschke" initials="J." surname="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 RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 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="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" initials="M." surname="West">
              <organization>Google, Inc</organization>
            </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" initials="M." surname="West">
              <organization>Google, Inc</organization>
            </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" initials="M." surname="West">
              <organization>Google, Inc</organization>
            </author>
            <author fullname="Mark Goodwin" initials="M." surname="Goodwin">
              <organization>Mozilla</organization>
            </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>,
<eref target="https://github.com/httpwg/http-extensions/pull/1980">https://github.com/httpwg/http-extensions/pull/1980</eref>.</li>
          <li>Expand on privacy considerations and third-party cookies:
<eref target="https://github.com/httpwg/http-extensions/pull/1878">https://github.com/httpwg/http-extensions/pull/1878</eref></li>
          <li>Specify that no decoding of Set-Cookie line should occur:
<eref target="https://github.com/httpwg/http-extensions/pull/1902">https://github.com/httpwg/http-extensions/pull/1902</eref></li>
          <li>Require ASCII for domain attributes:
<eref target="https://github.com/httpwg/http-extensions/pull/1969">https://github.com/httpwg/http-extensions/pull/1969</eref></li>
          <li>Typos, formatting and editorial fixes:
<eref target="https://github.com/httpwg/http-extensions/pull/1789">https://github.com/httpwg/http-extensions/pull/1789</eref>,
<eref target="https://github.com/httpwg/http-extensions/pull/1858">https://github.com/httpwg/http-extensions/pull/1858</eref>,
<eref target="https://github.com/httpwg/http-extensions/pull/2069">https://github.com/httpwg/http-extensions/pull/2069</eref>.</li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-11">
        <name>draft-ietf-httpbis-rfc6265bis-11</name>
        <ul spacing="normal">
          <li>Remove note to ignore Domain attribute with trailing dot:
<eref target="https://github.com/httpwg/http-extensions/pull/2087">https://github.com/httpwg/http-extensions/pull/2087</eref>,
<eref target="https://github.com/httpwg/http-extensions/pull/2092">https://github.com/httpwg/http-extensions/pull/2092</eref>.</li>
          <li>Remove an inadvertant change to cookie-octet:
<eref target="https://github.com/httpwg/http-extensions/pull/2090">https://github.com/httpwg/http-extensions/pull/2090</eref></li>
          <li>Remove note regarding cookie serialization:
<eref target="https://github.com/httpwg/http-extensions/pull/2165">https://github.com/httpwg/http-extensions/pull/2165</eref></li>
          <li>Add case insensitivity note to Set-Cookie Syntax:
<eref target="https://github.com/httpwg/http-extensions/pull/2167">https://github.com/httpwg/http-extensions/pull/2167</eref></li>
          <li>Add note not to send invalid cookies due to public suffix list changes:
<eref target="https://github.com/httpwg/http-extensions/pull/2215">https://github.com/httpwg/http-extensions/pull/2215</eref></li>
          <li>Add warning to not send nameless cookies:
<eref target="https://github.com/httpwg/http-extensions/pull/2220">https://github.com/httpwg/http-extensions/pull/2220</eref></li>
          <li>Add note regarding Service Worker's computation of "site for cookies":
<eref target="https://github.com/httpwg/http-extensions/pull/2217">https://github.com/httpwg/http-extensions/pull/2217</eref></li>
          <li>Compare cookie name prefixes case-insensitively:
<eref target="https://github.com/httpwg/http-extensions/pull/2236">https://github.com/httpwg/http-extensions/pull/2236</eref></li>
          <li>Update editors and the acknowledgements
<eref target="https://github.com/httpwg/http-extensions/pull/2244">https://github.com/httpwg/http-extensions/pull/2244</eref></li>
          <li>Prevent nameless cookies with prefixed values
<eref target="https://github.com/httpwg/http-extensions/pull/2251">https://github.com/httpwg/http-extensions/pull/2251</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>
      <t>Thank you to both Lily Chen and Steven Englehardt, editors emeritus, for their
significant contributions improving this draft.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
