<?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.2.13 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?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 ipr="pre5378Trust200902" docName="draft-ietf-httpbis-rfc6265bis-05" category="std" obsoletes="6265">

  <front>
    <title>Cookies: HTTP State Management Mechanism</title>

    <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 title="Note to Readers">


<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" title="Introduction">

<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"/> when generating cookies.</t>

<t>User agents MUST implement the more liberal processing rules defined in Section
5, in order to maximize interoperability with existing servers that do not
conform to the well-behaved profile defined in <xref target="sane-profile"/>.</t>

<t>This document specifies the syntax and semantics of these 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"/> represent a preferred subset of current
server behavior, and even the more liberal cookie processing algorithm provided
in <xref target="ua-requirements"/> does not recommend all of the syntactic and semantic variations in
use today. Where some existing software differs from the recommended protocol
in significant ways, the document contains a note explaining the difference.</t>

<t>This document obsoletes <xref target="RFC6265"/>.</t>

</section>
<section anchor="conventions" title="Conventions">

<section anchor="conformance-criteria" title="Conformance Criteria">

<t>The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”,
“SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be
interpreted as described in <xref target="RFC2119"/>.</t>

<t>Requirements phrased in the imperative as part of algorithms (such as “strip any
leading space characters” or “return false and abort these steps”) are to be
interpreted with the meaning of the key word (“MUST”, “SHOULD”, “MAY”, etc.)
used in introducing the algorithm.</t>

<t>Conformance requirements phrased as algorithms or specific steps can be
implemented in any manner, so long as the end result is equivalent. In
particular, the algorithms defined in this specification are intended to be
easy to understand and are not intended to be performant.</t>

</section>
<section anchor="syntax-notation" title="Syntax Notation">

<t>This specification uses the Augmented Backus-Naur Form (ABNF) notation of
<xref target="RFC5234"/>.</t>

<t>The following core rules are included by reference, as defined in <xref target="RFC5234"/>,
Appendix B.1: ALPHA (letters), CR (carriage return), CRLF (CR LF), CTLs
(controls), DIGIT (decimal 0-9), DQUOTE (double quote), HEXDIG
(hexadecimal 0-9/A-F/a-f), LF (line feed), NUL (null octet), OCTET (any
8-bit sequence of data except NUL), SP (space), HTAB (horizontal tab),
CHAR (any <xref target="USASCII"/> character), VCHAR (any visible <xref target="USASCII"/> character),
and WSP (whitespace).</t>

<t>The OWS (optional whitespace) rule is used where zero or more linear
whitespace characters MAY appear:</t>

<figure><artwork type="abnf"><![CDATA[
OWS            = *( [ obs-fold ] WSP )
                 ; "optional" whitespace
obs-fold       = CRLF
]]></artwork></figure>

<t>OWS SHOULD either not be produced or be produced as a single SP character.</t>

</section>
<section anchor="terminology" title="Terminology">

<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"/>, 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"/>.</t>

<t>Two sequences of octets are said to case-insensitively match each other if and
only if they are equivalent under the i;ascii-casemap collation defined in
<xref target="RFC4790"/>.</t>

<t>The term string means a sequence of non-NUL octets.</t>

<t>The terms “active document”, “ancestor browsing context”, “browsing context”,
“dedicated worker”, “Document”, “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"/>.</t>

<t>“Service Workers” are defined in the Service Workers specification
<xref target="SERVICE-WORKERS"/>.</t>

<t>The term “origin”, the mechanism of deriving an origin from a URI, and the “the
same” matching algorithm for origins are defined in <xref target="RFC6454"/>.</t>

<t>“Safe” HTTP methods include <spanx style="verb">GET</spanx>, <spanx style="verb">HEAD</spanx>, <spanx style="verb">OPTIONS</spanx>, and <spanx style="verb">TRACE</spanx>, as defined
in Section 4.2.1 of <xref target="RFC7231"/>.</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” <xref target="PSL"/>. A domain’s
“registrable domain” is the domain’s public suffix plus the label to its left.
That is, for <spanx style="verb">https://www.site.example</spanx>, the public suffix is <spanx style="verb">example</spanx>, and the
registrable domain is <spanx style="verb">site.example</spanx>. This concept is defined more rigorously in
<xref target="PSL"/>, which specifies a formal algorithm to obtain both.</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"/>.</t>

</section>
</section>
<section anchor="overview" title="Overview">

<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"/>) 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" title="Examples">

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

<figure><artwork><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></artwork></figure>

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

<figure><artwork><![CDATA[
== Server -> User Agent ==

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

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></artwork></figure>

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

<figure><artwork><![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></figure>

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

<figure><artwork><![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></figure>

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

<figure><artwork><![CDATA[
== Server -> User Agent ==

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

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></artwork></figure>

</section>
</section>
<section anchor="sane-profile" title="Server Requirements">

<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" title="Set-Cookie">

<t>The Set-Cookie HTTP response header is used to send cookies from the server to
the user agent.</t>

<section anchor="syntax" title="Syntax">

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

<figure><artwork type="abnf"><![CDATA[
set-cookie-header = "Set-Cookie:" SP set-cookie-string
set-cookie-string = cookie-pair *( ";" SP cookie-av )
cookie-pair       = cookie-name "=" cookie-value
cookie-name       = token
cookie-value      = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )
cookie-octet      = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E
                      ; US-ASCII characters excluding CTLs,
                      ; whitespace DQUOTE, comma, semicolon,
                      ; and backslash
token             = <token, defined in [RFC7230], Section 3.2.6>

cookie-av         = expires-av / max-age-av / domain-av /
                    path-av / secure-av / httponly-av /
                    samesite-av / extension-av
expires-av        = "Expires=" sane-cookie-date
sane-cookie-date  =
    <IMF-fixdate, defined in [RFC7231], Section 7.1.1.1>
max-age-av        = "Max-Age=" 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=" domain-value
domain-value      = <subdomain>
                      ; defined in [RFC1034], Section 3.5, as
                      ; enhanced by [RFC1123], Section 2.1
path-av           = "Path=" path-value
path-value        = *av-octet
secure-av         = "Secure"
httponly-av       = "HttpOnly"
samesite-av       = "SameSite=" samesite-value
samesite-value    = "Strict" / "Lax" / "None"
extension-av      = *av-octet
av-octet          = %x20-3A / %x3C-7E
                      ; any CHAR except CTLs or ";"
]]></artwork></figure>

<t>Note that some of the grammatical terms above reference documents that use
different grammatical notations than this document (which uses ABNF from
<xref target="RFC5234"/>).</t>

<t>The semantics of the cookie-value are not defined by this document.</t>

<t>To maximize compatibility with user agents, servers that wish to store arbitrary
data in a cookie-value SHOULD encode that data, for example, using Base64
<xref target="RFC4648"/>.</t>

<t>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"/> for how user agents handle this case.)</t>

<t>Servers SHOULD NOT include more than one Set-Cookie header field in the same
response with the same cookie-name. (See <xref target="set-cookie"/> for how user agents
handle this case.)</t>

<t>If a server sends multiple responses containing Set-Cookie 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" title="Semantics (Non-Normative)">

<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"/>.</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="the-expires-attribute" title="The Expires Attribute">

<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="the-max-age-attribute" title="The Max-Age Attribute">

<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="the-domain-attribute" title="The Domain Attribute">

<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"/> for
more information.)</t>

</section>
<section anchor="the-path-attribute" title="The Path Attribute">

<t>The scope of each cookie is limited to a set of paths, controlled by the
Path attribute. If the server omits the Path attribute, the user agent will
use the “directory” of the request-uri’s path component as the default value.
(See <xref target="cookie-path"/> for more details.)</t>

<t>The user agent will include the cookie in an HTTP request only if the path
portion of the request-uri matches (or is a subdirectory of) the cookie’s
Path attribute, where the %x2F (“/”) character is interpreted as a directory
separator.</t>

<t>Although seemingly useful for isolating cookies between different paths within
a given host, the Path attribute cannot be relied upon for security (see
<xref target="security-considerations"/>).</t>

</section>
<section anchor="sane-secure" title="The Secure Attribute">

<t>The Secure attribute limits the scope of the cookie to “secure” channels
(where “secure” is defined by the user agent). When a cookie has the Secure
attribute, the user agent will include the cookie in an HTTP request only if
the request is transmitted over a secure channel (typically HTTP over Transport
Layer Security (TLS) <xref target="RFC2818"/>).</t>

<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"/> for more details).</t>

</section>
<section anchor="the-httponly-attribute" title="The HttpOnly Attribute">

<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="the-samesite-attribute" title="The SameSite Attribute">

<t>The “SameSite” attribute limits the scope of the cookie such that it will only
be attached to requests if those requests are same-site, as defined by the
algorithm in <xref target="same-site-requests"/>. For example, requests for
<spanx style="verb">https://site.example/sekrit-image</spanx> will attach same-site cookies if and only if
initiated from a context whose “site for cookies” is “site.example”.</t>

<t>If the “SameSite” attribute’s value is “Strict”, the cookie will only be sent
along with “same-site” requests. If the value is “Lax”, the cookie will be sent
with same-site requests, and with “cross-site” top-level navigations, as
described in <xref target="strict-lax"/>. If the value is “None”, the cookie will be sent
with same-site and cross-site requests. If the “SameSite” attribute’s value is
something other than these three known keywords, the attribute’s value will be
treated as “None”.</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" title="Cookie Name Prefixes">

<t><xref target="weak-confidentiality"/> and <xref target="weak-integrity"/> of this document spell out some of the drawbacks of cookies’
historical implementation. In particular, it is impossible for a server to have
confidence that a given cookie was set with a particular set of attributes. In
order to provide such confidence in a backwards-compatible way, two common sets
of requirements can be inferred from the first few characters of the cookie’s
name.</t>

<t>The normative requirements for the prefixes described below are detailed in the
storage model algorithm defined in <xref target="storage-model"/>.</t>

<section anchor="the-secure-prefix" title="The “__Secure-“ Prefix">

<t>If a cookie’s name begins with a case-sensitive match for the string
<spanx style="verb">__Secure-</spanx>, then the cookie will have been set with a <spanx style="verb">Secure</spanx> attribute.</t>

<t>For example, the following <spanx style="verb">Set-Cookie</spanx> header would be rejected by a conformant
user agent, as it does not have a <spanx style="verb">Secure</spanx> attribute.</t>

<figure><artwork><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example
]]></artwork></figure>

<t>Whereas the following <spanx style="verb">Set-Cookie</spanx> header would be accepted:</t>

<figure><artwork><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example; Secure
]]></artwork></figure>

</section>
<section anchor="the-host-prefix" title="The “__Host-“ Prefix">

<t>If a cookie’s name begins with a case-sensitive match for the string
<spanx style="verb">__Host-</spanx>, then the cookie will have been set with a <spanx style="verb">Secure</spanx> attribute, a
<spanx style="verb">Path</spanx> attribute with a value of <spanx style="verb">/</spanx>, and no <spanx style="verb">Domain</spanx> 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 <spanx style="verb">Domain</spanx> attribute
ensures that the cookie’s <spanx style="verb">host-only-flag</spanx> is true, locking the cookie to a
particular host, rather than allowing it to span subdomains. Setting the <spanx style="verb">Path</spanx>
to <spanx style="verb">/</spanx> means that the cookie is effective for the entire host, and won’t be
overridden for specific paths. The <spanx style="verb">Secure</spanx> 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 <spanx style="verb">__Host-</spanx> cookies continue
to ignore.</t>

<t>For example, the following cookies would always be rejected:</t>

<figure><artwork><![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></figure>

<t>While the would be accepted if set from a secure origin (e.g.
“https://site.example/”), and rejected otherwise:</t>

<figure><artwork><![CDATA[
Set-Cookie: __Host-SID=12345; Secure; Path=/
]]></artwork></figure>

</section>
</section>
</section>
<section anchor="sane-cookie" title="Cookie">

<section anchor="syntax-1" title="Syntax">

<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"/> (and the user agent
conforms to the requirements in <xref target="ua-requirements"/>), the user agent will send a Cookie
header that conforms to the following grammar:</t>

<figure><artwork type="abnf"><![CDATA[
cookie-header = "Cookie:" OWS cookie-string OWS
cookie-string = cookie-pair *( ";" SP cookie-pair )
]]></artwork></figure>

</section>
<section anchor="semantics" title="Semantics">

<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" title="User Agent Requirements">

<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"/>).</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" title="Subcomponent Algorithms">

<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" title="Dates">

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

<t><list style="numbers">
  <t>Using the grammar below, divide the cookie-date into date-tokens.  <vspace blankLines='1'/>
    <figure><artwork type="abnf"><![CDATA[
cookie-date     = *delimiter date-token-list *delimiter
date-token-list = date-token *( 1*delimiter date-token )
date-token      = 1*non-delimiter

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

day-of-month    = 1*2DIGIT [ non-digit *OCTET ]
month           = ( "jan" / "feb" / "mar" / "apr" /
                    "may" / "jun" / "jul" / "aug" /
                    "sep" / "oct" / "nov" / "dec" ) *OCTET
year            = 2*4DIGIT [ non-digit *OCTET ]
time            = hms-time [ non-digit *OCTET ]
hms-time        = time-field ":" time-field ":" time-field
time-field      = 1*2DIGIT
]]></artwork></figure>
  </t>
  <t>Process each date-token sequentially in the order the date-tokens
appear in the cookie-date:  <list style="numbers">
      <t>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.</t>
      <t>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.</t>
      <t>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.</t>
      <t>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.</t>
    </list></t>
  <t>If the year-value is greater than or equal to 70 and less than or equal to
99, increment the year-value by 1900.</t>
  <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.  <list style="numbers">
      <t>NOTE: Some existing user agents interpret two-digit years differently.</t>
    </list></t>
  <t>Abort these steps and fail to parse the cookie-date if:  <list style="symbols">
      <t>at least one of the found-day-of-month, found-month, found-year, or
found-time flags is not set,</t>
      <t>the day-of-month-value is less than 1 or greater than 31,</t>
      <t>the year-value is less than 1601,</t>
      <t>the hour-value is greater than 23,</t>
      <t>the minute-value is greater than 59, or</t>
      <t>the second-value is greater than 59.</t>
    </list>
(Note that leap seconds cannot be represented in this syntax.)</t>
  <t>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.</t>
  <t>Return the parsed-cookie-date as the result of this algorithm.</t>
</list></t>

</section>
<section anchor="canonicalized-host-names" title="Canonicalized Host Names">

<t>A canonicalized host name is the string generated by the following algorithm:</t>

<t><list style="numbers">
  <t>Convert the host name to a sequence of individual domain name labels.</t>
  <t>Convert each label that is not a Non-Reserved LDH (NR-LDH) label, to an
A-label (see Section 2.3.2.1 of <xref target="RFC5890"/> for the former and latter), or
to a “punycode label” (a label resulting from the “ToASCII” conversion in
Section 4 of <xref target="RFC3490"/>), as appropriate (see <xref target="idna-migration"/> of this
specification).</t>
  <t>Concatenate the resulting labels, separated by a %x2E (“.”) character.</t>
</list></t>

</section>
<section anchor="domain-matching" title="Domain Matching">

<t>A string domain-matches a given domain string if at least one of the following
conditions hold:</t>

<t><list style="symbols">
  <t>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.)</t>
  <t>All of the following conditions hold:  <list style="symbols">
      <t>The domain string is a suffix of the string.</t>
      <t>The last character of the string that is not included in the domain
string is a %x2E (“.”) character.</t>
      <t>The string is a host name (i.e., not an IP address).</t>
    </list></t>
</list></t>

</section>
<section anchor="cookie-path" title="Paths and Path-Match">

<t>The user agent MUST use an algorithm equivalent to the following algorithm to
compute the default-path of a cookie:</t>

<t><list style="numbers">
  <t>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.</t>
  <t>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.</t>
  <t>If the uri-path contains no more than one %x2F (“/”) character, output
%x2F (“/”) and skip the remaining step.</t>
  <t>Output the characters of the uri-path from the first character up to, but
not including, the right-most %x2F (“/”).</t>
</list></t>

<t>A request-path path-matches a given cookie-path if at least one of the
following conditions holds:</t>

<t><list style="symbols">
  <t>The cookie-path and the request-path are identical.  <vspace blankLines='1'/>
Note that this differs from the rules in <xref target="RFC3986"/> for equivalence of the
path component, and hence two equivalent paths can have different cookies.</t>
  <t>The cookie-path is a prefix of the request-path, and the last character
of the cookie-path is %x2F (“/”).</t>
  <t>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.</t>
</list></t>

</section>
</section>
<section anchor="same-site-requests" title="“Same-site” and “cross-site” Requests">

<t>A request is “same-site” if its target’s URI’s origin’s registrable domain
is an exact match for the request’s client’s “site for cookies”, or if the
request has no client. The request is otherwise “cross-site”.</t>

<t>For a given request (“request”), the following algorithm returns <spanx style="verb">same-site</spanx> or
<spanx style="verb">cross-site</spanx>:</t>

<t><list style="numbers">
  <t>If <spanx style="verb">request</spanx>’s client is <spanx style="verb">null</spanx>, return <spanx style="verb">same-site</spanx>.  <vspace blankLines='1'/>
Note that this is the case for navigation triggered by the user directly
(e.g. by typing directly into a user agent’s address bar).</t>
  <t>Let <spanx style="verb">site</spanx> be <spanx style="verb">request</spanx>’s client’s “site for cookies” (as defined in the
following sections).</t>
  <t>Let <spanx style="verb">target</spanx> be the registrable domain of <spanx style="verb">request</spanx>’s current url.</t>
  <t>If <spanx style="verb">site</spanx> is an exact match for <spanx style="verb">target</spanx>, return <spanx style="verb">same-site</spanx>.</t>
  <t>Return <spanx style="verb">cross-site</spanx>.</t>
</list></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" title="Document-based requests">

<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
registrable domain of that URI’s origin represents the context in which a user
most likely believes themselves to be interacting. We’ll label this domain the
“top-level site”.</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 site.</t>

<t>For documents which are displayed in nested browsing contexts, we need to audit
the origins of each of a document’s ancestor browsing contexts’ active documents
in order to account for the “multiple-nested scenarios” described in Section 4
of <xref target="RFC7034"/>. A document’s “site for cookies” is the top-level site if and
only if the document and each of its ancestor documents’ origins have the same
registrable domain as the top-level site. Otherwise its “site for cookies” is
the empty string.</t>

<t>Given a Document (<spanx style="verb">document</spanx>), the following algorithm returns its “site for
cookies” (either a registrable domain, or the empty string):</t>

<t><list style="numbers">
  <t>Let <spanx style="verb">top-document</spanx> be the active document in <spanx style="verb">document</spanx>’s browsing context’s
top-level browsing context.</t>
  <t>Let <spanx style="verb">top-origin</spanx> be the origin of <spanx style="verb">top-document</spanx>’s URI if <spanx style="verb">top-document</spanx>’s
sandboxed origin browsing context flag is set, and <spanx style="verb">top-document</spanx>’s origin
otherwise.</t>
  <t>Let <spanx style="verb">documents</spanx> be a list containing <spanx style="verb">document</spanx> and each of <spanx style="verb">document</spanx>’s
ancestor browsing contexts’ active documents.</t>
  <t>For each <spanx style="verb">item</spanx> in <spanx style="verb">documents</spanx>:  <list style="numbers">
      <t>Let <spanx style="verb">origin</spanx> be the origin of <spanx style="verb">item</spanx>’s URI if <spanx style="verb">item</spanx>’s sandboxed origin
browsing context flag is set, and <spanx style="verb">item</spanx>’s origin otherwise.</t>
      <t>If <spanx style="verb">origin</spanx>’s host’s registrable domain is not an exact match for
<spanx style="verb">top-origin</spanx>’s host’s registrable domain, return the empty string.</t>
    </list></t>
  <t>Return <spanx style="verb">top-origin</spanx>’s host’s registrable domain.</t>
</list></t>

</section>
<section anchor="worker-requests" title="Worker-based requests">

<t>Worker-driven requests aren’t as clear-cut as document-driven requests, as
there isn’t a clear link between a top-level browsing context and a worker.
This is especially true for Service Workers <xref target="SERVICE-WORKERS"/>, which may
execute code in the background, without any document visible at all.</t>

<t>Note: The descriptions below assume that workers must be same-origin with
the documents that instantiate them. If this invariant changes, we’ll need to
take the worker’s script’s URI into account when determining their status.</t>

<section anchor="dedicated-and-shared-requests" title="Dedicated and Shared Workers">

<t>Dedicated workers are simple, as each dedicated worker is bound to one and only
one document. Requests generated from a dedicated worker (via <spanx style="verb">importScripts</spanx>,
<spanx style="verb">XMLHttpRequest</spanx>, <spanx style="verb">fetch()</spanx>, 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 cookie” values, the
worker’s “site for cookies” will be the empty string in cases where the values
diverge, and the shared value in cases where the values agree.</t>

<t>Given a WorkerGlobalScope (<spanx style="verb">worker</spanx>), the following algorithm returns its “site
for cookies” (either a registrable domain, or the empty string):</t>

<t><list style="numbers">
  <t>Let <spanx style="verb">site</spanx> be <spanx style="verb">worker</spanx>’s origin’s host’s registrable domain.</t>
  <t>For each <spanx style="verb">document</spanx> in <spanx style="verb">worker</spanx>’s Documents:  <list style="numbers">
      <t>Let <spanx style="verb">document-site</spanx> be <spanx style="verb">document</spanx>’s “site for cookies” (as defined
in <xref target="document-requests"/>).</t>
      <t>If <spanx style="verb">document-site</spanx> is not an exact match for <spanx style="verb">site</spanx>, return the empty
string.</t>
    </list></t>
  <t>Return <spanx style="verb">site</spanx>.</t>
</list></t>

</section>
<section anchor="service-workers" title="Service Workers">

<t>Service Workers are more complicated, as they act as a completely separate
execution context with only tangential relationship to the Document which
registered them.</t>

<t>Requests which simply pass through a Service Worker will be handled as described
above: the request’s client will be the Document or Worker which initiated the
request, and its “site for cookies” will be those defined in
<xref target="document-requests"/> and <xref target="dedicated-and-shared-requests"/></t>

<t>Requests which are initiated by the Service Worker itself (via a direct call to
<spanx style="verb">fetch()</spanx>, for instance), on the other hand, will have a client which is a
ServiceWorkerGlobalScope. Its “site for cookies” will be the registrable domain
of the Service Worker’s URI.</t>

<t>Given a ServiceWorkerGlobalScope (<spanx style="verb">worker</spanx>), the following algorithm returns its
“site for cookies” (either a registrable domain, or the empty string):</t>

<t><list style="numbers">
  <t>Return <spanx style="verb">worker</spanx>’s origin’s host’s registrable domain.</t>
</list></t>

</section>
</section>
</section>
<section anchor="set-cookie" title="The Set-Cookie Header">

<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"/>).</t>

<t>If the user agent does not ignore the Set-Cookie header field in its entirety,
the user agent MUST parse the field-value of the Set-Cookie header field as a
set-cookie-string (defined below).</t>

<t>NOTE: The algorithm below is more permissive than the grammar in <xref target="sane-set-cookie"/>.
For example, the algorithm strips leading and trailing whitespace from the
cookie name and value (but maintains internal whitespace), whereas the grammar
in <xref target="sane-set-cookie"/> forbids whitespace in these positions. User agents use this
algorithm so as to interoperate with servers that do not follow the
recommendations in <xref target="sane-profile"/>.</t>

<t>A user agent MUST use an algorithm equivalent to the following algorithm to
parse a set-cookie-string:</t>

<t><list style="numbers">
  <t>If the set-cookie-string contains a %x3B (“;”) character:  <list style="numbers">
      <t>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).</t>
    </list>
Otherwise:  <list style="numbers">
      <t>The name-value-pair string consists of all the characters contained in
the set-cookie-string, and the unparsed-attributes is the empty
string.</t>
    </list></t>
  <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.  <vspace blankLines='1'/>
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>
  <t>Remove any leading or trailing WSP characters from the name string and the
value string.</t>
  <t>If both the name string and the value string are empty, ignore the
set-cookie-string entirely.</t>
  <t>The cookie-name is the name string, and the cookie-value is the value string.</t>
</list></t>

<t>The user agent MUST use an algorithm equivalent to the following algorithm to
parse the unparsed-attributes:</t>

<t><list style="numbers">
  <t>If the unparsed-attributes string is empty, skip the rest of these steps.</t>
  <t>Discard the first character of the unparsed-attributes (which will be a
%x3B (“;”) character).</t>
  <t>If the remaining unparsed-attributes contains a %x3B (“;”) character:  <list style="numbers">
      <t>Consume the characters of the unparsed-attributes up to, but not
including, the first %x3B (“;”) character.</t>
    </list>
Otherwise:  <list style="numbers">
      <t>Consume the remainder of the unparsed-attributes.</t>
    </list>
Let the cookie-av string be the characters consumed in this step.</t>
  <t>If the cookie-av string contains a %x3D (“=”) character:  <list style="numbers">
      <t>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.</t>
    </list>
Otherwise:  <list style="numbers">
      <t>The attribute-name string consists of the entire cookie-av string,
and the attribute-value string is empty.</t>
    </list></t>
  <t>Remove any leading or trailing WSP characters from the attribute-name
string and the attribute-value string.</t>
  <t>Process the attribute-name and attribute-value according to the
requirements in the following subsections. (Notice that attributes with
unrecognized attribute-names are ignored.)</t>
  <t>Return to Step 1 of this algorithm.</t>
</list></t>

<t>When the user agent finishes parsing the set-cookie-string, the user agent is
said to “receive a cookie” from the request-uri with name cookie-name,
value cookie-value, and attributes cookie-attribute-list. (See <xref target="storage-model"/>
for additional requirements triggered by receiving a cookie.)</t>

<section anchor="the-expires-attribute-1" title="The Expires Attribute">

<t>If the attribute-name case-insensitively matches the string “Expires”, the
user agent MUST process the cookie-av as follows.</t>

<t><list style="numbers">
  <t>Let the expiry-time be the result of parsing the attribute-value as
cookie-date (see <xref target="cookie-date"/>).</t>
  <t>If the attribute-value failed to parse as a cookie date, ignore the
cookie-av.</t>
  <t>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.</t>
  <t>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.</t>
  <t>Append an attribute to the cookie-attribute-list with an attribute-name
of Expires and an attribute-value of expiry-time.</t>
</list></t>

</section>
<section anchor="the-max-age-attribute-1" title="The Max-Age Attribute">

<t>If the attribute-name case-insensitively matches the string “Max-Age”, the
user agent MUST process the cookie-av as follows.</t>

<t><list style="numbers">
  <t>If the first character of the attribute-value is not a DIGIT or a “-“
character, ignore the cookie-av.</t>
  <t>If the remainder of attribute-value contains a non-DIGIT character, ignore
the cookie-av.</t>
  <t>Let delta-seconds be the attribute-value converted to an integer.</t>
  <t>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.</t>
  <t>Append an attribute to the cookie-attribute-list with an attribute-name
of Max-Age and an attribute-value of expiry-time.</t>
</list></t>

</section>
<section anchor="the-domain-attribute-1" title="The Domain Attribute">

<t>If the attribute-name case-insensitively matches the string “Domain”, the user
agent MUST process the cookie-av as follows.</t>

<t><list style="numbers">
  <t>If the attribute-value is empty, the behavior is undefined. However, the
user agent SHOULD ignore the cookie-av entirely.</t>
  <t>If the first character of the attribute-value string is %x2E (“.”):  <list style="numbers">
      <t>Let cookie-domain be the attribute-value without the leading %x2E
(“.”) character.</t>
    </list>
Otherwise:  <list style="numbers">
      <t>Let cookie-domain be the entire attribute-value.</t>
    </list></t>
  <t>Convert the cookie-domain to lower case.</t>
  <t>Append an attribute to the cookie-attribute-list with an attribute-name
of Domain and an attribute-value of cookie-domain.</t>
</list></t>

</section>
<section anchor="the-path-attribute-1" title="The Path Attribute">

<t>If the attribute-name case-insensitively matches the string “Path”, the user
agent MUST process the cookie-av as follows.</t>

<t><list style="numbers">
  <t>If the attribute-value is empty or if the first character of the
attribute-value is not %x2F (“/”):  <list style="numbers">
      <t>Let cookie-path be the default-path.</t>
    </list>
Otherwise:  <list style="numbers">
      <t>Let cookie-path be the attribute-value.</t>
    </list></t>
  <t>Append an attribute to the cookie-attribute-list with an attribute-name
of Path and an attribute-value of cookie-path.</t>
</list></t>

</section>
<section anchor="the-secure-attribute" title="The Secure Attribute">

<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-1" title="The HttpOnly Attribute">

<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-1" title="The SameSite Attribute">

<t>If the attribute-name case-insensitively matches the string “SameSite”, the
user agent MUST process the cookie-av as follows:</t>

<t><list style="numbers">
  <t>Let <spanx style="verb">enforcement</spanx> be “None”.</t>
  <t>If cookie-av’s attribute-value is a case-insensitive match for “Strict”,
set <spanx style="verb">enforcement</spanx> to “Strict”.</t>
  <t>If cookie-av’s attribute-value is a case-insensitive match for “Lax”, set
<spanx style="verb">enforcement</spanx> to “Lax”.</t>
  <t>Append an attribute to the cookie-attribute-list with an attribute-name
of “SameSite” and an attribute-value of <spanx style="verb">enforcement</spanx>.</t>
</list></t>

<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" title="“Strict” and “Lax” enforcement">

<t>Same-site cookies in “Strict” enforcement mode will not be sent along with
top-level navigations which are triggered from a cross-site document context.
As discussed in <xref target="top-level-navigations"/>, this might or might not be compatible
with existing session management systems. In the interests of providing a
drop-in mechanism that mitigates the risk of CSRF attacks, developers may set
the <spanx style="verb">SameSite</spanx> 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"/>
sense) HTTP method.</t>

<t>Lax enforcement provides reasonable defense in depth against CSRF attacks that
rely on unsafe HTTP methods (like <spanx style="verb">POST</spanx>), but does not offer a robust defense
against CSRF as a general category of attack:</t>

<t><list style="numbers">
  <t>Attackers can still pop up new windows or trigger top-level navigations in
order to create a “same-site” request (as described in section 5.2.1), which
is only a speedbump along the road to exploitation.</t>
  <t>Features like <spanx style="verb">&lt;link rel='prerender'&gt;</spanx> <xref target="prerendering"/> can be exploited
to create “same-site” requests without the risk of user detection.</t>
</list></t>

<t>When possible, developers should use a session management mechanism such as
that described in <xref target="top-level-navigations"/> to mitigate the risk of CSRF more
completely.</t>

</section>
</section>
</section>
<section anchor="storage-model" title="Storage Model">

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

<t><list style="numbers">
  <t>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.</t>
  <t>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.</t>
  <t>If the cookie-attribute-list contains an attribute with an attribute-name
of “Max-Age”:  <list style="numbers">
      <t>Set the cookie’s persistent-flag to true.</t>
      <t>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”.</t>
    </list>
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”):  <list style="numbers">
      <t>Set the cookie’s persistent-flag to true.</t>
      <t>Set the cookie’s expiry-time to attribute-value of the last
attribute in the cookie-attribute-list with an attribute-name of
“Expires”.</t>
    </list>
Otherwise:  <list style="numbers">
      <t>Set the cookie’s persistent-flag to false.</t>
      <t>Set the cookie’s expiry-time to the latest representable date.</t>
    </list></t>
  <t>If the cookie-attribute-list contains an attribute with an
attribute-name of “Domain”:  <list style="numbers">
      <t>Let the domain-attribute be the attribute-value of the last
attribute in the cookie-attribute-list with an attribute-name of
“Domain”.</t>
    </list>
Otherwise:  <list style="numbers">
      <t>Let the domain-attribute be the empty string.</t>
    </list></t>
  <t>If the user agent is configured to reject “public suffixes” and the
domain-attribute is a public suffix:  <list style="numbers">
      <t>If the domain-attribute is identical to the canonicalized
request-host:      <list style="numbers">
          <t>Let the domain-attribute be the empty string.</t>
        </list>
Otherwise:      <list style="numbers">
          <t>Ignore the cookie entirely and abort these steps.</t>
        </list></t>
    </list>
NOTE: This step prevents <spanx style="verb">attacker.example</spanx> from disrupting the integrity of
<spanx style="verb">site.example</spanx> by setting a cookie with a Domain attribute of “example”.</t>
  <t>If the domain-attribute is non-empty:  <list style="numbers">
      <t>If the canonicalized request-host does not domain-match the
domain-attribute:      <list style="numbers">
          <t>Ignore the cookie entirely and abort these steps.</t>
        </list>
Otherwise:      <list style="numbers">
          <t>Set the cookie’s host-only-flag to false.</t>
          <t>Set the cookie’s domain to the domain-attribute.</t>
        </list></t>
    </list>
Otherwise:  <list style="numbers">
      <t>Set the cookie’s host-only-flag to true.</t>
      <t>Set the cookie’s domain to the canonicalized request-host.</t>
    </list></t>
  <t>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.</t>
  <t>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.</t>
  <t>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.</t>
  <t>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.</t>
  <t>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.</t>
  <t>If the cookie’s secure-only-flag is not set, 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:  <list style="numbers">
      <t>Their name matches the name of the newly-created cookie.</t>
      <t>Their secure-only-flag is true.</t>
      <t>Their domain domain-matches the domain of the newly-created cookie, or
vice-versa.</t>
      <t>The path of the newly-created cookie path-matches the path of the
existing cookie.</t>
    </list>
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>
  <t>If the cookie-attribute-list contains an attribute with an
attribute-name of “SameSite”, 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” (i.e. either “Strict”, “Lax”, or “None”).
Otherwise, set the cookie’s same-site-flag to “None”.</t>
  <t>If the cookie’s <spanx style="verb">same-site-flag</spanx> is not “None”:  <list style="numbers">
      <t>If the cookie was received from a “non-HTTP” API, and the API was called
from a context whose “site for cookies” is not an exact match for
request-uri’s host’s registrable domain, then abort these steps and
ignore the newly created cookie entirely.</t>
      <t>If the cookie was received from a “same-site” request (as defined in
<xref target="same-site-requests"/>), skip the remaining substeps and continue
processing the cookie.</t>
      <t>If the cookie was received from a request which is navigating a
top-level browsing context <xref target="HTML"/> (e.g. if the request’s “reserved
client” is either <spanx style="verb">null</spanx> or an environment whose “target browsing
context” is a top-level browing context), skip the remaining substeps
and continue processing the cookie.      <vspace blankLines='1'/>
Note: Top-level navigations can create a cookie with any <spanx style="verb">SameSite</spanx>
value, even if the new cookie wouldn’t have been sent along with
the request had it already existed prior to the navigation.</t>
      <t>Abort these steps and ignore the newly created cookie entirely.</t>
    </list></t>
  <t>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.</t>
  <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:  <list style="numbers">
      <t>The cookie’s secure-only-flag is true.</t>
      <t>The cookie’s host-only-flag is true.</t>
      <t>The cookie-attribute-list contains an attribute with an attribute-name
of “Path”, and the cookie’s path is <spanx style="verb">/</spanx>.</t>
    </list></t>
  <t>If the cookie store contains a cookie with the same name, domain,
host-only-flag, and path as the newly-created cookie:  <list style="numbers">
      <t>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.)</t>
      <t>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.</t>
      <t>Update the creation-time of the newly-created cookie to match the
creation-time of the old-cookie.</t>
      <t>Remove the old-cookie from the cookie store.</t>
    </list></t>
  <t>Insert the newly-created cookie into the cookie store.</t>
</list></t>

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

<t><list style="numbers">
  <t>Expired cookies.</t>
  <t>Cookies whose secure-only-flag is not set, and which share a domain field
with more than a predetermined number of other cookies.</t>
  <t>Cookies that share a domain field with more than a predetermined number of
other cookies.</t>
  <t>All cookies.</t>
</list></t>

<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" title="The Cookie Header">

<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"/>).</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>

<t><list style="numbers">
  <t>Let cookie-list be the set of cookies from the cookie store that meets all
of the following requirements:  <list style="symbols">
      <t>Either:      <list style="symbols">
          <t>The cookie’s host-only-flag is true and the canonicalized
request-host is identical to the cookie’s domain.</t>
        </list>
Or:      <list style="symbols">
          <t>The cookie’s host-only-flag is false and the canonicalized
request-host domain-matches the cookie’s domain.</t>
        </list></t>
      <t>The request-uri’s path path-matches the cookie’s path.</t>
      <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).      <vspace blankLines='1'/>
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>
      <t>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).</t>
      <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"/>) then exclude the
cookie unless all of the following statements hold:      <list style="numbers">
          <t>The same-site-flag is “Lax”</t>
          <t>The HTTP request’s method is “safe”.</t>
          <t>The HTTP request’s target browsing context is a top-level browsing
context.</t>
        </list></t>
    </list></t>
  <t>The user agent SHOULD sort the cookie-list in the following order:  <list style="symbols">
      <t>Cookies with longer paths are listed before cookies with shorter
paths.</t>
      <t>Among cookies that have equal-length path fields, cookies with earlier
creation-times are listed before cookies with later creation-times.</t>
    </list>
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>
  <t>Update the last-access-time of each cookie in the cookie-list to the
current date and time.</t>
  <t>Serialize the cookie-list into a cookie-string by processing each cookie
in the cookie-list in order:  <list style="numbers">
      <t>Output the cookie’s name, the %x3D (“=”) character, and the cookie’s
value.</t>
      <t>If there is an unprocessed cookie in the cookie-list, output the
characters %x3B and %x20 (“; “).</t>
    </list></t>
</list></t>

<t>NOTE: Despite its name, the cookie-string is actually a sequence of octets, not
a sequence of characters.  To convert the cookie-string (or components
thereof) into a sequence of characters (e.g., for presentation to the user),
the user agent might wish to try using the UTF-8 character encoding <xref target="RFC3629"/>
to decode the octet sequence. This decoding might fail, however, because not
every sequence of octets is valid UTF-8.</t>

</section>
</section>
<section anchor="implementation-considerations" title="Implementation Considerations">

<section anchor="limits" title="Limits">

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

<t><list style="symbols">
  <t>At least 4096 bytes per cookie (as measured by the sum of the length of the
cookie’s name, value, and attributes).</t>
  <t>At least 50 cookies per domain.</t>
  <t>At least 3000 cookies total.</t>
</list></t>

<t>Servers SHOULD use as few and as small cookies as possible to avoid reaching
these implementation limits and to minimize network bandwidth due to the
Cookie header 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" title="Application Programming Interfaces">

<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" title="IDNA Dependency and Migration">

<t>IDNA2008 <xref target="RFC5890"/> supersedes IDNA2003 <xref target="RFC3490"/>. However, there are
differences between the two specifications, and thus there can be differences
in processing (e.g., converting) domain name labels that have been registered
under one from those registered under the other. There will be a transition
period of some time during which IDNA2003-based domain name labels will exist
in the wild. User agents SHOULD implement IDNA2008 <xref target="RFC5890"/> and MAY
implement <xref target="UTS46"/> or <xref target="RFC5895"/> in order to facilitate their IDNA transition.
If a user agent does not implement IDNA2008, the user agent MUST implement
IDNA2003 <xref target="RFC3490"/>.</t>

</section>
</section>
<section anchor="privacy-considerations" title="Privacy Considerations">

<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" title="Third-Party Cookies">

<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" title="User Controls">

<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"/>.</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" title="Expiration Dates">

<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" title="Security Considerations">

<section anchor="overview-1" title="Overview">

<t>Cookies have a number of security pitfalls. This section overviews a few of the
more salient issues.</t>

<t>In particular, cookies encourage developers to rely on ambient authority for
authentication, often becoming vulnerable to attacks such as cross-site request
forgery <xref target="CSRF"/>. Also, when storing session identifiers in cookies, developers
often create session fixation vulnerabilities.</t>

<t>Transport-layer encryption, such as that employed in HTTPS, is insufficient to
prevent a network attacker from obtaining or altering a victim’s cookies because
the cookie protocol itself has various vulnerabilities (see “Weak Confidentiality”
and “Weak Integrity”, below). In addition, by default, cookies do not provide
confidentiality or integrity from network attackers, even when used in conjunction
with HTTPS.</t>

</section>
<section anchor="ambient-authority" title="Ambient Authority">

<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" title="Clear Text">

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

<t><list style="numbers">
  <t>All sensitive information conveyed in these headers is exposed to an
eavesdropper.</t>
  <t>A malicious intermediary could alter the headers as they travel in either
direction, with unpredictable results.</t>
  <t>A malicious client could alter the Cookie header before transmission,
with unpredictable results.</t>
</list></t>

<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="sane-secure"/>) for every
cookie. If a server does not set the Secure attribute, the protection
provided by the secure channel will be largely moot.</t>

<t>For example, consider a webmail server that stores a session identifier in a
cookie and is typically accessed over HTTPS. If the server does not set the
Secure attribute on its cookies, an active network attacker can intercept any
outbound HTTP request from the user agent and redirect that request to the
webmail server over HTTP. Even if the webmail server is not listening for HTTP
connections, the user agent will still include cookies in the request. The
active network attacker can intercept these cookies, replay them against the
server, and learn the contents of the user’s email. If, instead, the server had
set the Secure attribute on its cookies, the user agent would not have
included the cookies in the clear-text request.</t>

</section>
<section anchor="session-identifiers" title="Session Identifiers">

<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" title="Weak Confidentiality">

<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" title="Weak Integrity">

<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" title="Reliance on DNS">

<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" title="SameSite Cookies">

<section anchor="defense-in-depth" title="Defense in depth">

<t>“SameSite” cookies offer a robust defense against CSRF attack when deployed in
strict mode, and when supported by the client. It is, however, prudent to ensure
that this designation is not the extent of a site’s defense against CSRF, as
same-site navigations and submissions can certainly be executed in conjunction
with other attack vectors such as cross-site scripting.</t>

<t>Developers are strongly encouraged to deploy the usual server-side defenses
(CSRF tokens, ensuring that “safe” HTTP methods are idempotent, etc) to mitigate
the risk more fully.</t>

<t>Additionally, client-side techniques such as those described in
<xref target="app-isolation"/> may also prove effective against CSRF, and are certainly worth
exploring in combination with “SameSite” cookies.</t>

</section>
<section anchor="top-level-navigations" title="Top-level Navigations">

<t>Setting the <spanx style="verb">SameSite</spanx> 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 <spanx style="verb">https://site.example/</spanx>. They might expect that clicking on an
emailed link to <spanx style="verb">https://projects.example/secret/project</spanx> would show them the secret
project that they’re authorized to see, but if <spanx style="verb">projects.example</spanx> has marked their
session cookies as <spanx style="verb">SameSite</spanx>, then this cross-site navigation won’t send them
along with the request. <spanx style="verb">projects.example</spanx> 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 <spanx style="verb">SameSite</spanx>, and
its absence would prompt a reauthentication step before executing any
non-idempotent action. The former could drop the <spanx style="verb">SameSite</spanx> 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" title="Mashups and Widgets">

<t>The <spanx style="verb">SameSite</spanx> 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" title="Server-controlled">

<t>SameSite cookies in and of themselves don’t do anything to address the
general privacy concerns outlined in Section 7.1 of <xref target="RFC6265"/>. The “SameSite”
attribute is set by the server, and serves to mitigate the risk of certain kinds
of attacks that the server is worried about. The user is not involved in this
decision. Moreover, a number of side-channels exist which could allow a server
to link distinct requests even in the absence of cookies. Connection and/or
socket pooling, Token Binding, and Channel ID all offer explicit methods of
identification that servers could take advantage of.</t>

</section>
</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>The permanent message header field registry (see <xref target="RFC3864"/>) needs to be
updated with the following registrations.</t>

<section anchor="iana-cookie" title="Cookie">

<t><list style="hanging">
  <t hangText='Header field name:'>
  Cookie</t>
  <t hangText='Applicable protocol:'>
  http</t>
  <t hangText='Status:'>
  standard</t>
  <t hangText='Author/Change controller:'>
  IETF</t>
  <t hangText='Specification document:'>
  this specification (<xref target="cookie"/>)</t>
</list></t>

</section>
<section anchor="iana-set-cookie" title="Set-Cookie">

<t><list style="hanging">
  <t hangText='Header field name:'>
  Set-Cookie</t>
  <t hangText='Applicable protocol:'>
  http</t>
  <t hangText='Status:'>
  standard</t>
  <t hangText='Author/Change controller:'>
  IETF</t>
  <t hangText='Specification document:'>
  this specification (<xref target="set-cookie"/>)</t>
</list></t>

</section>
</section>


  </middle>

  <back>

    <references title='Normative References'>





<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></organization>
    </author>
    <date year="2003" month="March"/>
  </front>
  <seriesInfo name="RFC" value="3490"/>
<annotation>See <xref target="idna-migration"/> for an explanation why the normative reference to an obsoleted specification is needed.</annotation></reference>




<reference  anchor="RFC4790" 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 &quot;origin&quot;, 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 &quot;Origin&quot;, 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 &quot;http&quot; and &quot;https&quot; 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="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 year="n.d."/>
  </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 year="n.d."/>
  </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></organization>
    </author>
    <author initials="J." surname="Song" fullname="Jungkee Song">
      <organization></organization>
    </author>
    <author initials="J." surname="Archibald" fullname="Jake Archibald">
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>
<reference anchor="PSL" target="https://publicsuffix.org/list/">
  <front>
    <title>Public Suffix List</title>
    <author >
      <organization></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>


    </references>

    <references title='Informative References'>





<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 &quot;made sense&quot;, 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 &quot;permitted&quot; 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></organization>
    </author>
    <author initials="M." surname="Suignard" fullname="Michel Suignard">
      <organization></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></organization>
    </author>
    <author initials="C." surname="Jackson">
      <organization></organization>
    </author>
    <author initials="J." surname="Mitchell">
      <organization></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></organization>
    </author>
    <author initials="E." surname="Burzstein">
      <organization></organization>
    </author>
    <author initials="C." surname="Jackson">
      <organization></organization>
    </author>
    <author initials="D." surname="Boneh">
      <organization></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></organization>
    </author>
    <author initials="J." surname="Bau" fullname="Jason Bau">
      <organization></organization>
    </author>
    <author initials="C." surname="Reis" fullname="Charles Reis">
      <organization></organization>
    </author>
    <author initials="A." surname="Barth" fullname="Adam Barth">
      <organization></organization>
    </author>
    <author initials="C." surname="Jackson" fullname="Collin Jackson">
      <organization></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></organization>
    </author>
    <date year="n.d."/>
  </front>
</reference>




<reference anchor="I-D.ietf-httpbis-cookie-alone">
<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' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-httpbis-cookie-alone-01.txt' />
</reference>



<reference anchor="I-D.ietf-httpbis-cookie-prefixes">
<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' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-httpbis-cookie-prefixes-00.txt' />
</reference>



<reference anchor="I-D.ietf-httpbis-cookie-same-site">
<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' />
<format type='TXT'
        target='http://www.ietf.org/internet-drafts/draft-ietf-httpbis-cookie-same-site-00.txt' />
</reference>




    </references>


<section anchor="changes" title="Changes">

<section anchor="draft-ietf-httpbis-rfc6265bis-00" title="draft-ietf-httpbis-rfc6265bis-00">

<t><list style="symbols">
  <t>Port <xref target="RFC6265"/> to Markdown. No (intentional) normative changes.</t>
</list></t>

</section>
<section anchor="draft-ietf-httpbis-rfc6265bis-01" title="draft-ietf-httpbis-rfc6265bis-01">

<t><list style="symbols">
  <t>Fixes to formatting caused by mistakes in the initial port to Markdown:  <list style="symbols">
      <t><eref target="https://github.com/httpwg/http-extensions/issues/243">https://github.com/httpwg/http-extensions/issues/243</eref></t>
      <t><eref target="https://github.com/httpwg/http-extensions/issues/246">https://github.com/httpwg/http-extensions/issues/246</eref></t>
    </list></t>
  <t>Addresses errata 3444 by updating the <spanx style="verb">path-value</spanx> and <spanx style="verb">extension-av</spanx>
grammar, errata 4148 by updating the <spanx style="verb">day-of-month</spanx>, <spanx style="verb">year</spanx>, and <spanx style="verb">time</spanx>
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></t>
  <t>Dropped <spanx style="verb">Cookie2</spanx> and <spanx style="verb">Set-Cookie2</spanx> from the IANA Considerations section:
<eref target="https://github.com/httpwg/http-extensions/issues/247">https://github.com/httpwg/http-extensions/issues/247</eref></t>
  <t>Merged the recommendations from <xref target="I-D.ietf-httpbis-cookie-alone"/>, removing
the ability for a non-secure origin to set cookies with a ‘secure’ flag, and
to overwrite cookies whose ‘secure’ flag is true.</t>
  <t>Merged the recommendations from <xref target="I-D.ietf-httpbis-cookie-prefixes"/>, adding
<spanx style="verb">__Secure-</spanx> and <spanx style="verb">__Host-</spanx> cookie name prefix processing instructions.</t>
</list></t>

</section>
<section anchor="draft-ietf-httpbis-rfc6265bis-02" title="draft-ietf-httpbis-rfc6265bis-02">

<t><list style="symbols">
  <t>Merged the recommendations from <xref target="I-D.ietf-httpbis-cookie-same-site"/>, adding
support for the <spanx style="verb">SameSite</spanx> attribute.</t>
  <t>Closed a number of editorial bugs:  <list style="symbols">
      <t>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></t>
      <t>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></t>
      <t>Clarified that the <spanx style="verb">__Host-</spanx> prefix requires an explicit <spanx style="verb">Path</spanx> attribute:
<eref target="https://github.com/httpwg/http-extensions/issues/222">https://github.com/httpwg/http-extensions/issues/222</eref></t>
      <t>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></t>
      <t>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></t>
      <t>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></t>
    </list></t>
</list></t>

</section>
<section anchor="draft-ietf-httpbis-rfc6265bis-03" title="draft-ietf-httpbis-rfc6265bis-03">

<t><list style="symbols">
  <t>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></t>
  <t>Reflect widespread implementation practice of including a cookie’s
<spanx style="verb">host-only-flag</spanx> when calculating its uniqueness:
<eref target="https://github.com/httpwg/http-extensions/issues/199">https://github.com/httpwg/http-extensions/issues/199</eref></t>
  <t>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></t>
</list></t>

</section>
<section anchor="draft-ietf-httpbis-rfc6265bis-04" title="draft-ietf-httpbis-rfc6265bis-04">

<t><list style="symbols">
  <t>Allow <spanx style="verb">SameSite</spanx> 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></t>
  <t>Treat <spanx style="verb">Set-Cookie: token</spanx> as creating the cookie <spanx style="verb">("", "token")</spanx>:
<eref target="https://github.com/httpwg/http-extensions/issues/159">https://github.com/httpwg/http-extensions/issues/159</eref></t>
  <t>Reject cookies with neither name nor value (e.g. <spanx style="verb">Set-Cookie: =</spanx> and
<spanx style="verb">Set-Cookie:</spanx>:  <eref target="https://github.com/httpwg/http-extensions/issues/159">https://github.com/httpwg/http-extensions/issues/159</eref></t>
  <t>Clarified behavior of multiple <spanx style="verb">SameSite</spanx> attributes in a cookie string:
<eref target="https://github.com/httpwg/http-extensions/issues/901">https://github.com/httpwg/http-extensions/issues/901</eref></t>
</list></t>

</section>
<section anchor="draft-ietf-httpbis-rfc6265bis-05" title="draft-ietf-httpbis-rfc6265bis-05">

<t><list style="symbols">
  <t>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>.</t>
</list></t>

</section>
</section>
<section numbered="false" anchor="acknowledgements" title="Acknowledgements">
<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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
IVD2Rzux2K7ZTJVyp8G8rtccgRez8iC+TkH/wRthimaRbsuF09LlhMZJ14CN
tBjMZsJPHOPCTIdZ/wQNXHhw1+sF3iE1TUtBNo1h6BaYw94Dl2hH/vQJK2dR
7/pFXQ5ZryY3o6nOF46LzMLelBc24NQaQLkr+t48/8ioo8sT9wEKYq3AC4BK
tVnx3nTZXCIJcKjcMCdEJnA2pICfgipyTHO29Dkh8FQuiW3rWqNCtMyJdjgn
bt+I4opZpiAK3AtxqqKcW6IWQlW4QSVGQGM0PJKd1sY4iG3wa5Z+QOScM+CI
Sg9IPOefTrUyxmCoHfVikWKy0fz/gDdCPIRYu2k8PBUT9gU3aM9tSNSSKERH
vJZ6jjDMP4SZcGlGgrFY5QUTTxQTMaJQdGQ6m3Wd1ZHCEpBUuQmR0DXV9tPL
5dpAU4NIR99E8Q4jPpuMbxI1I4PbFUsXLnIoiHghdklkjfIwa/VUqgutFQnZ
oHeFw+Ow7MVhpVXtOHY1Emno77ExJ5hFbrx+4rDyqFBF0uNDExxvCy8bPkGk
4mI664yXfcyqaY61ED1FoNj4ZF3cpJVaQMaGfzVCs5iWTbF1dFWAloKw3kQE
j9u0qBHXkwltHJsImSAD75xwZpat1s1GwnP5NKheJ+NcuEZ8vxDIKF91iNrY
m6cCPRTU4v6HJVNFbeMrRnsiJ27Hh6nQ6KSm7IrFhSf4jelO+8EQu46sg7y5
6O/od2fV69VqwV7LeFSOkVI7ltOVBSen3rhh4rskIYaHpjW8T2p5K0mNJEmR
sZuNDaIebh+bCaQcd7ZhUVLXyXFaxsdm/DSxakh7sbsbdo8hcsU7H9+GXs7i
krQJczjsO43ghSun8Bp4Eo8K7XvWm0wJK7q8wHuAmTQxv+E+QWp24UqNzjyI
gxv3mr1KeM1YljXHyq8KXR+37o+fxzfYWIH6Os3SYfKP9SxnsdO6/7SFG4pW
xRSFOCZ/WL+f3L8oJUh5U72cTGifkufpPPvYgGLH4WmUqInihg8RxHiHosgW
IR3j/OWZ3sNIgTf+UbfFP0phg8CBlxhfFJRvXIcUr8dsgpCnaCcgX8/Gv1VH
o7KWIpHX5NTPQMiqsVbvijCRiseDerAQCJJ2vATqjKSMywcQf6YF6cDa6BvW
jDFv6AWn4GKagAk7oS5xMAzEwfbUXHCNXZmahmFnls7Q7TnbDm+KGBNgkVgz
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

-->

</rfc>

