<?xml version='1.0' encoding='utf-8'?>
<!DOCTYPE rfc [
  <!ENTITY nbsp    "&#160;">
  <!ENTITY zwsp   "&#8203;">
  <!ENTITY nbhy   "&#8209;">
  <!ENTITY wj     "&#8288;">
]>
<?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
<!-- generated by https://github.com/cabo/kramdown-rfc version 1.7.29 (Ruby 3.3.8) -->
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="pre5378Trust200902" docName="draft-ietf-httpbis-layered-cookies-00" category="std" consensus="true" submissionType="IETF" obsoletes="[6265]" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.28.1 -->
  <front>
    <title abbrev="Cookies">Cookies: HTTP State Management Mechanism</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-layered-cookies-00"/>
    <author initials="A." surname="van Kesteren" fullname="Anne van Kesteren" role="editor">
      <organization>Apple</organization>
      <address>
        <email>annevk@annevk.nl</email>
      </address>
    </author>
    <author initials="J." surname="Hofmann" fullname="Johann Hofmann" role="editor">
      <organization>Google</organization>
      <address>
        <email>johannhof@google.com</email>
      </address>
    </author>
    <date/>
    <area>Web and Internet Transport</area>
    <workgroup>HTTP</workgroup>
    <abstract>
      <?line 124?>

<t>This document defines the HTTP <tt>Cookie</tt> and <tt>Set-Cookie</tt> 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 <tt>Cookie</tt> and <tt>Set-Cookie</tt>
header fields are widely used on the Internet. This document obsoletes RFC
6265 and 6265bis.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-layered-cookies/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        HTTP Working Group mailing list (<eref target="mailto:ietf-http-wg@w3.org"/>),
        which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/"/>.
        Working Group information can be found at <eref target="https://httpwg.org/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/httpwg/http-extensions/labels/cookies"/>.</t>
    </note>
  </front>
  <middle>
    <?line 134?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document defines the HTTP <tt>Cookie</tt> and <tt>Set-Cookie</tt> header fields. Using
the <tt>Set-Cookie</tt> 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 <tt>Cookie</tt>
header field.</t>
      <t>Although simple on their surface, cookies have a number of complexities. For
example, the server can scope the maximum amount of time during which the user
agent should return the cookie, the servers to which the user agent should
return the cookie, and whether the cookie can be accessed through a non-HTTP
API, such as JavaScript in a web browser.</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 cookie's 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>This document specifies the syntax and semantics of these header fields. Where some
existing software differs from the requirements in significant ways, the document
contains a note explaining the difference.</t>
      <t>This document obsoletes <xref target="RFC6265"/> and 6265bis.</t>
      <section anchor="examples">
        <name>Examples</name>
        <t>Using the <tt>Set-Cookie</tt> header field, a server can send the user agent a short string
in an HTTP response that the user agent will return in future HTTP requests that
are within the scope of the cookie. For example, the server can send the user
agent a "session identifier" named SID with the value 31d4d96e407aad42. The
user agent then returns the session identifier in subsequent requests.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42

== User Agent -> Server ==

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

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

== User Agent -> Server ==

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

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

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42; lang=en-US
]]></sourcecode>
        <t>Notice that the <tt>Cookie</tt> header field above contains two cookies, one named SID and
one named lang.</t>
        <t>Cookie names are case-sensitive, meaning that if a server sends the user agent
two Set-Cookie header fields that differ only in their name's case the user
agent will store and return both of those cookies in subsequent requests.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42
Set-Cookie: sid=31d4d96e407aad42

== User Agent -> Server ==

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

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

== User Agent -> Server ==

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

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

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></sourcecode>
      </section>
    </section>
    <section anchor="conventions">
      <name>Conventions</name>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>This specification depends on Infra. <xref target="INFRA"/></t>
        <t>Some terms used in this specification are defined in the following standards and specifications:</t>
        <ul spacing="normal">
          <li>
            <t>HTTP <xref target="RFC9110"/></t>
          </li>
          <li>
            <t>URL <xref target="URL"/></t>
          </li>
        </ul>
        <t>A <strong>non-HTTP API</strong> is a non-HTTP mechanisms used to set and retrieve
cookies, such as a web browser API that exposes cookies to JavaScript.</t>
      </section>
      <section anchor="abnf">
        <name>ABNF</name>
        <t>This specification uses the Augmented Backus-Naur Form (ABNF) notation of
<xref target="RFC5234"/>.</t>
        <t>The following core rules are included by reference, as defined in <xref target="RFC5234"/>,
Appendix B.1: ALPHA (letters), CR (carriage return), CRLF (CR LF), CTLs
(controls), DIGIT (decimal 0-9), DQUOTE (double quote), HEXDIG
(hexadecimal 0-9/A-F/a-f), LF (line feed), NUL (null octet), OCTET (any
8-bit sequence of data except NUL), SP (space), HTAB (horizontal tab),
CHAR (any ASCII byte), VCHAR (any visible ASCII byte),
and WSP (whitespace).</t>
        <t>The OWS (optional whitespace) and BWS (bad whitespace) rules are defined in
<xref section="5.6.3" sectionFormat="of" target="RFC9110"/>.</t>
      </section>
    </section>
    <section anchor="implementation-advisory">
      <name>Which Requirements to Implement</name>
      <t>The upcoming two sections, <xref target="server-requirements"/> and <xref target="ua-requirements"/>, discuss
the set of requirements for two distinct types of implementations. This section
is meant to help guide implementers in determining which set of requirements
best fits their goals. Choosing the wrong set of requirements could result in a
lack of compatibility with other cookie implementations.</t>
      <t>It's important to note that being compatible means different things
depending on the implementer's goals. These differences have built up over time
due to both intentional and unintentional specification changes, specification interpretations,
and historical implementation differences.</t>
      <t>This section roughly divides implementers of this specification into two types,
producers and consumers. These are not official terms and are only used here to
help readers develop an intuitive understanding of the use cases.</t>
      <section anchor="cookie-producing-implementations">
        <name>Cookie Producing Implementations</name>
        <t>An implementer should choose <xref target="server-requirements"/> whenever cookies are created and
will be sent to a user agent, such as a web browser. These implementations are
frequently referred to as servers by the specification but that term includes anything
which primarily produces cookies. Some potential examples:</t>
        <ul spacing="normal">
          <li>
            <t>Server applications hosting a website or API</t>
          </li>
          <li>
            <t>Programming languages or software frameworks that support cookies</t>
          </li>
          <li>
            <t>Integrated third-party web applications, such as a business management suite</t>
          </li>
        </ul>
        <t>All these benefit from not only supporting as many user agents as possible but
also supporting other servers. This is useful if a cookie is produced by a
software framework and is later sent back to a server application which needs
to read it. <xref target="server-requirements"/> advises best practices that help maximize this
sense of compatibility.</t>
      </section>
      <section anchor="cookie-consuming-implementations">
        <name>Cookie Consuming Implementations</name>
        <t>An implementer should choose <xref target="ua-requirements"/> whenever cookies are primarily
received from another source. These implementations are referred to as user
agents. Some examples:</t>
        <ul spacing="normal">
          <li>
            <t>Web browsers</t>
          </li>
          <li>
            <t>Tools that support stateful HTTP</t>
          </li>
          <li>
            <t>Programming languages or software frameworks that support cookies</t>
          </li>
        </ul>
        <t>Because user agents don't know which servers a user will access, and whether
or not that server is following best practices, users agents are advised to
implement a more lenient set of requirements and to accept some things that
servers are warned against producing. <xref target="ua-requirements"/> advises best
practices that help maximize this sense of compatibility.</t>
      </section>
      <section anchor="languages-frameworks">
        <name>Programming Languages &amp; Software Frameworks</name>
        <t>A programming language or software framework with support for cookies could
reasonably be used to create an application that acts as a cookie producer,
cookie consumer, or both. Because a developer may want to maximize their
compatibility as either a producer or consumer, these languages or frameworks
should strongly consider supporting both sets of requirements, <xref target="server-requirements"/>
and <xref target="ua-requirements"/>, behind a compatibility mode toggle. This toggle should
default to <xref target="server-requirements"/>'s requirements.</t>
        <t>Doing so will reduce the chances that a developer's application can
inadvertently create cookies that cannot be read by other servers.</t>
      </section>
    </section>
    <section anchor="server-requirements">
      <name>Server Requirements</name>
      <t>This section describes the conforming syntax and semantics of the
HTTP <tt>Cookie</tt> and <tt>Set-Cookie</tt> header fields.</t>
      <section anchor="sane-set-cookie">
        <name>Set-Cookie</name>
        <t>The <tt>Set-Cookie</tt> HTTP response header field is used to send cookies from the server to
the user agent.</t>
        <t>Origin servers MAY send a <tt>Set-Cookie</tt> response header field with any response. An
origin server can include multiple <tt>Set-Cookie</tt> header fields in a single response.
The presence of a <tt>Cookie</tt> or a <tt>Set-Cookie</tt> header field does not preclude HTTP
caches from storing and reusing a response.</t>
        <t>Origin servers and intermediaries MUST NOT combine multiple Set-Cookie header
fields into a single header field. The usual mechanism for combining HTTP
headers fields (i.e., as defined in <xref section="5.3" sectionFormat="of" target="RFC9110"/>) 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 combining.</t>
        <t>For example,</t>
        <artwork><![CDATA[
Set-Cookie: a=b;path=/c,d=e
]]></artwork>
        <t>is ambiguous. It could be intended as two cookies, a=b and d=e, or a single
cookie with a path of /c,d=e.</t>
        <section anchor="abnf-syntax">
          <name>Syntax</name>
          <t>Informally, the <tt>Set-Cookie</tt> response header field contains a cookie, which begins with a
name-value-pair, followed by zero or more attribute-value pairs. Servers
MUST send <tt>Set-Cookie</tt> header fields that conform to the following grammar:</t>
          <sourcecode type="abnf"><![CDATA[
set-cookie        = set-cookie-string
set-cookie-string = BWS cookie-pair *( BWS ";" OWS cookie-av )
cookie-pair       = cookie-name BWS "=" BWS cookie-value
cookie-name       = 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 [HTTP], Section 5.6.2>

cookie-av         = expires-av / max-age-av / domain-av /
                    path-av / secure-av / httponly-av /
                    samesite-av / extension-av
expires-av        = "Expires" BWS "=" BWS sane-cookie-date
sane-cookie-date  =
    <IMF-fixdate, defined in [HTTP], Section 5.6.7>
max-age-av        = "Max-Age" BWS "=" BWS non-zero-digit *DIGIT
non-zero-digit    = %x31-39
                      ; digits 1 through 9
domain-av         = "Domain" BWS "=" BWS domain-value
domain-value      = <subdomain>
                      ; see details below
path-av           = "Path" BWS "=" BWS path-value
path-value        = *av-octet
secure-av         = "Secure"
httponly-av       = "HttpOnly"
samesite-av       = "SameSite" BWS "=" BWS samesite-value
samesite-value    = "Strict" / "Lax" / "None"
extension-av      = *av-octet
av-octet          = %x20-3A / %x3C-7E
                      ; any CHAR except CTLs or ";"
]]></sourcecode>
          <t>Note that some of the grammatical terms above reference documents that use
different grammatical notations than this document (which uses ABNF from
<xref target="RFC5234"/>).</t>
          <t>Per the grammar above, servers MUST NOT produce nameless cookies (i.e., an
empty cookie-name) as such cookies may be unpredictably serialized by user agents when
sent back to the server.</t>
          <t>The semantics of the cookie-value are not defined by this document.</t>
          <t>To maximize compatibility with user agents, servers that wish to store arbitrary
data in a cookie-value SHOULD encode that data, for example, using Base64
<xref target="RFC4648"/>.</t>
          <t>Per the grammar above, the cookie-value MAY be wrapped in DQUOTE characters.
Note that in this case, the initial and trailing DQUOTE characters are not
stripped. They are part of the cookie-value, and will be included in <tt>Cookie</tt>
header fields sent to the server.</t>
          <t>The domain-value is a subdomain as defined by <xref target="RFC1034"/>, Section 3.5, and
as enhanced by <xref target="RFC1123"/>, Section 2.1. Thus, domain-value is a byte sequence of
ASCII bytes.</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.</t>
          <t>NOTE: The name of an attribute-value pair is not case-sensitive. So while they
are presented here in CamelCase, such as <tt>HttpOnly</tt> or <tt>SameSite</tt>, any case is
accepted. E.g., <tt>httponly</tt>, <tt>Httponly</tt>, <tt>hTTPoNLY</tt>, etc.</t>
          <t>Servers MUST NOT include more than one <tt>Set-Cookie</tt> header field in the same
response with the same cookie-name. (See <xref target="set-cookie"/> for how user agents
handle this case.)</t>
          <t>If a server sends multiple responses containing <tt>Set-Cookie</tt> header fields
concurrently to the user agent (e.g., when communicating with the user agent
over multiple sockets), these responses create a "race condition" that can lead
to unpredictable behavior.</t>
          <t>NOTE: Some existing user agents differ in their interpretation of two-digit
years. To avoid compatibility issues, servers SHOULD use the rfc1123-date
format, which requires a four-digit year.</t>
          <t>NOTE: Some user agents store and process dates in cookies as 32-bit UNIX time_t
values. Implementation bugs in the libraries supporting time_t processing on
some systems might cause such user agents to process dates after the year 2038
incorrectly.</t>
        </section>
        <section anchor="sane-set-cookie-semantics">
          <name>Semantics (Non-Normative)</name>
          <t>This section describes simplified semantics of the <tt>Set-Cookie</tt> header field. These
semantics are detailed enough to be useful for understanding the most common
uses of cookies by servers. The full semantics are described in <xref target="ua-requirements"/>.</t>
          <t>When the user agent receives a <tt>Set-Cookie</tt> header field, the user agent stores the
cookie together with its attributes. Subsequently, when the user agent makes
an HTTP request, the user agent includes the applicable, non-expired cookies
in the <tt>Cookie</tt> header field.</t>
          <t>If the user agent receives a new cookie with the same cookie-name,
domain-value, and path-value as a cookie that it has already stored, the
existing cookie is evicted and replaced with the new cookie. Notice that
servers can delete cookies by sending the user agent a new cookie with an
Expires attribute with a value in the past.</t>
          <t>Unless the cookie's attributes indicate otherwise, the cookie is returned only
to the origin server (and not, for example, to any subdomains), and it expires
at the end of the current session (as defined by the user agent). User agents
ignore unrecognized cookie attributes (but not the entire cookie).</t>
          <section anchor="attribute-expires">
            <name>The Expires Attribute</name>
            <t>The Expires attribute indicates the maximum lifetime of the cookie,
represented as the date and time at which the cookie expires. The user agent is
not required to retain the cookie until the specified date has passed. In fact,
user agents often evict cookies due to memory pressure or privacy concerns.</t>
          </section>
          <section anchor="attribute-max-age">
            <name>The Max-Age Attribute</name>
            <t>The Max-Age attribute indicates the maximum lifetime of the cookie,
represented as the number of seconds until the cookie expires. The user agent is
not required to retain the cookie for the specified duration. In fact, user
agents often evict cookies due to memory pressure or privacy concerns.</t>
            <t>NOTE: Some existing user agents do not support the Max-Age attribute. User
agents that do not support the Max-Age attribute ignore the attribute.</t>
            <t>If a cookie has both the Max-Age and the Expires attribute, the Max-Age
attribute has precedence and controls the expiration date of the cookie. If a
cookie has neither the Max-Age nor the Expires attribute, the user agent
will retain the cookie until "the current session is over" (as defined by the
user agent).</t>
          </section>
          <section anchor="attribute-domain">
            <name>The Domain Attribute</name>
            <t>The Domain attribute specifies those hosts to which the cookie will be sent.</t>
            <t>If the server includes the Domain attribute, the value applies to both the
specified domain and any subdomains. For example, if the value of the Domain
attribute is "site.example", the user agent will include the cookie in the
<tt>Cookie</tt> header field when making HTTP requests to site.example, www.site.example,
and www.corp.site.example. Note that a leading %x2E ("."), if present, is
ignored even though that character is not permitted.</t>
            <t>If the server omits the Domain attribute, the user agent will return the cookie
only to the origin server and not to any subdomains.</t>
            <t>WARNING: Some existing user agents treat an absent Domain attribute as if the
Domain attribute were present and contained the current host name. For
example, if site.example returns a <tt>Set-Cookie</tt> header field without a Domain
attribute, these user agents will erroneously send the cookie to
www.site.example and www.corp.site.example as well.</t>
            <t>The user agent will reject cookies unless the Domain attribute specifies a
scope for the cookie that would include the origin server. For example, the
user agent will accept a cookie with a Domain attribute of "site.example" or
of "foo.site.example" from foo.site.example, but the user agent will not accept
a cookie with a Domain attribute of "bar.site.example" or of
"baz.foo.site.example".</t>
          </section>
          <section anchor="attribute-path">
            <name>The Path Attribute</name>
            <t>The scope of each cookie is limited to a set of paths, controlled by the
Path attribute. If the server omits the Path attribute, the user agent will
use the "directory" of the request-uri's path component as the default value.
(See <xref target="cookie-path"/> for more details.)</t>
            <t>The user agent will include the cookie in an HTTP request only if the path
portion of the request-uri matches (or is a subdirectory of) the cookie's
Path attribute, where the %x2F ("/") character is interpreted as a directory
separator.</t>
            <t>Although seemingly useful for isolating cookies between different paths within
a given host, the Path attribute cannot be relied upon for security (see
<xref target="security-considerations"/>).</t>
          </section>
          <section anchor="attribute-secure">
            <name>The Secure Attribute</name>
            <t>The Secure attribute limits the scope of the cookie to "secure" channels
(where "secure" is outside the scope of this document). E.g., 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="RFC8446"/> <xref target="RFC9110"/>).</t>
          </section>
          <section anchor="attribute-httponly">
            <name>The HttpOnly Attribute</name>
            <t>The HttpOnly attribute limits the scope of the cookie to HTTP requests. In
particular, the attribute instructs the user agent to omit the cookie when
providing access to cookies via non-HTTP APIs.</t>
          </section>
          <section anchor="attribute-samesite">
            <name>The SameSite Attribute</name>
            <t>The SameSite attribute limits the scope of the cookie upon creation and delivery
with respect to whether the cookie is considered to be "same-site" within a larger context
(where "same-site" is outside the scope of this document). The SameSite attribute is particularly
relevant for web browsers and web applications accessible through them.</t>
            <t>The SameSite attribute supports Strict, Lax, and None as values.</t>
          </section>
        </section>
        <section anchor="server-name-prefixes">
          <name>Cookie Name Prefixes</name>
          <t><xref target="weak-confidentiality"/> and <xref target="weak-integrity"/> of this document spell out some of the drawbacks of cookies'
historical implementation. In particular, it is impossible for a server to have
confidence that a given cookie was set with a particular set of attributes. In
order to provide such confidence in a backwards-compatible way, two common sets
of requirements can be inferred from the first few characters of the cookie's
name.</t>
          <t>To maximize compatibility with user agents, servers SHOULD use prefixes as
described below.</t>
          <section anchor="the-secure-prefix">
            <name>The "__Secure-" Prefix</name>
            <t>If a cookie's name begins with a case-sensitive match for the string
<tt>__Secure-</tt>, then the cookie will have been set with a <tt>Secure</tt> attribute.</t>
            <t>For example, the following <tt>Set-Cookie</tt> header field would be rejected by a conformant
user agent, as it does not have a <tt>Secure</tt> attribute.</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example
]]></sourcecode>
            <t>Whereas the following <tt>Set-Cookie</tt> header field would be accepted if set from a secure origin
(e.g. <tt>https://site.example/</tt>), and rejected otherwise:</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example; Secure
]]></sourcecode>
          </section>
          <section anchor="the-host-prefix">
            <name>The "__Host-" Prefix</name>
            <t>If a cookie's name begins with a case-sensitive match for the string
<tt>__Host-</tt>, then the cookie will have been set with a <tt>Secure</tt> attribute, a
<tt>Path</tt> attribute with a value of <tt>/</tt>, and no <tt>Domain</tt> attribute.</t>
            <t>This combination yields a cookie that hews as closely as a cookie can to
treating the origin as a security boundary. The lack of a <tt>Domain</tt> attribute
ensures that cookie's host-only is true, locking the cookie to a
particular host, rather than allowing it to span subdomains. Setting the <tt>Path</tt>
to <tt>/</tt> means that the cookie is effective for the entire host, and won't be
overridden for specific paths. The <tt>Secure</tt> attribute ensures that the cookie
is unaltered by non-secure origins, and won't span protocols.</t>
            <t>Ports are the only piece of the same-origin policy that <tt>__Host-</tt> cookies continue
to ignore.</t>
            <t>For example, the following cookies would always be rejected:</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Host-SID=12345
Set-Cookie: __Host-SID=12345; Secure
Set-Cookie: __Host-SID=12345; Domain=site.example
Set-Cookie: __Host-SID=12345; Domain=site.example; Path=/
Set-Cookie: __Host-SID=12345; Secure; Domain=site.example; Path=/
]]></sourcecode>
            <t>While the following would be accepted if set from a secure origin (e.g.
<tt>https://site.example/</tt>), and rejected otherwise:</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Host-SID=12345; Secure; Path=/
]]></sourcecode>
          </section>
        </section>
      </section>
      <section anchor="sane-cookie">
        <name>Cookie</name>
        <section anchor="server-syntax">
          <name>Syntax</name>
          <t>The user agent sends stored cookies to the origin server in the <tt>Cookie</tt> header field.
If the server conforms to the requirements in <xref target="sane-set-cookie"/> (and the user agent
conforms to the requirements in <xref target="ua-requirements"/>), the user agent will send a <tt>Cookie</tt>
header field that conforms to the following grammar:</t>
          <sourcecode type="abnf"><![CDATA[
cookie        = cookie-string
cookie-string = cookie-pair *( ";" SP cookie-pair )
]]></sourcecode>
          <t>While <xref section="5.4" sectionFormat="of" target="RFC9110"/> does not define a length limit for header
fields it is likely that the web server's implementation does impose a limit;
many popular implementations have default limits of 8 kibibytes. Servers SHOULD avoid
setting a large number of large cookies such that the final cookie-string
would exceed their header field limit. Not doing so could result in requests
to the server failing.</t>
          <t>Servers MUST be tolerant of multiple <tt>Cookie</tt> headers. For example, an HTTP/2
<xref target="RFC9113"/> or HTTP/3 <xref target="RFC9114"/> client or intermediary might split a <tt>Cookie</tt>
header to improve compression. Servers are free to determine what form this
tolerance takes. For example, the server could process each <tt>Cookie</tt> header
individually or the server could concatenate all the <tt>Cookie</tt> headers into one
and then process that final, single, header. The server should be mindful of
any header field limits when deciding which approach to take.</t>
          <t>Note: Since intermediaries can modify <tt>Cookie</tt> headers they should also be
mindful of common server header field limits in order to avoid sending servers
headers that they cannot process. For example, concatenating multiple cookie
 headers into a single header might exceed a server's size limit.</t>
        </section>
        <section anchor="semantics">
          <name>Semantics</name>
          <t>Each cookie-pair represents a cookie stored by the user agent. The
cookie-pair contains the cookie-name and cookie-value the user agent
received in the <tt>Set-Cookie</tt> header field.</t>
          <t>Notice that the cookie attributes are not returned. In particular, the server
cannot determine from the <tt>Cookie</tt>  field alone when a cookie will expire, for
which hosts the cookie is valid, for which paths the cookie is valid, or
whether the cookie was set with the Secure or HttpOnly attributes.</t>
          <t>The semantics of individual cookies in the <tt>Cookie</tt> header field are not defined by
this document. Servers are expected to imbue these cookies with
application-specific semantics.</t>
          <t>Although cookies are serialized linearly in the <tt>Cookie</tt> header field, servers SHOULD
NOT rely upon the serialization order. In particular, if the <tt>Cookie</tt> header field
contains two cookies with the same name (e.g., that were set with different
Path or Domain attributes), servers SHOULD NOT rely upon the order in which
these cookies appear in the header field.</t>
        </section>
      </section>
    </section>
    <section anchor="ua-requirements">
      <name>User Agent Requirements</name>
      <t>This section specifies the processing models associated with the <tt>Cookie</tt> and <tt>Set-Cookie</tt> header fields
in sufficient detail that a user agent can interoperate with existing servers (even those
that do not conform to the well-behaved profile described in <xref target="server-requirements"/>).</t>
      <t>A user agent could enforce more restrictions than those specified herein (e.g.,
restrictions specified by its cookie policy, described in <xref target="cookie-policy"/>).
However, such additional restrictions may reduce the likelihood that a user
agent will be able to interoperate with existing servers.</t>
      <section anchor="cookie-concepts">
        <name>Cookie Concepts</name>
        <t>To facilitate the algorithms that follow, a number of pre-requisite concepts need to be introduced.</t>
        <section anchor="cookie-store-and-limits">
          <name>Cookie Store And Limits</name>
          <t>A user agent has an associated <strong>cookie store</strong>, which is a list of cookies. It is initially « ».</t>
          <t>A user agent has an associated <strong>total cookies-per-host limit</strong>, which is an integer. It SHOULD be 50 or more.</t>
          <t>A user agent has an associated <strong>total cookies limit</strong>, which is an integer. It SHOULD be 3000 or more.</t>
          <t>A user agent has an associated <strong>cookie age limit</strong>, which is a number of days. It SHOULD be 400 days or less (see <xref target="cookie-policy"/>).</t>
        </section>
        <section anchor="cookie-struct">
          <name>Cookie Struct</name>
          <t>A <strong>cookie</strong> is a struct that represents a piece of state to be transmitted between a client and a
server.</t>
          <t>A cookie's <strong>name</strong> is a byte sequence. It always needs to be set.</t>
          <t>A cookie's <strong>value</strong> is a byte sequence. It always needs to be set.</t>
          <t>A cookie's <strong>secure</strong> is a boolean. It is initially false.</t>
          <t>A cookie's <strong>host</strong> is a domain, IP address, null, or failure. It is initially null. Note: Once a
cookie is in the user agent's cookie store its host is a domain or IP address.</t>
          <t>A cookie's <strong>host-only</strong> is a boolean. It is initially false.</t>
          <t>A cookie's <strong>path</strong> is a URL path.</t>
          <t>A cookie's <strong>same-site</strong> is "<tt>strict</tt>", "<tt>lax</tt>", "<tt>unset</tt>", or "<tt>none</tt>". It is initially "<tt>unset</tt>".</t>
          <t>A cookie's <strong>http-only</strong> is a boolean. It is initially false.</t>
          <!--
A cookie's **partition** is null or a partition-key. It is initially null.
-->

<t>A cookie's <strong>creation-time</strong> is a time. It is initially the current time.</t>
          <t>A cookie's <strong>expiry-time</strong> is null or a time. It is initially null. Note: A prior version of this
specification referred to null with a distinct "persistent-flag" field being false.</t>
          <t>A cookie's <strong>last-access-time</strong> is a time. It is initially the current time.</t>
          <section anchor="cookie-struct-miscellaneous">
            <name>Cookie Struct Miscellaneous</name>
            <t>A cookie is <strong>expired</strong> if its expiry-time is non-null and its expiry-time is in the past.</t>
          </section>
        </section>
      </section>
      <section anchor="cookie-store-eviction">
        <name>Cookie Store Eviction</name>
        <t>The user agent SHOULD evict all expired cookies from its cookie store if, at any
time, an expired cookie exists in the cookie store.</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 whose expiry-time is null.</t>
        <section anchor="remove-excess-cookies-for-a-host">
          <name>Remove Excess Cookies for a Host</name>
          <t>To <strong>Remove Excess Cookies for a Host</strong> given a host <em>host</em>:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let <em>insecureCookies</em> be all cookies in the user agent's cookie store whose host is host-equal to <em>host</em> and whose secure is false.</t>
            </li>
            <li>
              <t>Sort <em>insecureCookies</em> by earliest last-access-time first.</t>
            </li>
            <li>
              <t>Let <em>secureCookies</em> be all cookies in the user agent's cookie store whose host is host-equal to <em>host</em> and whose secure is true.</t>
            </li>
            <li>
              <t>Sort <em>secureCookies</em> by earliest last-access-time first.</t>
            </li>
            <li>
              <t>While <em>insecureCookies</em>'s size + <em>secureCookies</em>'s size is greater than the user agent's total cookies-per-host limit:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>If <em>insecureCookies</em> is not empty, remove the first item of <em>insecureCookies</em> and
 delete the corresponding cookie from the user agent's cookie store.</t>
                </li>
                <li>
                  <t>Otherwise, remove the first item of <em>secureCookies</em> and delete the corresponding cookie from the user agent's cookie store.</t>
                </li>
              </ol>
            </li>
          </ol>
        </section>
        <section anchor="remove-global-excess-cookies">
          <name>Remove Global Excess Cookies</name>
          <t>To <strong>Remove Global Excess Cookies</strong>:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let <em>allCookies</em> be the result of sorting the user agent's cookie store by earliest last-access-time first.</t>
            </li>
            <li>
              <t>While <em>allCookies</em>'s size is greater than the user agent's total cookies limit:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>Remove the first item of <em>allCookies</em> and delete the corresponding cookie from the user agent's cookie store.</t>
                </li>
              </ol>
            </li>
          </ol>
        </section>
      </section>
      <section anchor="subcomponent-algorithms">
        <name>Subcomponent Algorithms</name>
        <t>This section defines some algorithms used by user agents to process specific
subcomponents of the <tt>Cookie</tt> and <tt>Set-Cookie</tt> header fields.</t>
        <section anchor="cookie-date">
          <name>Parse a Date</name>
          <t>To <strong>Parse a Date</strong> given a byte sequence <em>input</em>, run these steps. They return a date and time or failure.</t>
          <t>Note that the various boolean flags defined as a part
of the algorithm (i.e., found-time, found-day-of-month, found-month,
found-year) are initially "not set".</t>
          <ol spacing="normal" type="1"><li>
              <t>Using the grammar below, divide the cookie-date into date-tokens.  </t>
              <sourcecode type="abnf"><![CDATA[
cookie-date     = *delimiter date-token-list *delimiter
date-token-list = date-token *( 1*delimiter date-token )
date-token      = 1*non-delimiter

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

day-of-month    = 1*2DIGIT [ non-digit *OCTET ]
month           = ( "jan" / "feb" / "mar" / "apr" /
                    "may" / "jun" / "jul" / "aug" /
                    "sep" / "oct" / "nov" / "dec" ) *OCTET
year            = 2*4DIGIT [ non-digit *OCTET ]
time            = hms-time [ non-digit *OCTET ]
hms-time        = time-field ":" time-field ":" time-field
time-field      = 1*2DIGIT
]]></sourcecode>
            </li>
            <li>
              <t>Process each date-token sequentially in the order the date-tokens
appear in the cookie-date:  </t>
              <ol spacing="normal" type="1"><li>
                  <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>
                </li>
                <li>
                  <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>
                </li>
                <li>
                  <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>
                </li>
                <li>
                  <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>
                </li>
              </ol>
            </li>
            <li>
              <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>
            </li>
            <li>
              <t>If the year-value is greater than or equal to 0 and less than or equal to
69, increment the year-value by 2000.  </t>
              <ol spacing="normal" type="1"><li>
                  <t>NOTE: Some existing user agents interpret two-digit years differently.</t>
                </li>
              </ol>
            </li>
            <li>
              <t>If one of the following is true:  </t>
              <ul spacing="normal">
                <li>
                  <t>at least one of the found-day-of-month, found-month, found-year, or
found-time flags is not set,</t>
                </li>
                <li>
                  <t>the day-of-month-value is less than 1 or greater than 31,</t>
                </li>
                <li>
                  <t>the year-value is less than 1601,</t>
                </li>
                <li>
                  <t>the hour-value is greater than 23,</t>
                </li>
                <li>
                  <t>the minute-value is greater than 59, or</t>
                </li>
                <li>
                  <t>the second-value is greater than 59,</t>
                </li>
              </ul>
              <t>
then return failure.  </t>
              <t>
(Note that leap seconds cannot be represented in this syntax.)</t>
            </li>
            <li>
              <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>
            </li>
            <li>
              <t>Return the parsed-cookie-date as the result of this algorithm.</t>
            </li>
          </ol>
        </section>
        <section anchor="domain-matching">
          <name>Domain Matching</name>
          <t>A host <em>host</em> <strong>Domain-Matches</strong> a string <em>domainAttributeValue</em> if at least one of the following is true:</t>
          <ul spacing="normal">
            <li>
              <t><em>host</em> equals <em>domainAttributeValue</em>, or</t>
            </li>
            <li>
              <t>if all of the following are true:  </t>
              <ul spacing="normal">
                <li>
                  <t><em>host</em> is a domain, and</t>
                </li>
                <li>
                  <t><em>host</em> ends with the concatenation of U+002E (.) and <em>domainAttributeValue</em>.</t>
                </li>
              </ul>
            </li>
          </ul>
        </section>
        <section anchor="cookie-path">
          <name>Cookie Default Path</name>
          <t>To determine the <strong>Cookie Default Path</strong>, given a URL path <em>path</em>, run these steps.
They return a URL path.</t>
          <ol spacing="normal" type="1"><li>
              <t>Assert: <em>path</em> is a non-empty list.</t>
            </li>
            <li>
              <t>If <em>path</em>'s size is greater than 1, then remove <em>path</em>'s last item.</t>
            </li>
            <li>
              <t>Otherwise, set <em>path</em>[0] to the empty string.</t>
            </li>
            <li>
              <t>Return <em>path</em>.</t>
            </li>
          </ol>
        </section>
        <section anchor="path-matching">
          <name>Path Matching</name>
          <t>To determine if a URL path <em>requestPath</em> <strong>Path-Matches</strong> a URL path <em>cookiePath</em>, run these steps.
They return a boolean.</t>
          <ol spacing="normal" type="1"><li>
              <t>Let <em>serializedRequestPath</em> be the result of URL path serializing <em>requestPath</em>.</t>
            </li>
            <li>
              <t>Let <em>serializedCookiePath</em> be the result of URL path serializing <em>cookiePath</em>.</t>
            </li>
            <li>
              <t>If <em>serializedCookiePath</em> is <em>serializedRequestPath</em>, then return true.</t>
            </li>
            <li>
              <t>If <em>serializedRequestPath</em> starts with <em>serializedCookiePath</em> and <em>serializedCookiePath</em> ends
with a U+002F (/), then return true.</t>
            </li>
            <li>
              <t>Return whether the concatenation of <em>serializedRequestPath</em> followed by U+002F (/) starts with <em>serializedCookiePath</em>.</t>
            </li>
          </ol>
        </section>
      </section>
      <section anchor="main-algorithms">
        <name>Main Algorithms</name>
        <section anchor="parse-and-store-a-cookie">
          <name>Parse and Store a Cookie</name>
          <t>To <strong>Parse and Store a Cookie</strong> given a byte sequence <em>input</em>, boolean <em>isSecure</em>, domain or IP address <em>host</em>,
URL path <em>path</em>, boolean <em>httpOnlyAllowed</em>, boolean <em>allowNonHostOnlyCookieForPublicSuffix</em>, and boolean <em>sameSiteStrictOrLaxAllowed</em>:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let <em>cookie</em> be the result of running Parse a Cookie with <em>input</em>, <em>isSecure</em>, <em>host</em>, and <em>path</em>.</t>
            </li>
            <li>
              <t>If <em>cookie</em> is failure, then return.</t>
            </li>
            <li>
              <t>Run Store a Cookie given <em>cookie</em>, <em>isSecure</em>, <em>host</em>, <em>path</em>, <em>httpOnlyAllowed</em>,
<em>allowNonHostOnlyCookieForPublicSuffix</em>, and <em>sameSiteStrictOrLaxAllowed</em>.</t>
            </li>
          </ol>
        </section>
        <section anchor="parse-a-cookie">
          <name>Parse a Cookie</name>
          <t>To <strong>Parse a Cookie</strong> given a byte sequence <em>input</em>, boolean <em>isSecure</em>, host <em>host</em>,
URL path <em>path</em>, run these steps. They return a new cookie or failure:</t>
          <ol spacing="normal" type="1"><li>
              <t>If <em>input</em> contains a byte in the range 0x00 to 0x08, inclusive,
the range 0x0A to 0x1F inclusive, or 0x7F (CTL bytes excluding HTAB),
then return failure.</t>
            </li>
            <li>
              <t>Let <em>nameValueInput</em> be null.</t>
            </li>
            <li>
              <t>Let <em>attributesInput</em> be the empty byte sequence.</t>
            </li>
            <li>
              <t>If <em>input</em> contains 0x3B (;), then set <em>nameValueInput</em> to the bytes up to, but not including,
the first 0x3B (;), and <em>attributesInput</em> to the remainder of <em>input</em> (including the 0x3B (;) in question).</t>
            </li>
            <li>
              <t>Otherwise, set <em>nameValueInput</em> to <em>input</em>.</t>
            </li>
            <li>
              <t>Assert: <em>nameValueInput</em> is a byte sequence.</t>
            </li>
            <li>
              <t>Let <em>name</em> be null.</t>
            </li>
            <li>
              <t>Let <em>value</em> be null.</t>
            </li>
            <li>
              <t>If <em>nameValueInput</em> does not contain a 0x3D (=) character, then set <em>name</em>
to the empty byte sequence, and <em>value</em> to <em>nameValueInput</em>.</t>
            </li>
            <li>
              <t>Otherwise, set <em>name</em> to the bytes up to, but not
including, the first 0x3D (=), and set <em>value</em>
to the bytes after the first 0x3D (=) (possibly being the
empty byte sequence).</t>
            </li>
            <li>
              <t>Remove any leading or trailing WSP bytes from <em>name</em> and <em>value</em>.</t>
            </li>
            <li>
              <t>If <em>name</em>'s length + <em>value</em>'s length is 0 or is greater than 4096, then return failure.</t>
            </li>
            <li>
              <t>Let <em>cookie</em> be a new cookie whose name is <em>name</em> and value is <em>value</em>.</t>
            </li>
            <li>
              <t>Set <em>cookie</em>'s path to the result of running Cookie Default Path with <em>path</em>.  </t>
              <t>
Note: A <tt>Path</tt> attribute can override this.</t>
            </li>
            <li>
              <t>While <em>attributesInput</em> is not an empty byte sequence:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>Let <em>maxAgeSeen</em> be false.</t>
                </li>
                <li>
                  <t>Let <em>char</em> be the result of consuming the first byte of <em>attributesInput</em>.</t>
                </li>
                <li>
                  <t>Assert: <em>char</em> is 0x3B (;).</t>
                </li>
                <li>
                  <t>Let <em>attributeNameValueInput</em> be null.</t>
                </li>
                <li>
                  <t>If <em>attributesInput</em> contains 0x3B (;), then
set <em>attributeNameValueInput</em> to the result of consuming the bytes of
<em>attributesInput</em> up to, but not including, the first 0x3B (;).</t>
                </li>
                <li>
                  <t>Otherwise, set <em>attributeNameValueInput</em> to the result of consuming the remainder of <em>attributesInput</em>.</t>
                </li>
                <li>
                  <t>Let <em>attributeName</em> be null.</t>
                </li>
                <li>
                  <t>Let <em>attributeValue</em> be the empty string.</t>
                </li>
                <li>
                  <t>If <em>attributeNameValueInput</em> contains a 0x3D (=), then set <em>attributeName</em> to the bytes
up to, but not including, the first 0x3D (=) of <em>attributeNameValueInput</em>, and <em>attributeValue</em> to the bytes
after the first 0x3D (=) of <em>attributeNameValueInput</em>.</t>
                </li>
                <li>
                  <t>Otherwise, set <em>attributeName</em> to <em>attributeNameValueInput</em>.</t>
                </li>
                <li>
                  <t>Remove any leading or trailing WSP bytes from <em>attributeName</em> and <em>attributeValue</em>.</t>
                </li>
                <li>
                  <t>If <em>attributeValue</em>'s length is greater than 1024, then continue.</t>
                </li>
                <li>
                  <t>If <em>attributeName</em> is a byte-case-insensitive match for <tt>Expires</tt>:      </t>
                  <ol spacing="normal" type="1"><li>
                      <t>If <em>maxAgeSeen</em> is true, then continue.</t>
                    </li>
                    <li>
                      <t>Let <em>expiryTime</em> be the result of running Parse a Date given <em>attributeValue</em>.</t>
                    </li>
                    <li>
                      <t>If <em>attributeValue</em> is failure, then continue.</t>
                    </li>
                    <li>
                      <t>If <em>expiryTime</em> is greater than the current time and date + the user agent's cookie age limit,
then set <em>expiryTime</em> to the user agent's cookie age limit.</t>
                    </li>
                    <li>
                      <t>If <em>expiryTime</em> is earlier than the earliest date the user agent can
represent, the user agent MAY replace <em>expiryTime</em> with the earliest
representable date.</t>
                    </li>
                    <li>
                      <t>Set <em>cookie</em>'s expiry-time to <em>expiryTime</em>.</t>
                    </li>
                  </ol>
                </li>
                <li>
                  <t>If <em>attributeName</em> is a byte-case-insensitive match for <tt>Max-Age</tt>:      </t>
                  <ol spacing="normal" type="1"><li>
                      <t>If <em>attributeValue</em> is empty, continue.</t>
                    </li>
                    <li>
                      <t>If the first byte of <em>attributeValue</em> is neither a DIGIT, nor 0x2D (-)
followed by a DIGIT, then continue.</t>
                    </li>
                    <li>
                      <t>If the remainder of <em>attributeValue</em> contains a non-DIGIT, then continue.</t>
                    </li>
                    <li>
                      <t>Let <em>deltaSeconds</em> be <em>attributeValue</em>, converted to a base 10 integer.</t>
                    </li>
                    <li>
                      <t>Set <em>deltaSeconds</em> to the smaller of <em>deltaSeconds</em> and the user agent's cookie age limit, in seconds.</t>
                    </li>
                    <li>
                      <t>If <em>deltaSeconds</em> is less than or equal to 0, let <em>expiryTime</em> be
the earliest representable date and time. Otherwise, let <em>expiryTime</em>
be the current date and time + <em>deltaSeconds</em> seconds.</t>
                    </li>
                    <li>
                      <t>Set <em>cookie</em>'s expiry-time to <em>expiryTime</em>.</t>
                    </li>
                    <li>
                      <t>Set <em>maxAgeSeen</em> to true.</t>
                    </li>
                  </ol>
                </li>
                <li>
                  <t>If <em>attributeName</em> is a byte-case-insensitive match for <tt>Domain</tt>:      </t>
                  <ol spacing="normal" type="1"><li>
                      <t>Let <em>host</em> be failure.</t>
                    </li>
                    <li>
                      <t>If <em>attributeValue</em> contains only ASCII bytes:          </t>
                      <ol spacing="normal" type="1"><li>
                          <t>Let <em>hostInput</em> be <em>attributeValue</em>, ASCII decoded.</t>
                        </li>
                        <li>
                          <t>If <em>hostInput</em> starts with U+002E (.), then set <em>hostInput</em> to <em>hostInput</em>
without its leading U+002E (.).</t>
                        </li>
                        <li>
                          <t>Set <em>host</em> to the result of host parsing <em>hostInput</em>.</t>
                        </li>
                      </ol>
                    </li>
                    <li>
                      <t>Set <em>cookie</em>'s host to <em>host</em>.</t>
                    </li>
                  </ol>
                </li>
                <li>
                  <t>If <em>attributeName</em> is a byte-case-insensitive match for <tt>Path</tt>:      </t>
                  <ol spacing="normal" type="1"><li>
                      <t>If <em>attributeValue</em> is not empty and if the first byte of
<em>attributeValue</em> is 0x2F (/), then set <em>cookie</em>'s path to <em>attributeValue</em>
split on 0x2F (/).</t>
                    </li>
                  </ol>
                </li>
                <li>
                  <t>If <em>attributeName</em> is a byte-case-insensitive match for <tt>Secure</tt>:      </t>
                  <ol spacing="normal" type="1"><li>
                      <t>Set <em>cookie</em>'s secure to true.</t>
                    </li>
                  </ol>
                </li>
                <li>
                  <t>If <em>attributeName</em> is a byte-case-insensitive match for <tt>HttpOnly</tt>:      </t>
                  <ol spacing="normal" type="1"><li>
                      <t>Set <em>cookie</em>'s http-only to true.</t>
                    </li>
                  </ol>
                </li>
                <li>
                  <t>If <em>attributeName</em> is a byte-case-insensitive match for <tt>SameSite</tt>:      </t>
                  <ol spacing="normal" type="1"><li>
                      <t>If <em>attributeValue</em> is a byte-case-insensitive match for <tt>None</tt>, then set <em>cookie</em>'s same-site to "none".</t>
                    </li>
                    <li>
                      <t>If <em>attributeValue</em> is a byte-case-insensitive match for <tt>Strict</tt>, then set <em>cookie</em>'s same-site to "strict".</t>
                    </li>
                    <li>
                      <t>If <em>attributeValue</em> is a byte-case-insensitive match for <tt>Lax</tt>, then set <em>cookie</em>'s same-site to "lax".</t>
                    </li>
                  </ol>
                </li>
              </ol>
            </li>
            <li>
              <t>Return <em>cookie</em>.</t>
            </li>
          </ol>
          <t>Note: Attributes with an unrecognized <em>attributeName</em> are ignored.</t>
          <t>Note: This intentionally overrides earlier cookie attributes so that generally the last specified
cookie attribute "wins".</t>
        </section>
        <section anchor="store-a-cookie">
          <name>Store a Cookie</name>
          <t>To <strong>Store a Cookie</strong> given a cookie <em>cookie</em>, boolean <em>isSecure</em>, domain or IP address <em>host</em>,
boolean <em>httpOnlyAllowed</em>, boolean <em>allowNonHostOnlyCookieForPublicSuffix</em>, and boolean <em>sameSiteStrictOrLaxAllowed</em>:</t>
          <ol spacing="normal" type="1"><li>
              <t>Assert: <em>cookie</em>'s name's length + <em>cookie</em>'s value's length is not 0 or greater than 4096.</t>
            </li>
            <li>
              <t>Assert: <em>cookie</em>'s name does not contain a byte in the range 0x00 to 0x08, inclusive, in the range 0x0A to 0x1F, inclusive, or
0x7F (CTL characters excluding HTAB).</t>
            </li>
            <li>
              <t>If <em>cookie</em>'s host is failure, then return.</t>
            </li>
            <li>
              <t>Set <em>cookie</em>'s creation-time and last-access-time to the current date and time.</t>
            </li>
            <li>
              <t>If <em>allowNonHostOnlyCookieForPublicSuffix</em> is false and <em>cookie</em>'s host is a public suffix:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>If <em>cookie</em>'s host is host-equal to <em>host</em>, then set <em>cookie</em>'s host to null.</t>
                </li>
                <li>
                  <t>Otherwise, return.</t>
                </li>
              </ol>
              <t>
Note: This step prevents <tt>attacker.example</tt> from disrupting the integrity of
 <tt>site.example</tt> by setting a cookie with a <tt>Domain</tt> attribute of <tt>example</tt>. In the
 event the end user navigates directly to <tt>example</tt>, a cookie can still be set and
 will forcibly have its host-only set to true.</t>
            </li>
            <li>
              <t>If <em>cookie</em>'s host is null:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>Set <em>cookie</em>'s host-only to true.</t>
                </li>
                <li>
                  <t>Set <em>cookie</em>'s host to <em>host</em>.</t>
                </li>
              </ol>
            </li>
            <li>
              <t>Otherwise:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>If <em>host</em> does not Domain-Match <em>cookie</em>'s host, then return.</t>
                </li>
                <li>
                  <t>Set <em>cookie</em>'s host-only to false.</t>
                </li>
              </ol>
            </li>
            <li>
              <t>Assert: <em>cookie</em>'s host is a domain or IP address.</t>
            </li>
            <li>
              <t>If <em>httpOnlyAllowed</em> is false and <em>cookie</em>'s http-only is true, then return.</t>
            </li>
            <li>
              <t>If <em>isSecure</em> is false:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>If <em>cookie</em>'s secure-only is true, then return.</t>
                </li>
                <li>
                  <t>If the user agent's cookie store contains at least one cookie <em>existingCookie</em> that meets all of the following criteria:      </t>
                  <ol spacing="normal" type="1"><li>
                      <t><em>existingCookie</em>'s name is <em>cookie</em>'s name;</t>
                    </li>
                    <li>
                      <t><em>existingCookie</em>'s secure-only is true;</t>
                    </li>
                    <li>
                      <t><em>existingCookie</em>'s host Domain-Matches <em>cookie</em>'s host, or vice-versa; and</t>
                    </li>
                    <li>
                      <t><em>cookie</em>'s path Path-Matches <em>existingCookie</em>'s path,</t>
                    </li>
                  </ol>
                  <t>
then return.      </t>
                  <t>
Note: The path comparison is not symmetric, ensuring only that a newly-created, non-secure
cookie does not overlay an existing secure cookie, providing some mitigation against
cookie-fixing attacks. That is, given an existing secure cookie named 'a' with a path of
'/login', a non-secure cookie named 'a' could be set for a path of '/' or '/foo', but not for
a path of '/login' or '/login/en'.</t>
                </li>
              </ol>
            </li>
            <li>
              <t>If <em>cookie</em>'s same-site is not "<tt>none</tt>" and <em>sameSiteStrictOrLaxAllowed</em> is false,
then return.</t>
            </li>
            <li>
              <t>If <em>cookie</em>'s same-site is "<tt>none</tt>" and <em>cookie</em>'s secure-only is false,
then return.</t>
            </li>
            <li>
              <t>If <em>cookie</em>'s name, byte-lowercased, starts with <tt>__secure-</tt> and <em>cookie</em>'s secure-only is false,
then return.  </t>
              <t>
Note: The check here and those below are with a byte-lowercased value in order to protect servers that process these values in a case-insensitive manner.</t>
            </li>
            <li>
              <t>If <em>cookie</em>'s name, byte-lowercased, starts with <tt>__host-</tt> and not all of the following are true:  </t>
              <ol spacing="normal" type="1"><li>
                  <t><em>cookie</em>'s secure-only is true;</t>
                </li>
                <li>
                  <t><em>cookie</em>'s host-only is true; and</t>
                </li>
                <li>
                  <t><em>cookie</em>'s path's size is 1 and <em>cookie</em>'s path[0] is the empty string,</t>
                </li>
              </ol>
              <t>
then return.</t>
            </li>
            <li>
              <t>If <em>cookie</em>'s name is the empty byte sequence and one of the following is true:  </t>
              <ul spacing="normal">
                <li>
                  <t><em>cookie</em>'s value, byte-lowercased, starts with <tt>__secure-</tt>, or</t>
                </li>
                <li>
                  <t><em>cookie</em>'s value, byte-lowercased, starts with <tt>__host-</tt></t>
                </li>
              </ul>
              <t>
then return.</t>
            </li>
            <li>
              <t>If the user agent's cookie store contains a cookie <em>oldCookie</em> whose name is <em>cookie</em>'s name,
host is host-equal to <em>cookie</em>'s host, host-only is <em>cookie</em>'s host-only, and path is path-equal to <em>cookie</em>'s path:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>If <em>httpOnlyAllowed</em> is false and <em>oldCookie</em>'s http-only is true,
then return.</t>
                </li>
                <li>
                  <t>Set <em>cookie</em>'s creation-time to <em>oldCookie</em>'s creation-time.</t>
                </li>
                <li>
                  <t>Remove <em>oldCookie</em> from the user agent's cookie store.</t>
                </li>
              </ol>
              <t>
Note: This algorithm maintains the invariant that there is at most one such cookie.</t>
            </li>
            <li>
              <t>Insert <em>cookie</em> into the user agent's cookie store.</t>
            </li>
            <li>
              <t>Remove all expired cookies from the user agent's cookie store.</t>
            </li>
            <li>
              <t>Run Remove Excess Cookies for Host given <em>cookie</em>'s host.</t>
            </li>
            <li>
              <t>Run Remove Global Excess Cookies.</t>
            </li>
          </ol>
        </section>
        <section anchor="retrieve-cookies">
          <name>Retrieve Cookies</name>
          <t>To <strong>Retrieve Cookies</strong> given a boolean <em>isSecure</em>, host <em>host</em>, URL path <em>path</em>,
boolean <em>httpOnlyAllowed</em>, and string <em>sameSite</em>:</t>
          <ol spacing="normal" type="1"><li>
              <t>Assert: <em>sameSite</em> is "<tt>strict-or-less</tt>", "<tt>lax-or-less</tt>", "<tt>unset-or-less</tt>", or "<tt>none</tt>".</t>
            </li>
            <li>
              <t>Let <em>cookies</em> be all cookies from the user agent's cookie store that meet these conditions:  </t>
              <ul spacing="normal">
                <li>
                  <t>One of the following is true:      </t>
                  <ul spacing="normal">
                    <li>
                      <t>cookie's host-only is true and <em>host</em> is host-equal to cookie's host, or</t>
                    </li>
                    <li>
                      <t>cookie's host-only is false and <em>host</em> Domain-Matches cookie's host.</t>
                    </li>
                  </ul>
                  <t>
It's possible that the public suffix list changed since a cookie was
created. If this change results in a cookie's host becoming a public
suffix and the cookie's host-only is false, then that cookie SHOULD NOT
be returned.      </t>
                  <t>
XXX: We should probably move this requirement out-of-bound as this invalidation
should happen as part of updating the public suffixes.</t>
                </li>
                <li>
                  <t><em>path</em> Path-Matches cookie's path.</t>
                </li>
                <li>
                  <t>One of the following is true:      </t>
                  <ul spacing="normal">
                    <li>
                      <t>cookie's secure is true and <em>isSecure</em> is true, or</t>
                    </li>
                    <li>
                      <t>cookie's secure is false.</t>
                    </li>
                  </ul>
                </li>
                <li>
                  <t>One of the following is true:      </t>
                  <ul spacing="normal">
                    <li>
                      <t>cookie's http-only is true and <em>httpOnlyAllowed</em> is true, or</t>
                    </li>
                    <li>
                      <t>cookie's http-only is false.</t>
                    </li>
                  </ul>
                </li>
                <li>
                  <t>One of the following is true:      </t>
                  <ul spacing="normal">
                    <li>
                      <t>cookie's same-site is "<tt>strict</tt>" and <em>sameSite</em> is "<tt>strict-or-less</tt>";</t>
                    </li>
                    <li>
                      <t>cookie's same-site is "<tt>lax</tt>" and <em>sameSite</em> is one of "<tt>strict-or-less</tt>" or "<tt>lax-or-less</tt>";</t>
                    </li>
                    <li>
                      <t>cookie's same-site is "<tt>unset</tt>" and <em>sameSite</em> is one of "<tt>strict-or-less</tt>", "<tt>lax-or-less</tt>", or "<tt>unset-or-less</tt>"; or</t>
                    </li>
                    <li>
                      <t>cookie's same-site is "<tt>none</tt>".</t>
                    </li>
                  </ul>
                </li>
              </ul>
            </li>
            <li>
              <t>Sort <em>cookies</em> in the following order:  </t>
              <ul spacing="normal">
                <li>
                  <t>Cookies whose path's size is greater are listed before cookies whose path's size
is smaller.</t>
                </li>
                <li>
                  <t>Among cookies whose path's size is equal, cookies whose creation-time is earlier
are listed before cookies whose creation-time is later.</t>
                </li>
              </ul>
            </li>
            <li>
              <t>Set the last-access-time of each cookie of <em>cookies</em> to the current date and time
and reflect these changes in the user agent's cookie store.</t>
            </li>
            <li>
              <t>Return <em>cookies</em>.</t>
            </li>
          </ol>
        </section>
        <section anchor="serialize-cookies">
          <name>Serialize Cookies</name>
          <t>To <strong>Serialize Cookies</strong> given a list of cookies <em>cookies</em>:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let <em>output</em> be an empty byte sequence.</t>
            </li>
            <li>
              <t>For each <em>cookie</em> of <em>cookies</em>:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>If <em>output</em> is not the empty byte sequence, then append 0x3B (;) followed by 0x20 (SP) to <em>output</em>.</t>
                </li>
                <li>
                  <t>If <em>cookie</em>'s name is not the empty byte sequence, then append <em>cookie</em>'s name followed by
0x3D (=) to <em>output</em>.</t>
                </li>
                <li>
                  <t>Append <em>cookie</em>'s value to <em>output</em>.</t>
                </li>
              </ol>
            </li>
            <li>
              <t>Return <em>output</em>.</t>
            </li>
          </ol>
        </section>
      </section>
      <section anchor="requirements-specific-to-non-browser-user-agents">
        <name>Requirements Specific to Non-Browser User Agents</name>
        <section anchor="set-cookie">
          <name>The Set-Cookie Header Field</name>
          <t>When a user agent receives a <tt>Set-Cookie</tt> header field in an HTTP response, the
user agent MAY ignore the <tt>Set-Cookie</tt> header field in its entirety as per its cookie policy
(see <xref target="cookie-policy"/>).</t>
          <t>User agents MAY ignore <tt>Set-Cookie</tt> header fields contained in responses with 100-level
status codes.</t>
          <t><tt>Set-Cookie</tt> header fields contained in responses with non-100-level status
codes (including those in responses with 400- and 500-level status codes)
SHOULD be processed as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let <em>isSecure</em> be a boolean indicating whether request's URL's scheme is deemed secure, in an implementation-defined manner.</t>
            </li>
            <li>
              <t>Let <em>host</em> be request's host.</t>
            </li>
            <li>
              <t>Let <em>path</em> be request's URL's path.</t>
            </li>
            <li>
              <t>Let <em>httpOnlyAllowed</em> be true.</t>
            </li>
            <li>
              <t>Let <em>allowNonHostOnlyCookieForPublicSuffix</em> be a boolean whose value is implementation-defined.</t>
            </li>
            <li>
              <t>Let <em>sameSiteStrictOrLaxAllowed</em> be a boolean whose value is implementation-defined.</t>
            </li>
            <li>
              <t>Let <em>cookie</em> be the result of running Parse and Store a Cookie given the header field value,
<em>isSecure</em>, <em>host</em>, <em>path</em>, <em>httpOnlyAllowed</em>, <em>allowNonHostOnlyCookieForPublicSuffix</em>, and
<em>sameSiteStrictOrLaxAllowed</em>.</t>
            </li>
          </ol>
        </section>
        <section anchor="cookie">
          <name>The Cookie Header Field</name>
          <t>The user agent includes stored cookies in the <tt>Cookie</tt> request header field.</t>
          <t>When the user agent generates an HTTP request, the user agent MUST NOT attach
more than one <tt>Cookie</tt> header field.</t>
          <t>A user agent MAY omit the <tt>Cookie</tt> header field in its entirety.</t>
          <t>If the user agent does attach a <tt>Cookie</tt> header field to an HTTP request, the
user agent MUST compute its value as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let <em>isSecure</em> be a boolean indicating whether request's URL's scheme is deemed secure, in an implementation-defined manner.</t>
            </li>
            <li>
              <t>Let <em>host</em> be request's host.</t>
            </li>
            <li>
              <t>Let <em>path</em> be request's URL's path.</t>
            </li>
            <li>
              <t>Let <em>httpOnlyAllowed</em> be true.</t>
            </li>
            <li>
              <t>Let <em>sameSite</em> be a string whose value is implementation-defined, but has to be one of
"<tt>strict-or-less</tt>", "<tt>lax-or-less</tt>", "<tt>unset-or-less</tt>", or "<tt>none</tt>".</t>
            </li>
            <li>
              <t>Let <em>cookies</em> be the result of running Retrieve Cookies given <em>isSecure</em>, <em>host</em>, <em>path</em>,
<em>httpOnlyAllowed</em>, and <em>sameSite</em>.</t>
            </li>
            <li>
              <t>Return the result of running Serialize Cookies given <em>cookies</em>.</t>
            </li>
          </ol>
          <t>Note: Previous versions of this specification required that only one Cookie
header field be sent in requests. This is no longer a requirement. While this
specification requires that a single cookie-string be produced, some user agents
may split that string across multiple <tt>Cookie</tt> header fields. For examples, see
<xref section="8.2.3" sectionFormat="of" target="RFC9113"/> and <xref section="4.2.1" sectionFormat="of" target="RFC9114"/>.</t>
        </section>
      </section>
      <section anchor="requirements-specific-to-browser-user-agents">
        <name>Requirements Specific to Browser User Agents</name>
        <t>While browsers are expected to generally follow the same model as non-browser user agents, they
have additional complexity due to the document model (and the ability to nest documents) that is
considered out-of-scope for this specification.</t>
        <t>Specifications for such a user agent are expected to build upon the following algorithms
and invoke them appropriately to process <tt>Cookie</tt> and <tt>Set-Cookie</tt> header fields, as well as
manipulating the user agent's cookie store through non-HTTP APIs:</t>
        <ul spacing="normal">
          <li>
            <t>Parse and Store a Cookie</t>
          </li>
          <li>
            <t>Store a Cookie</t>
          </li>
          <li>
            <t>Retrieve Cookies</t>
          </li>
          <li>
            <t>Serialize Cookies</t>
          </li>
        </ul>
        <t>This provides the flexibility browsers need to detail their requirements in considerable detail.</t>
      </section>
    </section>
    <section anchor="implementation-considerations">
      <name>Implementation Considerations</name>
      <section anchor="limits">
        <name>Limits</name>
        <t>Servers SHOULD use as few and as small cookies as possible to avoid reaching
these implementation limits, minimize network bandwidth due to the
<tt>Cookie</tt> header field being included in every request, and to avoid reaching
server header field limits (See <xref target="server-syntax"/>).</t>
        <t>Servers SHOULD gracefully degrade if the user agent fails to return one or more
cookies in the <tt>Cookie</tt> header field because the user agent might evict any cookie
at any time.</t>
      </section>
      <section anchor="application-programming-interfaces">
        <name>Application Programming Interfaces</name>
        <t>One reason the <tt>Cookie</tt> and <tt>Set-Cookie</tt> header fields use such esoteric syntax is
that many platforms (both in servers and user agents) provide a string-based
application programming interface (API) to cookies, requiring
application-layer programmers to generate and parse the syntax used by the
<tt>Cookie</tt> and <tt>Set-Cookie</tt> header fields, which many programmers have done incorrectly,
resulting in interoperability problems.</t>
        <t>Instead of providing string-based APIs to cookies, platforms would be
well-served by providing more semantic APIs. It is beyond the scope of this
document to recommend specific API designs, but there are clear benefits to
accepting an abstract "Date" object instead of a serialized date string.</t>
      </section>
    </section>
    <section anchor="privacy-considerations">
      <name>Privacy Considerations</name>
      <t>Cookies' primary privacy risk is their ability to correlate user activity. This
can happen on a single site, but is most problematic when activity is tracked across different,
seemingly unconnected Web sites to build a user profile.</t>
      <t>Over time, this capability (warned against explicitly in <xref target="RFC2109"/> and all of its successors)
has become widely used for varied reasons including:</t>
      <ul spacing="normal">
        <li>
          <t>authenticating users across sites,</t>
        </li>
        <li>
          <t>assembling information on users,</t>
        </li>
        <li>
          <t>protecting against fraud and other forms of undesirable traffic,</t>
        </li>
        <li>
          <t>targeting advertisements at specific users or at users with specified attributes,</t>
        </li>
        <li>
          <t>measuring how often ads are shown to users, and</t>
        </li>
        <li>
          <t>recognizing when an ad resulted in a change in user behavior.</t>
        </li>
      </ul>
      <t>While not every use of cookies is necessarily problematic for privacy, their potential for abuse
has become a widespread concern in the Internet community and broader society. In response to these concerns, user agents
have actively constrained cookie functionality in various ways (as allowed and encouraged by
previous specifications), while avoiding disruption to features they judge desirable for the health
of the Web.</t>
      <t>It is too early to declare consensus on which specific mechanism(s) should be used to mitigate cookies' privacy impact; user agents' ongoing changes to how they are handled are best characterised as experiments that
can provide input into that eventual consensus.</t>
      <t>Instead, this document describes limited, general mitigations against the privacy risks associated
with cookies that enjoy wide deployment at the time of writing. It is expected that implementations
will continue to experiment and impose stricter, more well-defined limitations on cookies over
time. Future versions of this document might codify those mechanisms based upon deployment
experience. If functions that currently rely on cookies can be supported by separate, targeted
mechanisms, they might be documented in separate specifications and stricter limitations on cookies
might become feasible.</t>
      <t>Note that cookies are not the only mechanism that can be used to track users across sites, so while
these mitigations are necessary to improve Web privacy, they are not sufficient on their own.</t>
      <section anchor="third-party-cookies">
        <name>Third-Party Cookies</name>
        <t>A "third-party" or cross-site cookie is one that is associated with embedded content (such as
scripts, images, stylesheets, frames) that is obtained from a different server than the one that
hosts the primary resource (usually, the Web page that the user is viewing). Third-party cookies
are often used to correlate users' activity on different sites.</t>
        <t>Because of their inherent privacy issues, most user agents now limit third-party cookies in a
variety of ways. Some completely block third-party cookies by refusing to process third-party
<tt>Set-Cookie</tt> header fields and refusing to send third-party <tt>Cookie</tt> header fields. Some partition
cookies based upon the first-party context, so that different cookies are sent depending on the
site being browsed. Some block cookies based upon user agent cookie policy and/or user controls.</t>
        <t>While this document does not endorse or require a specific approach, it is RECOMMENDED that user
agents adopt a policy for third-party cookies that is as restrictive as compatibility constraints
permit. Consequently, resources cannot rely upon third-party cookies being treated consistently by
user agents for the foreseeable future.</t>
      </section>
      <section anchor="cookie-policy">
        <name>Cookie Policy</name>
        <t>User agents MAY enforce a cookie policy consisting of restrictions on how
cookies may be used or ignored (see <xref target="set-cookie"/>).</t>
        <t>A cookie policy may govern which domains or parties, as in first and third parties
(see <xref target="third-party-cookies"/>), for which the user agent will allow cookie access.
The policy can also define limits on cookie size, cookie expiry (see
<xref target="attribute-expires"/> and <xref target="attribute-max-age"/>), and the number of cookies per
domain or in total.</t>
        <t>The goal of a restrictive cookie policy is often to improve security or privacy.
User agents often allow users to change the cookie policy (see <xref target="user-controls"/>).</t>
      </section>
      <section anchor="user-controls">
        <name>User Controls</name>
        <t>User agents SHOULD provide users with a mechanism for managing the cookies
stored in the cookie store. For example, a user agent might let users delete
all cookies received during a specified time period or all the cookies related
to a particular domain. In addition, many user agents include a user interface
element that lets users examine the cookies stored in their cookie store.</t>
        <t>User agents SHOULD provide users with a mechanism for disabling cookies. When
cookies are disabled, the user agent MUST NOT include a <tt>Cookie</tt> header field in
outbound HTTP requests and the user agent MUST NOT process <tt>Set-Cookie</tt> header fields
in inbound HTTP responses.</t>
        <t>User agents MAY offer a way to change the cookie policy (see
<xref target="cookie-policy"/>).</t>
        <t>User agents MAY provide users the option of preventing persistent storage of
cookies across sessions. When configured thusly, user agents MUST treat all
received cookies as if their expiry-time is null.</t>
      </section>
      <section anchor="expiration-dates">
        <name>Expiration Dates</name>
        <t>Although servers can set the expiration date for cookies to the distant future,
most user agents do not actually retain cookies for multiple decades. Rather
than choosing gratuitously long expiration periods, servers SHOULD promote user
privacy by selecting reasonable cookie expiration periods based on the purpose
of the cookie. For example, a typical session identifier might reasonably be
set to expire in two weeks.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="overview">
        <name>Overview</name>
        <t>Cookies have a number of security pitfalls. This section overviews a few of the
more salient issues.</t>
        <t>In particular, cookies encourage developers to rely on ambient authority for
authentication, often becoming vulnerable to attacks such as cross-site request
forgery <xref target="CSRF"/>. Also, when storing session identifiers in cookies, developers
often create session fixation vulnerabilities.</t>
        <t>Transport-layer encryption, such as that employed in HTTPS, is insufficient to
prevent a network attacker from obtaining or altering a victim's cookies because
the cookie protocol itself has various vulnerabilities (see "Weak Confidentiality"
and "Weak Integrity", below). In addition, by default, cookies do not provide
confidentiality or integrity from network attackers, even when used in conjunction
with HTTPS.</t>
      </section>
      <section anchor="ambient-authority">
        <name>Ambient Authority</name>
        <t>A server that uses cookies to authenticate users can suffer security
vulnerabilities because some user agents let remote parties issue HTTP requests
from the user agent (e.g., via HTTP redirects or HTML forms). When issuing
those requests, user agents attach cookies even if the remote party does not
know the contents of the cookies, potentially letting the remote party exercise
authority at an unwary server.</t>
        <t>Although this security concern goes by a number of names (e.g., cross-site
request forgery, confused deputy), the issue stems from cookies being a form of
ambient authority. Cookies encourage server operators to separate designation
(in the form of URLs) from authorization (in the form of cookies).
Consequently, the user agent might supply the authorization for a resource
designated by the attacker, possibly causing the server or its clients to
undertake actions designated by the attacker as though they were authorized by
the user.</t>
        <t>Instead of using cookies for authorization, server operators might wish to
consider entangling designation and authorization by treating URLs as
capabilities. Instead of storing secrets in cookies, this approach stores
secrets in URLs, requiring the remote entity to supply the secret itself.
Although this approach is not a panacea, judicious application of these
principles can lead to more robust security.</t>
      </section>
      <section anchor="clear-text">
        <name>Clear Text</name>
        <t>Unless sent over a secure channel (such as TLS <xref target="RFC8446"/>), the information in the <tt>Cookie</tt>
and <tt>Set-Cookie</tt> header fields is transmitted in the clear.</t>
        <ol spacing="normal" type="1"><li>
            <t>All sensitive information conveyed in these header fields is exposed to an
eavesdropper.</t>
          </li>
          <li>
            <t>A malicious intermediary could alter the header fields as they travel in either
direction, with unpredictable results.</t>
          </li>
          <li>
            <t>A malicious client could alter the <tt>Cookie</tt> header fields before transmission,
with unpredictable results.</t>
          </li>
        </ol>
        <t>Servers SHOULD encrypt and sign the contents of cookies (using whatever format
the server desires) when transmitting them to the user agent (even when sending
the cookies over a secure channel). However, encrypting and signing cookie
contents does not prevent an attacker from transplanting a cookie from one user
agent to another or from replaying the cookie at a later time.</t>
        <t>In addition to encrypting and signing the contents of every cookie, servers that
require a higher level of security SHOULD use the <tt>Cookie</tt> and <tt>Set-Cookie</tt>
header fields only over a secure channel. When using cookies over a secure channel,
servers SHOULD set the Secure attribute (see <xref target="attribute-secure"/>) for every
cookie. If a server does not set the Secure attribute, the protection
provided by the secure channel will be largely moot.</t>
        <t>For example, consider a webmail server that stores a session identifier in a
cookie and is typically accessed over HTTPS. If the server does not set the
Secure attribute on its cookies, an active network attacker can intercept any
outbound HTTP request from the user agent and redirect that request to the
webmail server over HTTP. Even if the webmail server is not listening for HTTP
connections, the user agent will still include cookies in the request. The
active network attacker can intercept these cookies, replay them against the
server, and learn the contents of the user's email. If, instead, the server had
set the Secure attribute on its cookies, the user agent would not have
included the cookies in the clear-text request.</t>
      </section>
      <section anchor="session-identifiers">
        <name>Session Identifiers</name>
        <t>Instead of storing session information directly in a cookie (where it might be
exposed to or replayed by an attacker), servers commonly store a nonce (or
"session identifier") in a cookie. When the server receives an HTTP request
with a nonce, the server can look up state information associated with the
cookie using the nonce as a key.</t>
        <t>Using session identifier cookies limits the damage an attacker can cause if the
attacker learns the contents of a cookie because the nonce is useful only for
interacting with the server (unlike non-nonce cookie content, which might itself
be sensitive). Furthermore, using a single nonce prevents an attacker from
"splicing" together cookie content from two interactions with the server, which
could cause the server to behave unexpectedly.</t>
        <t>Using session identifiers is not without risk. For example, the server SHOULD
take care to avoid "session fixation" vulnerabilities. A session fixation attack
proceeds in three steps. First, the attacker transplants a session identifier
from his or her user agent to the victim's user agent. Second, the victim uses
that session identifier to interact with the server, possibly imbuing the
session identifier with the user's credentials or confidential information.
Third, the attacker uses the session identifier to interact with server
directly, possibly obtaining the user's authority or confidential information.</t>
      </section>
      <section anchor="weak-confidentiality">
        <name>Weak Confidentiality</name>
        <t>Cookies do not provide isolation by port. If a cookie is readable by a service
running on one port, the cookie is also readable by a service running on another
port of the same server. If a cookie is writable by a service on one port, the
cookie is also writable by a service running on another port of the same server.
For this reason, servers SHOULD NOT both run mutually distrusting services on
different ports of the same host and use cookies to store security-sensitive
information.</t>
        <t>Cookies do not provide isolation by scheme. Although most commonly used with
the http and https schemes, the cookies for a given host might also be
available to other schemes, such as ftp and gopher. Although this lack of
isolation by scheme is most apparent in non-HTTP APIs that permit access to
cookies (e.g., HTML's document.cookie API), the lack of isolation by scheme
is actually present in requirements for processing cookies themselves (e.g.,
consider retrieving a URI with the gopher scheme via HTTP).</t>
        <t>Cookies do not always provide isolation by path. Although the network-level
protocol does not send cookies stored for one path to another, some user
agents expose cookies via non-HTTP APIs, such as HTML's document.cookie API.
Because some of these user agents (e.g., web browsers) do not isolate resources
received from different paths, a resource retrieved from one path might be able
to access cookies stored for another path.</t>
      </section>
      <section anchor="weak-integrity">
        <name>Weak Integrity</name>
        <t>Cookies do not provide integrity guarantees for sibling domains (and their
subdomains). For example, consider foo.site.example and bar.site.example. The
foo.site.example server can set a cookie with a Domain attribute of
"site.example" (possibly overwriting an existing "site.example" cookie set by
bar.site.example), and the user agent will include that cookie in HTTP requests
to bar.site.example. In the worst case, bar.site.example will be unable to
distinguish this cookie from a cookie it set itself. The foo.site.example
server might be able to leverage this ability to mount an attack against
bar.site.example.</t>
        <t>Even though the <tt>Set-Cookie</tt> header field supports the Path attribute, the Path
attribute does not provide any integrity protection because the user agent
will accept an arbitrary Path attribute in a <tt>Set-Cookie</tt> header field. For
example, an HTTP response to a request for http://site.example/foo/bar can set
a cookie with a Path attribute of "/qux". Consequently, servers SHOULD NOT
both run mutually distrusting services on different paths of the same host and
use cookies to store security-sensitive information.</t>
        <t>An active network attacker can also inject cookies into the <tt>Cookie</tt> header field
sent to <tt>https://site.example/</tt> by impersonating a response from
<tt>http://site.example/</tt> and injecting a <tt>Set-Cookie</tt> header field. The HTTPS server
at site.example will be unable to distinguish these cookies from cookies that
it set itself in an HTTPS response. An active network attacker might be able
to leverage this ability to mount an attack against site.example even if
site.example uses HTTPS exclusively.</t>
        <t>Servers can partially mitigate these attacks by encrypting and signing the
contents of their cookies, or by naming the cookie with the <tt>__Secure-</tt> prefix.
However, using cryptography does not mitigate the issue completely because an
attacker can replay a cookie he or she received from the authentic site.example
server in the user's session, with unpredictable results.</t>
        <t>Finally, an attacker might be able to force the user agent to delete cookies by
storing a large number of cookies. Once the user agent reaches its storage
limit, the user agent will be forced to evict some cookies. Servers SHOULD NOT
rely upon user agents retaining cookies.</t>
      </section>
      <section anchor="reliance-on-dns">
        <name>Reliance on DNS</name>
        <t>Cookies rely upon the Domain Name System (DNS) for security. If the DNS is
partially or fully compromised, the cookie protocol might fail to provide the
security properties required by applications.</t>
      </section>
      <section anchor="samesite-cookies">
        <name>SameSite Cookies</name>
        <t>SameSite cookies offer a robust defense against CSRF attack when deployed in
strict mode, and when supported by the client. It is, however, prudent to ensure
that this designation is not the extent of a site's defense against CSRF, as
same-site navigations and submissions can certainly be executed in conjunction
with other attack vectors such as cross-site scripting.</t>
        <t>Developers are strongly encouraged to deploy the usual server-side defenses
(CSRF tokens, ensuring that "safe" HTTP methods are idempotent, etc) to mitigate
the risk more fully.</t>
      </section>
    </section>
    <section anchor="iana">
      <name>IANA Considerations</name>
      <section anchor="iana-cookie">
        <name>Cookie</name>
        <t>The HTTP Field Name Registry (see <xref target="HttpFieldNameRegistry"/>) needs to be
updated with the following registration:</t>
        <dl>
          <dt>Header field name:</dt>
          <dd>
            <t>Cookie</t>
          </dd>
          <dt>Applicable protocol:</dt>
          <dd>
            <t>http</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>standard</t>
          </dd>
          <dt>Author/Change controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Specification document:</dt>
          <dd>
            <t>this specification (<xref target="cookie"/>)</t>
          </dd>
        </dl>
      </section>
      <section anchor="iana-set-cookie">
        <name>Set-Cookie</name>
        <t>The HTTP Field Name Registry (see <xref target="HttpFieldNameRegistry"/>) needs to be
updated with the following registration:</t>
        <dl>
          <dt>Header field name:</dt>
          <dd>
            <t>Set-Cookie</t>
          </dd>
          <dt>Applicable protocol:</dt>
          <dd>
            <t>http</t>
          </dd>
          <dt>Status:</dt>
          <dd>
            <t>standard</t>
          </dd>
          <dt>Author/Change controller:</dt>
          <dd>
            <t>IETF</t>
          </dd>
          <dt>Specification document:</dt>
          <dd>
            <t>this specification (<xref target="set-cookie"/>)</t>
          </dd>
        </dl>
      </section>
    </section>
    <section anchor="changes">
      <name>Changes</name>
      <t>Revamped the document to allow for more detailed requirements on browsers in downstream specifications.</t>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>Many thanks to Adam Barth for laying the groundwork for a modern cookie specification with RFC 6265.</t>
      <t>And thanks to John Wilander, Lily Chen, Mike West, Steven Bingler, and Steven Englehardt for improving upon that work in subsequent drafts.</t>
    </section>
  </middle>
  <back>
    <displayreference target="RFC8446" to="TLS13"/>
    <displayreference target="RFC9114" to="HTTP"/>
    <references anchor="sec-combined-references">
      <name>References</name>
      <references anchor="sec-normative-references">
        <name>Normative References</name>
        <reference anchor="RFC1034">
          <front>
            <title>Domain names - concepts and facilities</title>
            <author fullname="P. Mockapetris" initials="P." surname="Mockapetris"/>
            <date month="November" year="1987"/>
            <abstract>
              <t>This RFC is the revised basic definition of The Domain Name System. It obsoletes RFC-882. This memo describes the domain style names and their used for host address look up and electronic mail forwarding. It discusses the clients and servers in the domain name system and the protocol used between them.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="13"/>
          <seriesInfo name="RFC" value="1034"/>
          <seriesInfo name="DOI" value="10.17487/RFC1034"/>
        </reference>
        <reference anchor="RFC1123">
          <front>
            <title>Requirements for Internet Hosts - Application and Support</title>
            <author fullname="R. Braden" initials="R." role="editor" surname="Braden"/>
            <date month="October" year="1989"/>
            <abstract>
              <t>This RFC is an official specification for the Internet community. It incorporates by reference, amends, corrects, and supplements the primary protocol standards documents relating to hosts. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="3"/>
          <seriesInfo name="RFC" value="1123"/>
          <seriesInfo name="DOI" value="10.17487/RFC1123"/>
        </reference>
        <reference anchor="RFC2119">
          <front>
            <title>Key words for use in RFCs to Indicate Requirement Levels</title>
            <author fullname="S. Bradner" initials="S." surname="Bradner"/>
            <date month="March" year="1997"/>
            <abstract>
              <t>In many standards track documents several words are used to signify the requirements in the specification. These words are often capitalized. This document defines these words as they should be interpreted in IETF documents. This document specifies an Internet Best Current Practices for the Internet Community, and requests discussion and suggestions for improvements.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="2119"/>
          <seriesInfo name="DOI" value="10.17487/RFC2119"/>
        </reference>
        <reference anchor="RFC5234">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker"/>
            <author fullname="P. Overell" initials="P." surname="Overell"/>
            <date month="January" year="2008"/>
            <abstract>
              <t>Internet technical specifications often need to define a formal syntax. Over the years, a modified version of Backus-Naur Form (BNF), called Augmented BNF (ABNF), has been popular among many Internet specifications. The current specification documents ABNF. It balances compactness and simplicity with reasonable representational power. The differences between standard BNF and ABNF involve naming rules, repetition, alternatives, order-independence, and value ranges. This specification also supplies additional rule definitions and encoding for a core lexical analyzer of the type common to several Internet specifications. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="68"/>
          <seriesInfo name="RFC" value="5234"/>
          <seriesInfo name="DOI" value="10.17487/RFC5234"/>
        </reference>
        <reference anchor="HTML" target="https://html.spec.whatwg.org/">
          <front>
            <title>HTML</title>
            <author initials="I." surname="Hickson" fullname="Ian Hickson">
              <organization>Google</organization>
            </author>
            <author initials="S." surname="Pieters" fullname="Simon Pieters">
              <organization>Mozilla</organization>
            </author>
            <author initials="A." surname="van Kesteren" fullname="Anne van Kesteren">
              <organization>Apple</organization>
            </author>
            <author initials="P." surname="Jägenstedt" fullname="Philip Jägenstedt">
              <organization>Google</organization>
            </author>
            <author initials="D." surname="Denicola" fullname="Domenic Denicola">
              <organization>Google</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="INFRA" target="https://infra.spec.whatwg.org">
          <front>
            <title>Infra</title>
            <author initials="A." surname="van Kesteren" fullname="Anne van Kesteren">
              <organization>Apple</organization>
            </author>
            <author initials="D." surname="Denicola" fullname="Domenic Denicola">
              <organization>Google</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="URL" target="https://url.spec.whatwg.org">
          <front>
            <title>URL</title>
            <author initials="A." surname="van Kesteren" fullname="Anne van Kesteren">
              <organization>Apple</organization>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC6265">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="April" year="2011"/>
            <abstract>
              <t>This document defines the HTTP Cookie and Set-Cookie header fields. These header fields can be used by HTTP servers to store state (called cookies) at HTTP user agents, letting the servers maintain a stateful session over the mostly stateless HTTP protocol. Although cookies have many historical infelicities that degrade their security and privacy, the Cookie and Set-Cookie header fields are widely used on the Internet. This document obsoletes RFC 2965. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6265"/>
          <seriesInfo name="DOI" value="10.17487/RFC6265"/>
        </reference>
        <reference anchor="RFC4648">
          <front>
            <title>The Base16, Base32, and Base64 Data Encodings</title>
            <author fullname="S. Josefsson" initials="S." surname="Josefsson"/>
            <date month="October" year="2006"/>
            <abstract>
              <t>This document describes the commonly used base 64, base 32, and base 16 encoding schemes. It also discusses the use of line-feeds in encoded data, use of padding in encoded data, use of non-alphabet characters in encoded data, use of different encoding alphabets, and canonical encodings. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4648"/>
          <seriesInfo name="DOI" value="10.17487/RFC4648"/>
        </reference>
        <reference anchor="RFC7034">
          <front>
            <title>HTTP Header Field X-Frame-Options</title>
            <author fullname="D. Ross" initials="D." surname="Ross"/>
            <author fullname="T. Gondrom" initials="T." surname="Gondrom"/>
            <date month="October" year="2013"/>
            <abstract>
              <t>To improve the protection of web applications against clickjacking, this document describes the X-Frame-Options HTTP header field, which declares a policy, communicated from the server to the client browser, regarding whether the browser may display the transmitted content in frames that are part of other web pages.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="7034"/>
          <seriesInfo name="DOI" value="10.17487/RFC7034"/>
        </reference>
        <reference anchor="RFC8446">
          <front>
            <title>The Transport Layer Security (TLS) Protocol Version 1.3</title>
            <author fullname="E. Rescorla" initials="E." surname="Rescorla"/>
            <date month="August" year="2018"/>
            <abstract>
              <t>This document specifies version 1.3 of the Transport Layer Security (TLS) protocol. TLS allows client/server applications to communicate over the Internet in a way that is designed to prevent eavesdropping, tampering, and message forgery.</t>
              <t>This document updates RFCs 5705 and 6066, and obsoletes RFCs 5077, 5246, and 6961. This document also specifies new requirements for TLS 1.2 implementations.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="8446"/>
          <seriesInfo name="DOI" value="10.17487/RFC8446"/>
        </reference>
        <reference anchor="RFC9110">
          <front>
            <title>HTTP Semantics</title>
            <author fullname="R. Fielding" initials="R." role="editor" surname="Fielding"/>
            <author fullname="M. Nottingham" initials="M." role="editor" surname="Nottingham"/>
            <author fullname="J. Reschke" initials="J." role="editor" surname="Reschke"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems. This document describes the overall architecture of HTTP, establishes common terminology, and defines aspects of the protocol that are shared by all versions. In this definition are core protocol elements, extensibility mechanisms, and the "http" and "https" Uniform Resource Identifier (URI) schemes.</t>
              <t>This document updates RFC 3864 and obsoletes RFCs 2818, 7231, 7232, 7233, 7235, 7538, 7615, 7694, and portions of 7230.</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="97"/>
          <seriesInfo name="RFC" value="9110"/>
          <seriesInfo name="DOI" value="10.17487/RFC9110"/>
        </reference>
        <reference anchor="RFC9113">
          <front>
            <title>HTTP/2</title>
            <author fullname="M. Thomson" initials="M." role="editor" surname="Thomson"/>
            <author fullname="C. Benfield" initials="C." role="editor" surname="Benfield"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>This specification describes an optimized expression of the semantics of the Hypertext Transfer Protocol (HTTP), referred to as HTTP version 2 (HTTP/2). HTTP/2 enables a more efficient use of network resources and a reduced latency by introducing field compression and allowing multiple concurrent exchanges on the same connection.</t>
              <t>This document obsoletes RFCs 7540 and 8740.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9113"/>
          <seriesInfo name="DOI" value="10.17487/RFC9113"/>
        </reference>
        <reference anchor="RFC9114">
          <front>
            <title>HTTP/3</title>
            <author fullname="M. Bishop" initials="M." role="editor" surname="Bishop"/>
            <date month="June" year="2022"/>
            <abstract>
              <t>The QUIC transport protocol has several features that are desirable in a transport for HTTP, such as stream multiplexing, per-stream flow control, and low-latency connection establishment. This document describes a mapping of HTTP semantics over QUIC. This document also identifies HTTP/2 features that are subsumed by QUIC and describes how HTTP/2 extensions can be ported to HTTP/3.</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="9114"/>
          <seriesInfo name="DOI" value="10.17487/RFC9114"/>
        </reference>
        <reference anchor="CSRF" target="http://portal.acm.org/citation.cfm?id=1455770.1455782">
          <front>
            <title>Robust Defenses for Cross-Site Request Forgery</title>
            <author initials="A." surname="Barth" fullname="Adam Barth">
              <organization/>
            </author>
            <author initials="C." surname="Jackson">
              <organization/>
            </author>
            <author initials="J." surname="Mitchell">
              <organization/>
            </author>
            <date year="2008" month="October"/>
          </front>
          <seriesInfo name="DOI" value="10.1145/1455770.1455782"/>
          <seriesInfo name="ISBN" value="978-1-59593-810-7"/>
          <seriesInfo name="ACM" value="CCS '08: Proceedings of the 15th ACM conference on Computer and communications security (pages 75-88)"/>
        </reference>
        <reference anchor="HttpFieldNameRegistry" target="https://www.iana.org/assignments/http-fields/">
          <front>
            <title>Hypertext Transfer Protocol (HTTP) Field Name Registry</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="RFC2109">
          <front>
            <title>HTTP State Management Mechanism</title>
            <author fullname="D. Kristol" initials="D." surname="Kristol"/>
            <author fullname="L. Montulli" initials="L." surname="Montulli"/>
            <date month="February" year="1997"/>
            <abstract>
              <t>This document specifies a way to create a stateful session with HTTP requests and responses. It describes two new headers, Cookie and Set- Cookie, which carry state information between participating origin servers and user agents. The method described here differs from Netscape's Cookie proposal, but it can interoperate with HTTP/1.0 user agents that use Netscape's method. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="2109"/>
          <seriesInfo name="DOI" value="10.17487/RFC2109"/>
        </reference>
      </references>
    </references>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA+2963LcSJIm+j+eAoeyOSLVmSlSlyqJNdU71K2LvZJKR1R1
9drYmITMRCbRQgI5AJJUtkzzNPtvH2H/zb7Y8c/d4wYgSapKfXZ/nDbrUhII
xMXDw+/uMR6PTZu3RXac7D2tqo951hwnP7179yY5a9M2S16lZbrMVlnZJq+y
2Xla5s1qz6TTaZ1d+E/2zLyalemKepnX6aId51m7GJ+37XqaN+Mi3WZ1Nh/P
pPH48NA0m+kqb5q8Ktvtmr46ff7uhZnTgMfJ52cn755/MTP6Y1nV2+Okaeem
mjZVkbU0OZOMk+/ufffQJLfo18Bo9WKG9/TTmHxdHyfrOnt4//tH7+pN0947
PHx8eM+kdZYeJ79m0yQt58lp2WZ1mbXJuzotm3VVt+ayqj8u62qzFmCYdX6c
/GtbzUYJ/Scv5wSPUdJQyzpbNPRru9IfbZ3P6NWsWq1T/QHg0au8LPIy+zfT
tDTm+7SoSlrsNmuSW+9Ns0rr9v2/byqsMCkrYy6ycpPRYpNwFkki0PqVZpeX
y+RPeEdPzytAHgBoju/exb+Xy0lVL+/Su1WaF8eJg9D4cvkvl/fxkt6l9ezc
f1fkTdtM5OXdE3qVX2TN3TebaZHP7oYdoNs6W1f+02Xenm+mE1qsjs7/jLNP
bVZik5u7RTrNiuauooCRD8aEAptszO+OE/vOpJv2vKqPzZjGyUsCyMkkuUjL
5L9mDW1UVtJjwbWTssy6b+oKuJzN87aq6U9aC+Hs39OWZkEfrNdFRk8zgUpK
3198/Bf5Z1IWxg/550nyU7VY0Ss32p8rQv8yeHzlUH+qqmU41t/46/Nq8S9L
fgNgGVNW9Yo+uOCtfvvi6dHh/Qf259G9+/rz3tHRY/358J40+Ondq5f4l1Ai
rZdZG27/qpg062w2uTxPW48I1FLOOT7lvy2c8XvM/9XFn9Li89nHpir1qQDg
lCAdP9+x5E53Z5PkDeFPVjdRd2f5qio7b+IOX1V/z4si7ffYRwjf7RBS9Lu2
mNDp+M0k+fP/+u9Lwto2m7dRv2/O8yJfD7y+GRCeTZJnWZnPKl2P7fYZnV16
3H25o9PT1y/engzve14u6rS78eG+n6LB1Rv/D4Prt1n9L2934Pym7qF8uHL6
7v+bdRvahM6JBi/Snw++e/Co//R7f+QfPXjwncxunjdrYpvHybuXZ0f35e3j
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
63QB2eL/BREUzHW/GgEA

-->

</rfc>
