
<?xml version='1.0' encoding='utf-8'?>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.3.17 -->
<!DOCTYPE rfc SYSTEM "rfc2629-xhtml.ent">
<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="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-07" category="std" obsoletes="6265" updates="" submissionType="IETF" xml:lang="en" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.5.0 -->
  <front>
    <title>Cookies: HTTP State Management Mechanism</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-rfc6265bis-07"/>
    <author initials="M." surname="West" fullname="Mike West" role="editor">
      <organization>Google, Inc</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>
      <name>Note to Readers</name>
      <t>Discussion of this draft takes place on the HTTP working group mailing list
(ietf-http-wg@w3.org), which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/">https://lists.w3.org/Archives/Public/ietf-http-wg/</eref>.</t>
      <t>Working Group information can be found at <eref target="http://httpwg.github.io/">http://httpwg.github.io/</eref>; source
code and issues list for this draft can be found at <eref target="https://github.com/httpwg/http-extensions/labels/6265bis">https://github.com/httpwg/http-extensions/labels/6265bis</eref>.</t>
    </note>
  </front>
  <middle>
    <section anchor="introduction" numbered="true" toc="default">
      <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.</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" format="default"/> when generating cookies.</t>
      <t>User agents MUST implement the more liberal processing rules defined in <xref target="ua-requirements" format="default"/>, in order to maximize interoperability with existing servers that do not
conform to the well-behaved profile defined in <xref target="sane-profile" format="default"/>.</t>
      <t>This document specifies the syntax and semantics of these headers 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" format="default"/> represent a preferred subset of current
server behavior, and even the more liberal cookie processing algorithm provided
in <xref target="ua-requirements" format="default"/> 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" format="default"/>.</t>
    </section>
    <section anchor="conventions" numbered="true" toc="default">
      <name>Conventions</name>
      <section anchor="conformance-criteria" numbered="true" toc="default">
        <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" format="default"/>.</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" numbered="true" toc="default">
        <name>Syntax Notation</name>
        <t>This specification uses the Augmented Backus-Naur Form (ABNF) notation of
<xref target="RFC5234" format="default"/>.</t>
        <t>The following core rules are included by reference, as defined in <xref target="RFC5234" format="default"/>,
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" format="default"/> character), VCHAR (any visible <xref target="USASCII" format="default"/> character),
and WSP (whitespace).</t>
        <t>The OWS (optional whitespace) and BWS (bad whitespace) rules are defined in
Section 3.2.3 of <xref target="RFC7230" format="default"/>.</t>
      </section>
      <section anchor="terminology" numbered="true" toc="default">
        <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="RFC7230" format="default"/>, Section 2).</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 "request-target" as defined in Section 5.3 of <xref target="RFC7230" format="default"/>.</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" format="default"/>.</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", "WorkerGlobalScope", "sandboxed origin browsing
context flag", "parent browsing context", "shared worker", "the worker's
Documents", "nested browsing context", and "top-level browsing context" are
defined in <xref target="HTML" format="default"/>.</t>
        <t>"Service Workers" are defined in the Service Workers specification
<xref target="SERVICE-WORKERS" format="default"/>.</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" format="default"/>.</t>
        <t>"Safe" HTTP methods include <tt>GET</tt>, <tt>HEAD</tt>, <tt>OPTIONS</tt>, and <tt>TRACE</tt>, as defined
in Section 4.2.1 of <xref target="RFC7231" format="default"/>.</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" format="default"/>.</t>
        <t>The term "request", as well as a request's "client", "current url", "method",
and "target browsing context", are defined in <xref target="FETCH" format="default"/>.</t>
      </section>
    </section>
    <section anchor="overview" numbered="true" toc="default">
      <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 in an HTTP
response. In subsequent requests, the user agent returns a Cookie request
header to the origin server. The Cookie header contains cookies the user agent
received in previous Set-Cookie headers. The origin server is free to ignore
the Cookie header or use its contents for an application-defined purpose.</t>
      <t>Origin servers MAY send a Set-Cookie response header with any response. User
agents MAY ignore Set-Cookie headers contained in responses with 100-level
status codes but MUST process Set-Cookie headers contained in other responses
(including responses with 400- and 500-level status codes). 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 3.2.2 of <xref target="RFC7230" format="default"/>) 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>
      <section anchor="examples" numbered="true" toc="default">
        <name>Examples</name>
        <t>Using the Set-Cookie header, 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>
        <artwork type="example" name="" align="left" alt=""><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></artwork>
        <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>
        <artwork type="example" name="" align="left" alt=""><![CDATA[
== Server -> User Agent ==

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

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></artwork>
        <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" format="default"/>).</t>
        <artwork type="example" name="" align="left" alt=""><![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
]]></artwork>
        <t>Notice that the Cookie header 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>
        <artwork type="example" name="" align="left" alt=""><![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
]]></artwork>
        <t>Finally, to remove a cookie, the server returns a Set-Cookie header 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
match the values used when the cookie was created.</t>
        <artwork type="example" name="" align="left" alt=""><![CDATA[
== Server -> User Agent ==

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

== User Agent -> Server ==

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

cookie-av         = expires-av / max-age-av / domain-av /
                    path-av / secure-av / httponly-av /
                    samesite-av / extension-av
expires-av        = "Expires" BWS "=" BWS sane-cookie-date
sane-cookie-date  =
    <IMF-fixdate, defined in [RFC7231], Section 7.1.1.1>
max-age-av        = "Max-Age" BWS "=" BWS non-zero-digit *DIGIT
                      ; In practice, both expires-av and max-age-av
                      ; are limited to dates representable by the
                      ; user agent.
non-zero-digit    = %x31-39
                      ; digits 1 through 9
domain-av         = "Domain" BWS "=" BWS domain-value
domain-value      = <subdomain>
                      ; defined in [RFC1034], Section 3.5, as
                      ; enhanced by [RFC1123], Section 2.1
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 ";"
]]></artwork>
          <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" format="default"/>).</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" format="default"/>.</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
headers sent to the server.</t>
          <t>The portions of the set-cookie-string produced by the cookie-av term are
known as attributes. To maximize compatibility with user agents, servers SHOULD
NOT produce two attributes with the same name in the same set-cookie-string.
(See <xref target="storage-model" format="default"/> for how user agents handle this case.)</t>
          <t>Servers SHOULD NOT include more than one Set-Cookie header field in the same
response with the same cookie-name. (See <xref target="set-cookie" format="default"/> for how user agents
handle this case.)</t>
          <t>If a server sends multiple responses containing Set-Cookie headers
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" numbered="true" toc="default">
          <name>Semantics (Non-Normative)</name>
          <t>This section describes simplified semantics of the Set-Cookie header. 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" format="default"/>.</t>
          <t>When the user agent receives a Set-Cookie header, 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.</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" numbered="true" toc="default">
            <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>
          </section>
          <section anchor="attribute-max-age" numbered="true" toc="default">
            <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>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" numbered="true" toc="default">
            <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 when making HTTP requests to
site.example, www.site.example, and www.corp.site.example. (Note that a
leading %x2E ("."), if present, is ignored even though that character is not
permitted, but a trailing %x2E ("."), if present, will cause the user agent to
ignore the attribute.)  If the server omits the Domain attribute, the user
agent will return the cookie only to the origin server.</t>
            <t>WARNING: Some existing user agents treat an absent Domain attribute as if the
Domain attribute were present and contained the current host name. For
example, if site.example returns a Set-Cookie header 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" format="default"/> for
more information.)</t>
          </section>
          <section anchor="attribute-path" numbered="true" toc="default">
            <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" format="default"/> 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" format="default"/>).</t>
          </section>
          <section anchor="attribute-secure" numbered="true" toc="default">
            <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" format="default"/>).</t>
            <t>Although seemingly useful for protecting cookies from active network attackers,
the Secure attribute protects only the cookie's confidentiality. An active
network attacker can overwrite Secure cookies from an insecure channel,
disrupting their integrity (see <xref target="weak-integrity" format="default"/> for more details).</t>
          </section>
          <section anchor="attribute-httponly" numbered="true" toc="default">
            <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 (such as a web browser API that
exposes cookies to scripts).</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" numbered="true" toc="default">
            <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" format="default"/>. 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" format="default"/>. If the value is "None", the cookie will be sent
with same-site and cross-site requests. If the "SameSite" attribute's value is
something other than these three known keywords, the attribute's value will be
subject to a default enforcement mode that is equivalent to "Lax".</t>
            <t>The "SameSite" attribute affects cookie creation as well as delivery. Cookies
which assert "SameSite=Lax" or "SameSite=Strict" cannot be set in responses to
cross-site subresource requests, or cross-site nested navigations. They can be
set along with any top-level navigation, cross-site or otherwise.</t>
          </section>
        </section>
        <section anchor="cookie-name-prefixes" numbered="true" toc="default">
          <name>Cookie Name Prefixes</name>
          <t><xref target="weak-confidentiality" format="default"/> and <xref target="weak-integrity" format="default"/> of this document spell out some of the drawbacks of cookies'
historical implementation. In particular, it is impossible for a server to have
confidence that a given cookie was set with a particular set of attributes. In
order to provide such confidence in a backwards-compatible way, two common sets
of requirements can be inferred from the first few characters of the cookie's
name.</t>
          <t>The normative requirements for the prefixes described below are detailed in the
storage model algorithm defined in <xref target="storage-model" format="default"/>.</t>
          <section anchor="the-secure-prefix" numbered="true" toc="default">
            <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 would be rejected by a conformant
user agent, as it does not have a <tt>Secure</tt> attribute.</t>
            <artwork type="example" name="" align="left" alt=""><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example
]]></artwork>
            <t>Whereas the following <tt>Set-Cookie</tt> header would be accepted:</t>
            <artwork type="example" name="" align="left" alt=""><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example; Secure
]]></artwork>
          </section>
          <section anchor="the-host-prefix" numbered="true" toc="default">
            <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>
            <artwork type="example" name="" align="left" alt=""><![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=/
]]></artwork>
            <t>While the following would be accepted if set from a secure origin (e.g.
"https://site.example/"), and rejected otherwise:</t>
            <artwork type="example" name="" align="left" alt=""><![CDATA[
Set-Cookie: __Host-SID=12345; Secure; Path=/
]]></artwork>
          </section>
        </section>
      </section>
      <section anchor="sane-cookie" numbered="true" toc="default">
        <name>Cookie</name>
        <section anchor="syntax" numbered="true" toc="default">
          <name>Syntax</name>
          <t>The user agent sends stored cookies to the origin server in the Cookie header.
If the server conforms to the requirements in <xref target="sane-set-cookie" format="default"/> (and the user agent
conforms to the requirements in <xref target="ua-requirements" format="default"/>), the user agent will send a Cookie
header that conforms to the following grammar:</t>
          <artwork type="abnf" name="" align="left" alt=""><![CDATA[
cookie-header = "Cookie:" SP cookie-string
cookie-string = cookie-pair *( ";" SP cookie-pair )
]]></artwork>
        </section>
        <section anchor="semantics" numbered="true" toc="default">
          <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.</t>
          <t>Notice that the cookie attributes are not returned. In particular, the server
cannot determine from the Cookie header 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 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, servers SHOULD
NOT rely upon the serialization order. In particular, if the Cookie header
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.</t>
        </section>
      </section>
    </section>
    <section anchor="ua-requirements" numbered="true" toc="default">
      <name>User Agent Requirements</name>
      <t>This section specifies the Cookie and Set-Cookie headers 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" format="default"/>).</t>
      <t>A user agent could enforce more restrictions than those specified herein (e.g.,
for the sake of improved security); however, experiments have shown that such
strictness reduces the likelihood that a user agent will be able to interoperate
with existing servers.</t>
      <section anchor="subcomponent-algorithms" numbered="true" toc="default">
        <name>Subcomponent Algorithms</name>
        <t>This section defines some algorithms used by user agents to process specific
subcomponents of the Cookie and Set-Cookie headers.</t>
        <section anchor="cookie-date" numbered="true" toc="default">
          <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>
              <artwork type="abnf" name="" align="left" alt=""><![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
]]></artwork>
            </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" numbered="true" toc="default">
          <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" format="default"/> for the former and latter), or
to a "punycode label" (a label resulting from the "ToASCII" conversion in
Section 4 of <xref target="RFC3490" format="default"/>), as appropriate (see <xref target="idna-migration" format="default"/> of this
specification).</li>
            <li>Concatenate the resulting labels, separated by a %x2E (".") character.</li>
          </ol>
        </section>
        <section anchor="domain-matching" numbered="true" toc="default">
          <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" numbered="true" toc="default">
          <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). For example, if the request-uri contains
just a path (and optional query string), then the uri-path is that path
(without the %x3F ("?") character or query string), and if the request-uri
contains a full absoluteURI, the uri-path is the path component of
that URI.</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" format="default"/> 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" numbered="true" toc="default">
        <name>"Same-site" and "cross-site" Requests</name>
        <t>Two origins, A and B, are considered same-site if the following algorithm
returns true:</t>
        <ol spacing="normal" type="1"><li>If A and B are both the same globally unique identifier, return true.</li>
          <li>
            <t>If A and B are both scheme/host/port triples:  </t>
            <ol spacing="normal" type="1"><li>If A's scheme does not equal B's scheme, return false.</li>
              <li>Let hostA be A's host, and hostB be B's host.</li>
              <li>If hostA equals hostB and hostA's registrable domain is null, return
true.</li>
              <li>If hostA's registrable domain equals hostB's registrable domain and is
non-null, return true.</li>
            </ol>
          </li>
          <li>Return false.</li>
        </ol>
        <t>Note: The port component of the origins is not considered.</t>
        <t>A request is "same-site" if its target's URI'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. The request is otherwise "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" numbered="true" toc="default">
          <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" format="default"/>. 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 a globally unique identifier.</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
a globally unique identifier.</li>
              </ol>
            </li>
            <li>Return <tt>top-origin</tt>.</li>
          </ol>
        </section>
        <section anchor="worker-requests" numbered="true" toc="default">
          <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" format="default"/>, 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" numbered="true" toc="default">
            <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 a globally unique
identifier 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" format="default"/>).</li>
                  <li>If <tt>document-site</tt> is not same-site with <tt>site</tt>, return an origin
set to a globally unique identifier.</li>
                </ol>
              </li>
              <li>Return <tt>site</tt>.</li>
            </ol>
          </section>
          <section anchor="service-workers" numbered="true" toc="default">
            <name>Service Workers</name>
            <t>Service Workers are more complicated, as they act as a completely separate
execution context with only tangential relationship to the Document which
registered them.</t>
            <t>Requests which simply pass through a Service Worker will be handled as described
above: the request's client will be the Document or Worker which initiated the
request, and its "site for cookies" will be those defined in
<xref target="document-requests" format="default"/> and <xref target="dedicated-and-shared-requests" format="default"/></t>
            <t>Requests which are initiated by the Service Worker itself (via a direct call to
<tt>fetch()</tt>, for instance), on the other hand, will have a client which is a
ServiceWorkerGlobalScope. Its "site for cookies" will be the Service Worker's
URI's origin.</t>
            <t>Given a ServiceWorkerGlobalScope (<tt>worker</tt>), the following algorithm returns its
"site for cookies":</t>
            <ol spacing="normal" type="1"><li>Return <tt>worker</tt>'s origin.</li>
            </ol>
          </section>
        </section>
      </section>
      <section anchor="set-cookie" numbered="true" toc="default">
        <name>The Set-Cookie Header</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. For
example, the user agent might wish to block responses to "third-party" requests
from setting cookies (see <xref target="third-party-cookies" format="default"/>).</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" format="default"/>.
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" format="default"/> forbids whitespace in these positions. User agents use this
algorithm so as to interoperate with servers that do not follow the
recommendations in <xref target="sane-profile" format="default"/>.</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>
            <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>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>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" format="default"/>
for additional requirements triggered by receiving a cookie.)</t>
        <section anchor="the-expires-attribute" numbered="true" toc="default">
          <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" format="default"/>).</li>
            <li>If the attribute-value failed to parse as a cookie date, ignore the
cookie-av.</li>
            <li>If the expiry-time is later than the last date the user agent can
represent, the user agent MAY replace the expiry-time with the last
representable date.</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" numbered="true" toc="default">
          <name>The Max-Age Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Max-Age", the
user agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>If the first character of the attribute-value is not a DIGIT or a "-"
character, ignore the cookie-av.</li>
            <li>If the remainder of attribute-value contains a non-DIGIT character, ignore
the cookie-av.</li>
            <li>Let delta-seconds be the attribute-value converted to an integer.</li>
            <li>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" numbered="true" toc="default">
          <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>If the attribute-value is empty, the behavior is undefined. However, the
user agent SHOULD ignore the cookie-av entirely.</li>
            <li>
              <t>If the first character of the attribute-value string is %x2E ("."):  </t>
              <ol spacing="normal" type="1"><li>Let cookie-domain be the attribute-value without the leading %x2E
(".") character.</li>
              </ol>
              <t>
Otherwise:  </t>
              <ol spacing="normal" type="1"><li>Let cookie-domain be the entire attribute-value.</li>
              </ol>
            </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" numbered="true" toc="default">
          <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" numbered="true" toc="default">
          <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" numbered="true" toc="default">
          <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" numbered="true" toc="default">
          <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>
          <t>Note: This algorithm maps the "None" value, as well as any unknown value, to
the "None" behavior, which is helpful for backwards compatibility when
introducing new variants.</t>
          <section anchor="strict-lax" numbered="true" toc="default">
            <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" format="default"/>, 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="RFC7231" format="default"/>
sense) HTTP method. (Note that a request's method may be changed from POST
to GET for some redirects (see sections 6.4.2 and 6.4.3 of <xref target="RFC7231" format="default"/>); 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" format="default"/>), which
is only a speedbump along the road to exploitation.</li>
              <li>Features like <tt>&lt;link rel='prerender'&gt;</tt> <xref target="prerendering" format="default"/> 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" format="default"/> to mitigate the risk of CSRF more
completely.</t>
          </section>
        </section>
      </section>
      <section anchor="storage-model" numbered="true" toc="default">
        <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. For example, the
user agent might wish to block receiving cookies from "third-party"
responses or the user agent might not wish to store cookies that exceed some
size.</li>
          <li>If cookie-name is empty and cookie-value is empty, 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 an attribute-name of
"Domain".</li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>Let the domain-attribute be the empty string.</li>
            </ol>
          </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>Ignore the cookie entirely and abort these steps.</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>Ignore the cookie entirely and abort these steps.</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 an attribute-name
of "Path". 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" format="default"/>), 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" format="default"/> (e.g. if the request's "reserved
client" is either <tt>null</tt> or an environment whose "target browsing
context" is a top-level browing context), skip the remaining substeps
and continue processing the cookie.      </t>
                <t>
Note: Top-level navigations can create a cookie with any <tt>SameSite</tt>
value, even if the new cookie wouldn't have been sent along with
the request had it already existed prior to the navigation.</t>
              </li>
              <li>Abort these steps and ignore the newly created cookie entirely.</li>
            </ol>
          </li>
          <li>If the cookie's "same-site-flag" is "None", abort these steps and ignore the
cookie entirely unless the cookie's secure-only-flag is true.</li>
          <li>If the cookie-name begins with a case-sensitive match for the string
"__Secure-", abort these steps and ignore the cookie entirely unless the
cookie's secure-only-flag is true.</li>
          <li>
            <t>If the cookie-name begins with a case-sensitive match for the string
"__Host-", abort these steps and ignore the cookie entirely unless the
cookie meets all the following criteria:  </t>
            <ol spacing="normal" type="1"><li>The cookie's secure-only-flag is true.</li>
              <li>The cookie's host-only-flag is true.</li>
              <li>The cookie-attribute-list contains an attribute with an attribute-name
of "Path", and the cookie's path is <tt>/</tt>.</li>
            </ol>
          </li>
          <li>
            <t>If the cookie store contains a cookie with the same name, domain,
host-only-flag, and path as the newly-created cookie:  </t>
            <ol spacing="normal" type="1"><li>Let old-cookie be the existing cookie with the same name, domain,
host-only-flag, and path as the newly-created cookie. (Notice that this
algorithm maintains the invariant that there is at most one such
cookie.)</li>
              <li>If the newly-created cookie was received from a "non-HTTP" API and the
old-cookie's http-only-flag is true, abort these steps and ignore the
newly created cookie entirely.</li>
              <li>Update the creation-time of the newly-created cookie to match the
creation-time of the old-cookie.</li>
              <li>Remove the old-cookie from the cookie store.</li>
            </ol>
          </li>
          <li>Insert the newly-created cookie into the cookie store.</li>
        </ol>
        <t>A cookie is "expired" if the cookie has an expiry date in the past.</t>
        <t>The user agent MUST evict all expired cookies from the cookie store if, at any
time, an expired cookie exists in the cookie store.</t>
        <t>At any time, the user agent MAY "remove excess cookies" from the cookie store
if the number of cookies sharing a domain field exceeds some
implementation-defined upper bound (such as 50 cookies).</t>
        <t>At any time, the user agent MAY "remove excess cookies" from the cookie store
if the cookie store exceeds some predetermined upper bound (such as 3000
cookies).</t>
        <t>When the user agent removes excess cookies from the cookie store, the user
agent MUST evict cookies in the following priority order:</t>
        <ol spacing="normal" type="1"><li>Expired cookies.</li>
          <li>Cookies whose secure-only-flag is false, and which share a domain field
with more than a predetermined number of other cookies.</li>
          <li>Cookies that share a domain field with more than a predetermined number of
other cookies.</li>
          <li>All cookies.</li>
        </ol>
        <t>If two cookies have the same removal priority, the user agent MUST evict the
cookie with the earliest last-access-time first.</t>
        <t>When "the current session is over" (as defined by the user agent), the user
agent MUST remove from the cookie store all cookies with the persistent-flag
set to false.</t>
      </section>
      <section anchor="cookie" numbered="true" toc="default">
        <name>The Cookie Header</name>
        <t>The user agent includes stored cookies in the Cookie HTTP request header.</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 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" format="default"/>).</t>
        <t>If the user agent does attach a Cookie header field to an HTTP request, the
user agent MUST send the cookie-string (defined below) as the value of the
header field.</t>
        <t>The user agent MUST use an algorithm equivalent to the following algorithm to
compute the cookie-string from a cookie store and a request-uri:</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
request-host 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
request-host domain-matches the cookie's domain.</li>
                </ul>
              </li>
              <li>The request-uri's path path-matches the cookie's path.</li>
              <li>
                <t>If the cookie's secure-only-flag is true, then the request-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
cookie-string is being generated for a "non-HTTP" API (as defined by
the user agent).</li>
              <li>
                <t>If the cookie's same-site-flag is not "None", and the HTTP request is
cross-site (as defined in <xref target="same-site-requests" format="default"/>) then exclude the
cookie unless all of the following statements hold:      </t>
                <ol spacing="normal" type="1"><li>The same-site-flag is "Lax" or "Default".</li>
                  <li>The HTTP request's method is "safe".</li>
                  <li>The HTTP request's target browsing context is a top-level browsing
context.</li>
                </ol>
              </li>
            </ul>
          </li>
          <li>
            <t>The user agent SHOULD sort the cookie-list in the following order:  </t>
            <ul spacing="normal">
              <li>Cookies with longer paths are listed before cookies with shorter
paths.</li>
              <li>Among cookies that have equal-length path fields, cookies with earlier
creation-times are listed before cookies with later creation-times.</li>
            </ul>
            <t>
NOTE: Not all user agents sort the cookie-list in this order, but this order
reflects common practice when this document was written, and, historically,
there have been servers that (erroneously) depended on this order.</t>
          </li>
          <li>Update the last-access-time of each cookie in the cookie-list to the
current date and time.</li>
          <li>
            <t>Serialize the cookie-list into a cookie-string by processing each cookie
in the cookie-list in order:  </t>
            <ol spacing="normal" type="1"><li>If the cookies' name is not empty, output the cookie's name followed by
the %x3D ("=") character.</li>
              <li>If the cookies' value is not empty, output the cookie's value.</li>
              <li>If there is an unprocessed cookie in the cookie-list, output the
characters %x3B and %x20 ("; ").</li>
            </ol>
          </li>
        </ol>
        <t>NOTE: Despite its name, the cookie-string is actually a sequence of octets, not
a sequence of characters.  To convert the cookie-string (or components
thereof) into a sequence of characters (e.g., for presentation to the user),
the user agent might wish to try using the UTF-8 character encoding <xref target="RFC3629" format="default"/>
to decode the octet sequence. This decoding might fail, however, because not
every sequence of octets is valid UTF-8.</t>
      </section>
    </section>
    <section anchor="implementation-considerations" numbered="true" toc="default">
      <name>Implementation Considerations</name>
      <section anchor="limits" numbered="true" toc="default">
        <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 4096 bytes per cookie (as measured by the sum of the length of the
cookie's name, value, and attributes).</li>
          <li>At least 50 cookies per domain.</li>
          <li>At least 3000 cookies total.</li>
        </ul>
        <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 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 because the user agent might evict any cookie at
any time on orders from the user.</t>
      </section>
      <section anchor="application-programming-interfaces" numbered="true" toc="default">
        <name>Application Programming Interfaces</name>
        <t>One reason the Cookie and Set-Cookie headers 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 headers, 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" numbered="true" toc="default">
        <name>IDNA Dependency and Migration</name>
        <t>IDNA2008 <xref target="RFC5890" format="default"/> supersedes IDNA2003 <xref target="RFC3490" format="default"/>. 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" format="default"/> and MAY
implement <xref target="UTS46" format="default"/> or <xref target="RFC5895" format="default"/> in order to facilitate their IDNA transition.
If a user agent does not implement IDNA2008, the user agent MUST implement
IDNA2003 <xref target="RFC3490" format="default"/>.</t>
      </section>
    </section>
    <section anchor="privacy-considerations" numbered="true" toc="default">
      <name>Privacy Considerations</name>
      <t>Cookies are often criticized for letting servers track users. For example, a
number of "web analytics" companies use cookies to recognize when a user returns
to a web site or visits another web site. Although cookies are not the only
mechanism servers can use to track users across HTTP requests, cookies
facilitate tracking because they are persistent across user agent sessions and
can be shared between hosts.</t>
      <section anchor="third-party-cookies" numbered="true" toc="default">
        <name>Third-Party Cookies</name>
        <t>Particularly worrisome are so-called "third-party" cookies. In rendering an HTML
document, a user agent often requests resources from other servers (such as
advertising networks). These third-party servers can use cookies to track the
user even if the user never visits the server directly. For example, if a user
visits a site that contains content from a third party and then later visits
another site that contains content from the same third party, the third party
can track the user between the two sites.</t>
        <t>Given this risk to user privacy, some user agents restrict how third-party
cookies behave, and those restrictions vary widly. For instance, user agents
might block third-party cookies entirely by refusing to send Cookie headers or
process Set-Cookie headers during third-party requests. They might take a less
draconian approach by partitioning cookies based on the first-party context,
sending one set of cookies to a given third party in one first-party context,
and another to the same third party in another.</t>
        <t>This document grants user agents wide latitude to experiment with third-party
cookie policies that balance the privacy and compatibility needs of their users.
However, this document does not endorse any particular third-party cookie
policy.</t>
        <t>Third-party cookie blocking policies are often ineffective at achieving their
privacy goals if servers attempt to work around their restrictions to track
users. In particular, two collaborating servers can often track users without
using cookies at all by injecting identifying information into dynamic URLs.</t>
      </section>
      <section anchor="user-controls" numbered="true" toc="default">
        <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 in
outbound HTTP requests and the user agent MUST NOT process Set-Cookie headers
in inbound HTTP responses.</t>
        <t>Some user agents 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" format="default"/>.</t>
        <t>Some user agents provide users with the ability to approve individual writes to
the cookie store. In many common usage scenarios, these controls generate a
large number of prompts. However, some privacy-conscious users find these
controls useful nonetheless.</t>
      </section>
      <section anchor="expiration-dates" numbered="true" toc="default">
        <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" numbered="true" toc="default">
      <name>Security Considerations</name>
      <section anchor="overview-1" numbered="true" toc="default">
        <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" format="default"/>. 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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <name>Clear Text</name>
        <t>Unless sent over a secure channel (such as TLS), the information in the Cookie
and Set-Cookie headers is transmitted in the clear.</t>
        <ol spacing="normal" type="1"><li>All sensitive information conveyed in these headers is exposed to an
eavesdropper.</li>
          <li>A malicious intermediary could alter the headers as they travel in either
direction, with unpredictable results.</li>
          <li>A malicious client could alter the Cookie header 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
headers only over a secure channel. When using cookies over a secure channel,
servers SHOULD set the Secure attribute (see <xref target="attribute-secure" format="default"/>) 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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <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 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. 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
sent to https://site.example/ by impersonating a response from
http://site.example/ and injecting a Set-Cookie header. 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. 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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <name>SameSite Cookies</name>
        <section anchor="defense-in-depth" numbered="true" toc="default">
          <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" format="default"/> may also prove effective against CSRF, and are certainly worth
exploring in combination with "SameSite" cookies.</t>
        </section>
        <section anchor="top-level-navigations" numbered="true" toc="default">
          <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>projects.example</tt> has marked their
session cookies as <tt>SameSite</tt>, then this cross-site navigation won't send them
along with the request. <tt>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</tt>, and
its absence would prompt a reauthentication step before executing any
non-idempotent action. The former could drop the <tt>SameSite</tt> attribute entirely,
or choose the "Lax" version of enforcement, in order to allow users access to
data via top-level navigation.</t>
        </section>
        <section anchor="mashups-and-widgets" numbered="true" toc="default">
          <name>Mashups and Widgets</name>
          <t>The <tt>SameSite</tt> attribute is inappropriate for some important use-cases. In
particular, note that content intended for embedding in a cross-site contexts
(social networking widgets or commenting services, for instance) will not have
access to same-site cookies. Cookies may be required for requests triggered in
these cross-site contexts in order to provide seamless functionality that relies
on a user's state.</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.</t>
        </section>
        <section anchor="server-controlled" numbered="true" toc="default">
          <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" format="default"/>. 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>
    </section>
    <section anchor="iana-considerations" numbered="true" toc="default">
      <name>IANA Considerations</name>
      <section anchor="iana-cookie" numbered="true" toc="default">
        <name>Cookie</name>
        <t>The permanent message header field registry (see <xref target="RFC3864" format="default"/>) needs to be
updated with the following registration:</t>
        <dl newline="false" spacing="normal">
          <dt>Header field name:</dt>
          <dd>
  Cookie</dd>
          <dt>Applicable protocol:</dt>
          <dd>
  http</dd>
          <dt>Status:</dt>
          <dd>
  standard</dd>
          <dt>Author/Change controller:</dt>
          <dd>
  IETF</dd>
          <dt>Specification document:</dt>
          <dd>
  this specification (<xref target="cookie" format="default"/>)</dd>
        </dl>
      </section>
      <section anchor="iana-set-cookie" numbered="true" toc="default">
        <name>Set-Cookie</name>
        <t>The permanent message header field registry (see <xref target="RFC3864" format="default"/>) needs to be
updated with the following registration:</t>
        <dl newline="false" spacing="normal">
          <dt>Header field name:</dt>
          <dd>
  Set-Cookie</dd>
          <dt>Applicable protocol:</dt>
          <dd>
  http</dd>
          <dt>Status:</dt>
          <dd>
  standard</dd>
          <dt>Author/Change controller:</dt>
          <dd>
  IETF</dd>
          <dt>Specification document:</dt>
          <dd>
  this specification (<xref target="set-cookie" format="default"/>)</dd>
        </dl>
      </section>
      <section anchor="cookie-attribute-registry" numbered="true" toc="default">
        <name>Cookie Attribute Registry</name>
        <t>The "Cookie Attribute Registry" defines the name space of attribute used to
control cookies' behavior. The registry is 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" numbered="true" toc="default">
          <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" format="default"/>). The attribute to be registered MUST match the <tt>extension-av</tt>
syntax defined in <xref target="abnf-syntax" format="default"/>. Note that attribute names are generally
defined in CamelCase, but technically accepted case-insensitively.</t>
        </section>
        <section anchor="registration" numbered="true" toc="default">
          <name>Registration</name>
          <t>The "Cookie Attribute Registry" will be updated with the registrations below:</t>
          <table align="center">
            <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" format="default"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Expires</td>
                <td align="left">
                  <xref target="attribute-expires" format="default"/> of this document</td>
              </tr>
              <tr>
                <td align="right">HttpOnly</td>
                <td align="left">
                  <xref target="attribute-httponly" format="default"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Max-Age</td>
                <td align="left">
                  <xref target="attribute-max-age" format="default"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Path</td>
                <td align="left">
                  <xref target="attribute-path" format="default"/> of this document</td>
              </tr>
              <tr>
                <td align="right">SameSite</td>
                <td align="left">
                  <xref target="attribute-samesite" format="default"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Secure</td>
                <td align="left">
                  <xref target="attribute-secure" format="default"/> of this document</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
    </section>
  </middle>
  <back>
    <references>
      <name>References</name>
      <references>
        <name>Normative References</name>
        <reference anchor="RFC1034" target="https://www.rfc-editor.org/info/rfc1034">
          <front>
            <title>Domain names - concepts and facilities</title>
            <author initials="P.V." surname="Mockapetris" fullname="P.V. Mockapetris">
              <organization/>
            </author>
            <date year="1987" month="November"/>
            <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" target="https://www.rfc-editor.org/info/rfc1123">
          <front>
            <title>Requirements for Internet Hosts - Application and Support</title>
            <author initials="R." surname="Braden" fullname="R. Braden" role="editor">
              <organization/>
            </author>
            <date year="1989" month="October"/>
            <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" target="https://www.rfc-editor.org/info/rfc2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author initials="S." surname="Bradner" fullname="S. Bradner">
              <organization/>
            </author>
            <date year="1997" month="March"/>
            <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" format="default"/> for an explanation why the normative reference to an obsoleted specification is needed.</annotation>
        </reference>
        <reference anchor="RFC4790" target="https://www.rfc-editor.org/info/rfc4790">
          <front>
            <title>Internet Application Protocol Collation Registry</title>
            <author initials="C." surname="Newman" fullname="C. Newman">
              <organization/>
            </author>
            <author initials="M." surname="Duerst" fullname="M. Duerst">
              <organization/>
            </author>
            <author initials="A." surname="Gulbrandsen" fullname="A. Gulbrandsen">
              <organization/>
            </author>
            <date year="2007" month="March"/>
            <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" target="https://www.rfc-editor.org/info/rfc5234">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author initials="D." surname="Crocker" fullname="D. Crocker" role="editor">
              <organization/>
            </author>
            <author initials="P." surname="Overell" fullname="P. Overell">
              <organization/>
            </author>
            <date year="2008" month="January"/>
            <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" target="https://www.rfc-editor.org/info/rfc5890">
          <front>
            <title>Internationalized Domain Names for Applications (IDNA): Definitions and Document Framework</title>
            <author initials="J." surname="Klensin" fullname="J. Klensin">
              <organization/>
            </author>
            <date year="2010" month="August"/>
            <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" target="https://www.rfc-editor.org/info/rfc6454">
          <front>
            <title>The Web Origin Concept</title>
            <author initials="A." surname="Barth" fullname="A. Barth">
              <organization/>
            </author>
            <date year="2011" month="December"/>
            <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="RFC7230" target="https://www.rfc-editor.org/info/rfc7230">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
            <author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
              <organization/>
            </author>
            <date year="2014" month="June"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the "http" and "https" Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7230"/>
          <seriesInfo name="DOI" value="10.17487/RFC7230"/>
        </reference>
        <reference anchor="RFC7231" target="https://www.rfc-editor.org/info/rfc7231">
          <front>
            <title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
            <author initials="R." surname="Fielding" fullname="R. Fielding" role="editor">
              <organization/>
            </author>
            <author initials="J." surname="Reschke" fullname="J. Reschke" role="editor">
              <organization/>
            </author>
            <date year="2014" month="June"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7231"/>
          <seriesInfo name="DOI" value="10.17487/RFC7231"/>
        </reference>
        <reference anchor="RFC8126" target="https://www.rfc-editor.org/info/rfc8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author initials="M." surname="Cotton" fullname="M. Cotton">
              <organization/>
            </author>
            <author initials="B." surname="Leiba" fullname="B. Leiba">
              <organization/>
            </author>
            <author initials="T." surname="Narten" fullname="T. Narten">
              <organization/>
            </author>
            <date year="2017" month="June"/>
            <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="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>
      </references>
      <references>
        <name>Informative References</name>
        <reference anchor="RFC2818" target="https://www.rfc-editor.org/info/rfc2818">
          <front>
            <title>HTTP Over TLS</title>
            <author initials="E." surname="Rescorla" fullname="E. Rescorla">
              <organization/>
            </author>
            <date year="2000" month="May"/>
            <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" target="https://www.rfc-editor.org/info/rfc3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author initials="T." surname="Berners-Lee" fullname="T. Berners-Lee">
              <organization/>
            </author>
            <author initials="R." surname="Fielding" fullname="R. Fielding">
              <organization/>
            </author>
            <author initials="L." surname="Masinter" fullname="L. Masinter">
              <organization/>
            </author>
            <date year="2005" month="January"/>
            <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" target="https://www.rfc-editor.org/info/rfc6265">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author initials="A." surname="Barth" fullname="A. Barth">
              <organization/>
            </author>
            <date year="2011" month="April"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol.  Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet.  This document obsoletes RFC 2965.  [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
        <reference anchor="RFC3629" target="https://www.rfc-editor.org/info/rfc3629">
          <front>
            <title>UTF-8, a transformation format of ISO 10646</title>
            <author initials="F." surname="Yergeau" fullname="F. Yergeau">
              <organization/>
            </author>
            <date year="2003" month="November"/>
            <abstract>
              <t>ISO/IEC 10646-1 defines a large character set called the Universal Character Set (UCS) which encompasses most of the world's writing systems.  The originally proposed encodings of the UCS, however, were not compatible with many current applications and protocols, and this has led to the development of UTF-8, the object of this memo.  UTF-8 has the characteristic of preserving the full US-ASCII range, providing compatibility with file systems, parsers and other software that rely on US-ASCII values but are transparent to other values.  This memo obsoletes and replaces RFC 2279.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="63"/>
          <seriesInfo name="RFC" value="3629"/>
          <seriesInfo name="DOI" value="10.17487/RFC3629"/>
        </reference>
        <reference anchor="RFC4648" target="https://www.rfc-editor.org/info/rfc4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author initials="S." surname="Josefsson" fullname="S. Josefsson">
              <organization/>
            </author>
            <date year="2006" month="October"/>
            <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" target="https://www.rfc-editor.org/info/rfc3864">
          <front>
            <title>Registration Procedures for Message Header Fields</title>
            <author initials="G." surname="Klyne" fullname="G. Klyne">
              <organization/>
            </author>
            <author initials="M." surname="Nottingham" fullname="M. Nottingham">
              <organization/>
            </author>
            <author initials="J." surname="Mogul" fullname="J. Mogul">
              <organization/>
            </author>
            <date year="2004" month="September"/>
            <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" target="https://www.rfc-editor.org/info/rfc5895">
          <front>
            <title>Mapping Characters for Internationalized Domain Names in Applications (IDNA) 2008</title>
            <author initials="P." surname="Resnick" fullname="P. Resnick">
              <organization/>
            </author>
            <author initials="P." surname="Hoffman" fullname="P. Hoffman">
              <organization/>
            </author>
            <date year="2010" month="September"/>
            <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" target="https://www.rfc-editor.org/info/rfc7034">
          <front>
            <title>HTTP Header Field X-Frame-Options</title>
            <author initials="D." surname="Ross" fullname="D. Ross">
              <organization/>
            </author>
            <author initials="T." surname="Gondrom" fullname="T. Gondrom">
              <organization/>
            </author>
            <date year="2013" month="October"/>
            <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" target="http://www.ietf.org/internet-drafts/draft-ietf-httpbis-cookie-alone-01.txt">
          <front>
            <title>Deprecate modification of 'secure' cookies from non-secure origins</title>
            <author initials="M" surname="West" fullname="Mike West">
              <organization/>
            </author>
            <date month="September" day="5" 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" target="http://www.ietf.org/internet-drafts/draft-ietf-httpbis-cookie-prefixes-00.txt">
          <front>
            <title>Cookie Prefixes</title>
            <author initials="M" surname="West" fullname="Mike West">
              <organization/>
            </author>
            <date month="February" day="23" 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" target="http://www.ietf.org/internet-drafts/draft-ietf-httpbis-cookie-same-site-00.txt">
          <front>
            <title>Same-Site Cookies</title>
            <author initials="M" surname="West" fullname="Mike West">
              <organization/>
            </author>
            <author initials="M" surname="Goodwin" fullname="Mark Goodwin">
              <organization/>
            </author>
            <date month="June" day="20" 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>
      </references>
    </references>
    <section anchor="changes" numbered="true" toc="default">
      <name>Changes</name>
      <section anchor="draft-ietf-httpbis-rfc6265bis-00" numbered="true" toc="default">
        <name>draft-ietf-httpbis-rfc6265bis-00</name>
        <ul spacing="normal">
          <li>Port <xref target="RFC6265" format="default"/> to Markdown. No (intentional) normative changes.</li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-01" numbered="true" toc="default">
        <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" format="default"/>, 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" format="default"/>, adding
<tt>__Secure-</tt> and <tt>__Host-</tt> cookie name prefix processing instructions.</li>
        </ul>
      </section>
      <section anchor="draft-ietf-httpbis-rfc6265bis-02" numbered="true" toc="default">
        <name>draft-ietf-httpbis-rfc6265bis-02</name>
        <ul spacing="normal">
          <li>Merged the recommendations from <xref target="I-D.ietf-httpbis-cookie-same-site" format="default"/>, 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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <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" numbered="true" toc="default">
        <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" format="default"/> 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" numbered="true" toc="default">
        <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" format="default"/> to <xref target="storage-model" format="default"/> 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>
    <section numbered="false" anchor="acknowledgements" toc="default">
      <name>Acknowledgements</name>
      <t>RFC 6265 was written by Adam Barth. This document is a minor update of
RFC 6265, adding small features, and aligning the specification with the
reality of today's deployments. Here, we're standing upon the shoulders
of a giant since the majority of the text is still Adam's.</t>
    </section>
  </back>
  <!-- ##markdown-source:
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

-->

</rfc>
