<?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.1.2 -->

<!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-01" category="std" obsoletes="6265">

  <feedback xmlns='http://purl.org/net/xml2rfc/ext' template="mailto:ietf-http-wg@w3.org?subject={docname},%20%22{section}%22&amp;body=%3c{ref}%3e:"/><front>
    <title>HTTP State Management Mechanism</title>

    <author initials="A." surname="Barth" fullname="Adam Barth">
      <organization>Google, Inc</organization>
      <address>
        <uri>https://www.adambarth.com/</uri>
      </address>
    </author>
    <author initials="M." surname="West" fullname="Mike West">
      <organization>Google, Inc</organization>
      <address>
        <email>mkwst@google.com</email>
        <uri>https://mikewest.org/</uri>
      </address>
    </author>

    <date year="2017" month="4" day="25"/>

    <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
2965.</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 Section 4 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 Section 4.</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 Section 4 represent a preferred subset of current
server behavior, and even the more liberal cookie processing algorithm provided
in Section 5 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>Prior to this document, there were at least three descriptions of cookies: the
so-called “Netscape cookie specification” <xref target="Netscape"/>, RFC 2109 <xref target="RFC2109"/>,
and RFC 2965 <xref target="RFC2965"/>. However, none of these documents describe how the
Cookie and Set-Cookie headers are actually used on the Internet (see
<xref target="Kri2001"/> for historical context). In relation to previous IETF
specifications of HTTP state management mechanisms, this document requests the
following actions:</t>

<t><list style="numbers">
  <t>Change the status of <xref target="RFC2109"/> to Historic (it has already been obsoleted
 by <xref target="RFC2965"/>).</t>
  <t>Change the status of <xref target="RFC2965"/> to Historic.</t>
  <t>Indicate that <xref target="RFC2965"/> has been obsoleted by this document.</t>
</list></t>

<t>In particular, in moving RFC 2965 to Historic and obsoleting it, this document
deprecates the use of the Cookie2 and Set-Cookie2 header fields.</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="RFC2616"/>, Section 1.3).</t>

<t>The request-host is the name of the host, as known by the user agent, to which
the user agent is sending an HTTP request or from which it is receiving an HTTP
response (i.e., the name of the host to which it sent the corresponding HTTP
request).</t>

<t>The term request-uri is defined in Section 5.1.2 of <xref target="RFC2616"/>.</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>

</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 <xref target="RFC2616"/>) 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 example.com.</t>

<figure><artwork><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42; Path=/; Domain=example.com

== 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
Section 4.1.2).</t>

<figure><artwork><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42; Path=/; Secure; HttpOnly
Set-Cookie: lang=en-US; Path=/; Domain=example.com

== 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="server-requirements" 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="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 [RFC2616], Section 2.2>

cookie-av         = expires-av / max-age-av / domain-av /
                    path-av / secure-av / httponly-av /
                    extension-av
expires-av        = "Expires=" sane-cookie-date
sane-cookie-date  =
    <rfc1123-date, defined in [RFC2616], Section 3.3.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"
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>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 Section 5.3 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 Section 5.2 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="semantics-non-normative" 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 Section 5.</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 “example.com”, the user
agent will include the cookie in the Cookie header when making HTTP requests to
example.com, www.example.com, and www.corp.example.com. (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 example.com returns a Set-Cookie header without a Domain
attribute, these user agents will erroneously send the cookie to
www.example.com 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 “example.com” or
of “foo.example.com” from foo.example.com, but the user agent will not accept
a cookie with a Domain attribute of “bar.example.com” or of
“baz.foo.example.com”.</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 Section 5.3 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 Section 5.1.4 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
Section 8).</t>

</section>
<section anchor="the-secure-attribute" 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 Section 8.6 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>
<section anchor="cookie-name-prefixes" title="Cookie Name Prefixes">

<t>Section 8.5 and 8.6 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 Section 5.3.</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=example.com
]]></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=example.com; 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=example.com
Set-Cookie: __Host-SID=12345; Domain=example.com; Path=/
Set-Cookie: __Host-SID=12345; Secure; Domain=example.com; Path=/
]]></artwork></figure>

<t>While the would be accepted if set from a secure origin (e.g.
“https://example.com/”), and rejected otherwise:</t>

<figure><artwork><![CDATA[
Set-Cookie: __Host-SID=12345; Secure; Path=/
]]></artwork></figure>

</section>
</section>
</section>
<section anchor="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 Section 4.1 (and the user agent
conforms to the requirements in Section 5), 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="user-agent-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 Section 4).</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="dates" 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 Section 6.3 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="paths-and-path-match" 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="the-set-cookie-header" 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 Section 7.1).</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 Section 4.1.
For example, the algorithm strips leading and trailing whitespace from the
cookie name and value (but maintains internal whitespace), whereas the grammar
in Section 4.1 forbids whitespace in these positions. User agents use this
algorithm so as to interoperate with servers that do not follow the
recommendations in Section 4.</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, ignore the
set-cookie-string entirely.</t>
  <t>The (possibly empty) 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 the name string is 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 Section 5.3
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 Section 5.1.1).</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-1" 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>
<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, and http-only-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 iof “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: A “public suffix” is a domain that is controlled by a public registry,
such as “com”, “co.uk”, and “pvt.k12.wy.us”. This step is essential for
preventing attacker.com from disrupting the integrity of example.com by
setting a cookie with a Domain attribute of “com”. Unfortunately, the set
of public suffixes (also known as “registry controlled domains”) changes
over time. If feasible, user agents SHOULD use an up-to-date public suffix
list, such as the one maintained by the Mozilla project at
<eref target="http://publicsuffix.org/">http://publicsuffix.org/</eref>.</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-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’s path is <spanx style="verb">/</spanx>.</t>
    </list></t>
  <t>If the cookie store contains a cookie with the same name, domain, and
path as the newly-created cookie:  <list style="numbers">
      <t>Let old-cookie be the existing cookie with the same name, domain,
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 date 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="the-cookie-header" 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 Section 7.1).</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>
    </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-dependency-and-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>Some user agents restrict how third-party cookies behave. For example, some of
these user agents refuse to send the Cookie header in third-party requests.
Others refuse to process the Set-Cookie header in responses to third-party
requests. User agents vary widely in their third-party cookie policies. 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 Section 4.1.2.5) 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.example.com and bar.example.com. The
foo.example.com server can set a cookie with a Domain attribute of
“example.com” (possibly overwriting an existing “example.com” cookie set by
bar.example.com), and the user agent will include that cookie in HTTP requests
to bar.example.com. In the worst case, bar.example.com will be unable to
distinguish this cookie from a cookie it set itself. The foo.example.com
server might be able to leverage this ability to mount an attack against
bar.example.com.</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://example.com/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://example.com/ by impersonating a response from
http://example.com/ and injecting a Set-Cookie header. The HTTPS server
at example.com 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 example.com even if
example.com 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 example.com 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>
<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="cookie-1" 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 (Section 5.4)</t>
</list></t>

</section>
<section anchor="set-cookie-1" 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 (Section 5.2)</t>
</list></t>

</section>
</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC1034" target='http://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='http://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='http://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="RFC2616" target='http://www.rfc-editor.org/info/rfc2616'>
<front>
<title>Hypertext Transfer Protocol -- HTTP/1.1</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding'><organization /></author>
<author initials='J.' surname='Gettys' fullname='J. Gettys'><organization /></author>
<author initials='J.' surname='Mogul' fullname='J. Mogul'><organization /></author>
<author initials='H.' surname='Frystyk' fullname='H. Frystyk'><organization /></author>
<author initials='L.' surname='Masinter' fullname='L. Masinter'><organization /></author>
<author initials='P.' surname='Leach' fullname='P. Leach'><organization /></author>
<author initials='T.' surname='Berners-Lee' fullname='T. Berners-Lee'><organization /></author>
<date year='1999' month='June' />
<abstract><t>HTTP has been in use by the World-Wide Web global information initiative since 1990. This specification defines the protocol referred to as &quot;HTTP/1.1&quot;, and is an update to RFC 2068.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2616'/>
<seriesInfo name='DOI' value='10.17487/RFC2616'/>
</reference>



<reference  anchor="RFC3490" target='http://www.rfc-editor.org/info/rfc3490'>
<front>
<title>Internationalizing Domain Names in Applications (IDNA)</title>
<author initials='P.' surname='Faltstrom' fullname='P. Faltstrom'><organization /></author>
<author initials='P.' surname='Hoffman' fullname='P. Hoffman'><organization /></author>
<author initials='A.' surname='Costello' fullname='A. Costello'><organization /></author>
<date year='2003' month='March' />
<abstract><t>Until now, there has been no standard method for domain names to use characters outside the ASCII repertoire.  This document defines internationalized domain names (IDNs) and a mechanism called Internationalizing Domain Names in Applications (IDNA) for handling them in a standard fashion.  IDNs use characters drawn from a large repertoire (Unicode), but IDNA allows the non-ASCII characters to be represented using only the ASCII characters already allowed in so-called host names today.  This backward-compatible representation is required in existing protocols like DNS, so that IDNs can be introduced with no changes to the existing infrastructure.  IDNA is only meant for processing domain names, not free text.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='3490'/>
<seriesInfo name='DOI' value='10.17487/RFC3490'/>
</reference>



<reference  anchor="RFC4790" target='http://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='http://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='http://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="USASCII" target="ANSI X3.4">
  <front>
    <title>Coded Character Set -- 7-bit American Standard Code for Information Interchange</title>
    <author initials="A.N.S." surname="Institute" fullname="American National Standards Institute">
      <organization></organization>
    </author>
    <date year="1986"/>
  </front>
</reference>


    </references>

    <references title='Informative References'>





<reference  anchor="RFC2109" target='http://www.rfc-editor.org/info/rfc2109'>
<front>
<title>HTTP State Management Mechanism</title>
<author initials='D.' surname='Kristol' fullname='D. Kristol'><organization /></author>
<author initials='L.' surname='Montulli' fullname='L. Montulli'><organization /></author>
<date year='1997' month='February' />
<abstract><t>This document specifies a way to create a stateful session with HTTP requests and responses.  It describes two new headers, Cookie and Set- Cookie, which carry state information between participating origin servers and user agents.  The method described here differs from Netscape's Cookie proposal, but it can interoperate with HTTP/1.0 user agents that use Netscape's method.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2109'/>
<seriesInfo name='DOI' value='10.17487/RFC2109'/>
</reference>



<reference  anchor="RFC2965" target='http://www.rfc-editor.org/info/rfc2965'>
<front>
<title>HTTP State Management Mechanism</title>
<author initials='D.' surname='Kristol' fullname='D. Kristol'><organization /></author>
<author initials='L.' surname='Montulli' fullname='L. Montulli'><organization /></author>
<date year='2000' month='October' />
<abstract><t>This document specifies a way to create a stateful session with Hypertext Transfer Protocol (HTTP) requests and responses.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2965'/>
<seriesInfo name='DOI' value='10.17487/RFC2965'/>
</reference>



<reference  anchor="RFC2818" target='http://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='http://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='http://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="Netscape" target="http://web.archive.org/web/20020803110822/http://wp.netscape.com/newsref/std/cookie_spec.html">
  <front>
    <title>Persistent Client State -- HTTP Cookies</title>
    <author initials="N.C." surname="Corp." fullname="Netscape Communications Corp.">
      <organization></organization>
    </author>
    <date year="1999"/>
  </front>
</reference>
<reference anchor="Kri2001" target="http://arxiv.org/abs/cs.SE/0105018">
  <front>
    <title>HTTP Cookies: Standards, Privacy, and Politics</title>
    <author initials="D." surname="Kristol" fullname="David M. Kristol">
      <organization></organization>
    </author>
    <date year="2001" month="November"/>
  </front>
  <seriesInfo name="ACM" value="ACM Transactions on Internet Technology Vol. 1, #2"/>
</reference>




<reference  anchor="RFC3629" target='http://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='http://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='http://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='http://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="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="2010"/>
  </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"/>
  </front>
</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="draft-ietf-httpbis-cookie-alone" target="https://tools.ietf.org/html/draft-ietf-httpbis-cookie-alone-01">
  <front>
    <title>Deprecate modification of 'secure' cookies from non-secure origins</title>
    <author initials="M." surname="West" fullname="Mike West">
      <organization></organization>
    </author>
    <date year="2016" month="September"/>
  </front>
</reference>
<reference anchor="draft-ietf-httpbis-cookie-prefixes" target="https://tools.ietf.org/html/draft-ietf-httpbis-cookie-prefixes-00">
  <front>
    <title>Cookie Prefixes</title>
    <author initials="M." surname="West" fullname="Mike West">
      <organization></organization>
    </author>
    <date year="2016" month="February"/>
  </front>
</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="draft-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="draft-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>
<section anchor="acknowledgements" title="Acknowledgements">

<t>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 giants.</t>

</section>


  </back>

<!-- ##markdown-source:
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
Vd6uo3qRh7CO83YHX27TJxXqrGx2FLOFSIS/RL4Vue/6/VmdUVEXeQ5k21v8
v1L0PHTz7eBNmM/jsDtB/AZ7cTwJRwi3Tb15eth60guezgYfHYePannUefjh
Y1qqfj6QVt3nZb9V6iYgeu2ys3XKiU/mdu2EyYGJiT+nsMkv5OTSds6DOutp
4s4oWOloJob7Jlq+ZRZDQshQ1qqlLhgPefTu+mLfOt47uqSV1C1+OmztyLBX
4LcR7C9p0WhsS+1L7HbJAWEqI8OR6MhgAOHLKR+25HtA51ufTtqDUQn5SVNo
G3n3baoldh+DyogxdXIVoYua4vgVmvez4DeXCGqbtYrnVC5r8Hy2x2Dk3vPc
Er20mpQdThLffGNQ5WyTrl70HN8ExR3m3VCkatIvTJtyVuMIq87eJmSmz6MX
T38GAn47gn/3+WmpbqGdOB/xAEFmytH4eHw0nrgWrHgbrfT250WWK+R0yE7j
mpsdCwuh9QzWTb6lAl4aGxPLBUzeEESPc5cOrgvq/0A34qBbgVLSGTh/6YWF
BC/O/fRpnwLIoCuXxRqvlEhC8E/Hx3bP+UJO3Zx3X8QWIBFrNfJYGh550BjX
KIcpmc1Gsn0udav38HfWMfcSpTsGZYF+hECklMvKfZtmIVsrD2FD2l4WbnuR
uCLSCkgnwzgWsC8K6IUDueMof6IrgHKdgI6DBHSX5sLvM5Z6x2gFkcNjUWMf
9g1lSlUJd2MTlK8LEIDI+hDQc38ziA7WtdckbLlnXZLGiFmurqZbKqGDtzLE
oM9VDB4Njohrgm5tDo8GhQqadse262n14/5oiyOHTmQeXb6J4vkci2UkxYtC
X8zv8NOIiOdbO6rQZ9YIgUvO6ogyWgufeyD8CeVTU6b8s0gk+nxHqinGDimR
yz6kmDuHy5LVut762OB+K0M57Y5pHec01D/wwtiY4aDxXCN0eAF7HxLm91Xu
g1tCKiFtSpclIW5T8fGxf/l4jLmt/xrktgJkrWGp4q8Do3i93HUyVBsb450a
gOt3by+HPZAk7UziYiEyFWCEd4S12+pR9a6g0LVO45SnDpWrV8TVVDP1dnJ4
h5hzBmShfyQdoscuQJkc6vluHocAkO5h74C7JiXY7jexaPmvGVhSAzo5Xg6a
VkaYR08DQxdUDeDQ4poK80aVWAI+omJoDxj5+O2e8znAU9pm5C56iYjvZeNm
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

-->

</rfc>

