<?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.4.4) -->
<?rfc tocindent="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>
<rfc xmlns:xi="http://www.w3.org/2001/XInclude" ipr="pre5378Trust200902" docName="draft-ietf-httpbis-rfc6265bis-21" category="std" consensus="true" submissionType="IETF" obsoletes="6265" tocInclude="true" sortRefs="true" symRefs="true" version="3">
  <!-- xml2rfc v2v3 conversion 3.30.2 -->
  <front>
    <title>Cookies: HTTP State Management Mechanism</title>
    <seriesInfo name="Internet-Draft" value="draft-ietf-httpbis-rfc6265bis-21"/>
    <author initials="S." surname="Bingler" fullname="Steven Bingler" role="editor">
      <organization/>
      <address>
        <email>bingler@chromium.org</email>
      </address>
    </author>
    <author initials="M." surname="West" fullname="Mike West" role="editor">
      <organization>Google LLC</organization>
      <address>
        <email>mkwst@google.com</email>
        <uri>https://mikewest.org/</uri>
      </address>
    </author>
    <author initials="J." surname="Wilander" fullname="John Wilander" role="editor">
      <organization>Apple, Inc</organization>
      <address>
        <email>wilander@apple.com</email>
      </address>
    </author>
    <date/>
    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <abstract>
      <?line 192?>

<t>This document defines the HTTP Cookie and Set-Cookie header fields. These
header fields can be used by HTTP servers to store state (called cookies) at
HTTP user agents, letting the servers maintain a stateful session over the
mostly stateless HTTP protocol. Although cookies have many historical
infelicities that degrade their security and privacy, the Cookie and Set-Cookie
header fields are widely used on the Internet. This document obsoletes RFC
6265.</t>
    </abstract>
    <note removeInRFC="true">
      <name>About This Document</name>
      <t>
        Status information for this document may be found at <eref target="https://datatracker.ietf.org/doc/draft-ietf-httpbis-rfc6265bis/"/>.
      </t>
      <t>
        Discussion of this document takes place on the
        HTTP Working Group mailing list (<eref target="mailto:ietf-http-wg@w3.org"/>),
        which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/"/>.
        Working Group information can be found at <eref target="https://httpwg.org/"/>.
      </t>
      <t>Source for this draft and an issue tracker can be found at
        <eref target="https://github.com/httpwg/http-extensions/labels/6265bis"/>.</t>
    </note>
  </front>
  <middle>
    <?line 202?>

<section anchor="introduction">
      <name>Introduction</name>
      <t>This document defines the HTTP Cookie and Set-Cookie header fields. Using
the Set-Cookie header field, an HTTP server can pass name/value pairs and
associated metadata (called cookies) to a user agent. When the user agent makes
subsequent requests to the server, the user agent uses the metadata and other
information to determine whether to return the name/value pairs in the Cookie
header field.</t>
      <t>Although simple on their surface, cookies have a number of complexities. For
example, the server indicates a scope for each cookie when sending it to the
user agent. The scope indicates the maximum amount of time in which the user
agent should return the cookie, the servers to which the user agent should
return the cookie, and the connection types for which the cookie is applicable.</t>
      <t>For historical reasons, cookies contain a number of security and privacy
infelicities. For example, a server can indicate that a given cookie is
intended for "secure" connections, but the Secure attribute does not provide
integrity in the presence of an active network attacker. Similarly, cookies
for a given host are shared across all the ports on that host, even though the
usual "same-origin policy" used by web browsers isolates content retrieved via
different ports.</t>
      <t>This specification applies to developers of both cookie-producing servers and
cookie-consuming user agents. <xref target="implementation-advisory"/> helps to clarify the
intended target audience for each implementation type.</t>
      <t>To maximize interoperability with user agents, servers SHOULD limit themselves
to the well-behaved profile defined in <xref target="sane-profile"/> when generating cookies.</t>
      <t>User agents MUST implement the more liberal processing rules defined in <xref target="ua-requirements"/>,
in order to maximize interoperability with existing servers that do not
conform to the well-behaved profile defined in <xref target="sane-profile"/>.</t>
      <t>This document specifies the syntax and semantics of these header fields as they are
actually used on the Internet. In particular, this document does not create
new syntax or semantics beyond those in use today. The recommendations for
cookie generation provided in <xref target="sane-profile"/> represent a preferred subset of current
server behavior, and even the more liberal cookie processing algorithm provided
in <xref target="ua-requirements"/> does not recommend all of the syntactic and semantic variations in
use today. Where some existing software differs from the recommended protocol
in significant ways, the document contains a note explaining the difference.</t>
      <t>This document obsoletes <xref target="RFC6265"/>.</t>
    </section>
    <section anchor="conventions">
      <name>Conventions</name>
      <section anchor="conformance-criteria">
        <name>Conformance Criteria</name>
        <t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL
NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED",
"MAY", and "OPTIONAL" in this document are to be interpreted as
described in BCP 14 <xref target="RFC2119"/> <xref target="RFC8174"/> when, and only when, they
appear in all capitals, as shown here.</t>
        <t>Requirements phrased in the imperative as part of algorithms (such as "strip any
leading space characters" or "return false and abort this algorithm") are to be
interpreted with the meaning of the key word ("MUST", "SHOULD", "MAY", etc.)
used in introducing the algorithm.</t>
        <t>Conformance requirements phrased as algorithms or specific steps can be
implemented in any manner, so long as the end result is equivalent. In
particular, the algorithms defined in this specification are intended to be
easy to understand and are not intended to be performant.</t>
      </section>
      <section anchor="syntax-notation">
        <name>Syntax Notation</name>
        <t>This specification uses the Augmented Backus-Naur Form (ABNF) notation of
<xref target="RFC5234"/>.</t>
        <t>The following core rules are included by reference, as defined in <xref target="RFC5234"/>,
Appendix B.1: ALPHA (letters), CR (carriage return), CRLF (CR LF), CTLs
(controls), DIGIT (decimal 0-9), DQUOTE (double quote), HEXDIG
(hexadecimal 0-9/A-F/a-f), LF (line feed), NUL (null octet), OCTET (any
8-bit sequence of data except NUL), SP (space), HTAB (horizontal tab),
CHAR (any <xref target="USASCII"/> character), VCHAR (any visible <xref target="USASCII"/> character),
and WSP (whitespace).</t>
        <t>The OWS (optional whitespace) and BWS (bad whitespace) rules are defined in
<xref section="5.6.3" sectionFormat="of" target="RFC9110"/>.</t>
      </section>
      <section anchor="terminology">
        <name>Terminology</name>
        <t>The terms "user agent", "client", "server", "proxy", and "origin server" have
the same meaning as in the HTTP/1.1 specification (<xref section="3" sectionFormat="of" target="RFC9110"/>).</t>
        <t>The request-host is the name of the host, as known by the user agent, to which
the user agent is sending an HTTP request or from which it is receiving an HTTP
response (i.e., the name of the host to which it sent the corresponding HTTP
request).</t>
        <t>The term request-uri refers to "target URI" as defined in <xref section="7.1" sectionFormat="of" target="RFC9110"/>.</t>
        <t>Two sequences of octets are said to case-insensitively match each other if and
only if they are equivalent under the i;ascii-casemap collation defined in
<xref target="RFC4790"/>.</t>
        <t>The term string means a sequence of non-NUL octets.</t>
        <t>The terms "active browsing context", "active document", "ancestor navigables",
"container document", "content navigable", "dedicated worker", "Document",
"inclusive ancestor navigables", "navigable", "navigate", "opaque origin",
"sandboxed origin browsing context flag", "shared worker", "the worker's
Documents", "top-level traversable", and "WorkerGlobalScope" are defined in
<xref target="HTML"/>.</t>
        <t>"Service Workers" are defined in the Service Workers specification
<xref target="SERVICE-WORKERS"/>.</t>
        <t>The term "origin", the mechanism of deriving an origin from a URI, and the "the
same" matching algorithm for origins are defined in <xref target="RFC6454"/>.</t>
        <t>"Safe" HTTP methods include <tt>GET</tt>, <tt>HEAD</tt>, <tt>OPTIONS</tt>, and <tt>TRACE</tt>, as defined
in <xref section="9.2.1" sectionFormat="of" target="RFC9110"/>.</t>
        <t>A domain's "public suffix" is the portion of a domain that is controlled by a
public registry, such as "com", "co.uk", and "pvt.k12.wy.us". A domain's
"registrable domain" is the domain's public suffix plus the label to its left.
That is, for <tt>https://www.site.example</tt>, the public suffix is <tt>example</tt>, and the
registrable domain is <tt>site.example</tt>. Whenever possible, user agents SHOULD
use an up-to-date public suffix list, such as the one maintained by the Mozilla
project at <xref target="PSL"/>.</t>
        <t>The term "request", as well as a request's "client", "current url", "method",
"target browsing context", and "url list", are defined in <xref target="FETCH"/>.</t>
        <t>The term "non-HTTP APIs" refers to non-HTTP mechanisms used to set and retrieve
cookies, such as a web browser API that exposes cookies to scripts.</t>
        <t>The term "top-level navigation" refers to a navigation of a top-level
traversable.</t>
      </section>
    </section>
    <section anchor="overview">
      <name>Overview</name>
      <t>This section outlines a way for an origin server to send state information to a
user agent and for the user agent to return the state information to the origin
server.</t>
      <t>To store state, the origin server includes a Set-Cookie header field in an HTTP
response. In subsequent requests, the user agent returns a Cookie request
header field to the origin server. The Cookie header field contains cookies the user agent
received in previous Set-Cookie header fields. The origin server is free to ignore
the Cookie header field or use its contents for an application-defined purpose.</t>
      <t>Origin servers MAY send a Set-Cookie response header field with any response. An
origin server can include multiple Set-Cookie header fields in a single response.
The presence of a Cookie or a Set-Cookie header field does not preclude HTTP
caches from storing and reusing a response.</t>
      <t>Origin servers 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>
      <t>User agents MAY ignore Set-Cookie header fields based on response status codes or
the user agent's cookie policy (see <xref target="ignoring-cookies"/>).</t>
      <t>Note: A cookie's octets MUST be processed as <xref target="USASCII"/> characters. While
it's possible a non-HTTP API could pass a set-cookie-string with one or more
non-<xref target="USASCII"/> characters, no attempt should be made to interpret these octets
as anything other than <xref target="USASCII"/> characters.</t>
      <section anchor="examples">
        <name>Examples</name>
        <t>Using the Set-Cookie header field, a server can send the user agent a short string
in an HTTP response that the user agent will return in future HTTP requests that
are within the scope of the cookie. For example, the server can send the user
agent a "session identifier" named SID with the value 31d4d96e407aad42. The
user agent then returns the session identifier in subsequent requests.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

Set-Cookie: SID=31d4d96e407aad42

== User Agent -> Server ==

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

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

== User Agent -> Server ==

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

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

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42; lang=en-US
]]></sourcecode>
        <t>Notice that the Cookie header field above contains two cookies, one named SID and
one named lang.</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 Set-Cookie header field with an
expiration date in the past. The server will be successful in removing the
cookie only if the Path and the Domain attribute in the Set-Cookie header field
match the values used when the cookie was created.</t>
        <sourcecode type="example"><![CDATA[
== Server -> User Agent ==

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

== User Agent -> Server ==

Cookie: SID=31d4d96e407aad42
]]></sourcecode>
      </section>
      <section anchor="implementation-advisory">
        <name>Which Requirements to Implement</name>
        <t>The upcoming two sections, <xref target="sane-profile"/> 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 spec changes, spec interpretations,
and historical implementation differences.</t>
        <t>This section roughly divides implementers of the cookie spec 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="sane-profile"/> 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 spec 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="sane-profile"/> advises best practices that help maximize this
sense of compatibility.</t>
          <t>See <xref target="languages-frameworks"/> for more details on programming languages and software
frameworks.</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>
          <t>See <xref target="languages-frameworks"/> for more details on programming languages and software
frameworks.</t>
          <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="sane-profile"/>
and <xref target="ua-requirements"/>, behind a compatibility mode toggle. This toggle should
default to <xref target="sane-profile"/>'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>
    </section>
    <section anchor="sane-profile">
      <name>Server Requirements</name>
      <t>This section describes the syntax and semantics of a well-behaved profile of the
Cookie and Set-Cookie header fields.</t>
      <section anchor="sane-set-cookie">
        <name>Set-Cookie</name>
        <t>The Set-Cookie HTTP response header field is used to send cookies from the server to
the user agent.</t>
        <section anchor="abnf-syntax">
          <name>Syntax</name>
          <t>Informally, the Set-Cookie response header field contains a cookie, which begins with a
name-value-pair, followed by zero or more attribute-value pairs. Servers conforming to
this profile MUST NOT send Set-Cookie header fields that deviate from 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 UAs when
sent back to the server.</t>
          <t>The semantics of the cookie-value are not defined by this document.</t>
          <t>To maximize compatibility with user agents, servers that wish to store arbitrary
data in a cookie-value SHOULD encode that data, for example, using Base64
<xref target="RFC4648"/>.</t>
          <t>Per the grammar above, the cookie-value MAY be wrapped in DQUOTE characters.
Note that in this case, the initial and trailing DQUOTE characters are not
stripped. They are part of the cookie-value, and will be included in Cookie
header fields sent to the server.</t>
          <t>Per the grammar above, cookie-avs MUST NOT contain leading or trailing WSP
characters as they will be interpreted as BWS and removed.</t>
          <t>The domain-value is a subdomain as defined by <xref section="3.5" sectionFormat="of" target="RFC1034"/>, and
as enhanced by <xref section="2.1" sectionFormat="of" target="RFC1123"/>. Thus, domain-value is a string of
<xref target="USASCII"/> characters, such as an "A-label" as defined in
<xref section="2.3.2.1" sectionFormat="of" target="RFC5890"/>.</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 MUST
NOT produce two attributes with the same name in the same set-cookie-string.
(See <xref target="storage-model"/> for how user agents handle this case.)</t>
          <t>Note: The name of an attribute-value pair is not case-sensitive. So while they
are presented here in CamelCase, such as "HttpOnly" or "SameSite", any case is
accepted. E.x.: "httponly", "Httponly", "hTTPoNLY", etc.</t>
          <t>Servers MUST NOT include more than one Set-Cookie header field in the same
response with the same cookie-name. (See <xref target="set-cookie"/> for how user agents
handle this case.)</t>
          <t>If a server sends multiple responses containing Set-Cookie header fields
concurrently to the user agent (e.g., when communicating with the user agent
over multiple sockets), these responses create a "race condition" that can lead
to unpredictable behavior.</t>
          <t>Note: Some existing user agents differ in their interpretation of two-digit
years. To avoid compatibility issues, servers SHOULD use the rfc1123-date
format, which requires a four-digit year.</t>
          <t>Note: Some user agents store and process dates in cookies as 32-bit UNIX time_t
values. Implementation bugs in the libraries supporting time_t processing on
some systems might cause such user agents to process dates after the year 2038
incorrectly.</t>
        </section>
        <section anchor="sane-set-cookie-semantics">
          <name>Semantics (Non-Normative)</name>
          <t>This section describes simplified semantics of the Set-Cookie header field. These
semantics are detailed enough to be useful for understanding the most common
uses of cookies by servers. The full semantics are described in <xref target="ua-requirements"/>.</t>
          <t>When the user agent receives a Set-Cookie header field, the user agent stores the
cookie together with its attributes. Subsequently, when the user agent makes
an HTTP request, the user agent includes the applicable, non-expired cookies
in the Cookie header field.</t>
          <t>If the user agent receives a new cookie with the same cookie-name,
domain-value, and path-value as a cookie that it has already stored, the
existing cookie is evicted and replaced with the new cookie. Notice that
servers can delete cookies by sending the user agent a new cookie with an
Expires attribute with a value in the past.</t>
          <t>Unless the cookie's attributes indicate otherwise, the cookie is returned only
to the origin server (and not, for example, to any subdomains), and it expires
at the end of the current session (as defined by the user agent). User agents
ignore unrecognized cookie attributes (but not the entire cookie).</t>
          <section anchor="attribute-expires">
            <name>The Expires Attribute</name>
            <t>The Expires attribute indicates the maximum lifetime of the cookie,
represented as the date and time at which the cookie expires. The user agent
may adjust the specified date and is not required to retain the cookie until
that date has passed. In fact, user agents often evict cookies due to memory
pressure or privacy concerns.</t>
            <t>The cookie's lifetime is based on the user agent's clock which may differ from
the server's clock. Servers MUST NOT depend on cookies being evicted exactly at
the specified date and time of the server's clock.</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
may adjust the specified duration and is not required to retain the cookie for
that 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.
For example, if the value of the Domain attribute is "site.example", the user
agent will include the cookie in the Cookie header field when making HTTP requests to
site.example, www.site.example, and www.corp.site.example. (Note that a
leading %x2E ("."), if present, is ignored even though that character is not
permitted.)  If the server omits the Domain attribute, the user agent
will return the cookie only to the origin server.</t>
            <t>WARNING: Some existing user agents treat an absent Domain attribute as if the
Domain attribute were present and contained the current host name. For
example, if site.example returns a Set-Cookie header field without a Domain
attribute, these user agents will erroneously send the cookie to
www.site.example as well.</t>
            <t>The user agent will reject cookies unless the Domain attribute specifies a
scope for the cookie that would include the origin server. For example, the
user agent will accept a cookie with a Domain attribute of "site.example" or
of "foo.site.example" from foo.site.example, but the user agent will not accept
a cookie with a Domain attribute of "bar.site.example" or of
"baz.foo.site.example".</t>
            <t>Note: For security reasons, many user agents are configured to reject Domain
attributes that correspond to "public suffixes". For example, some user
agents will reject Domain attributes of "com" or "co.uk". (See <xref target="storage-model"/> for
more information.)</t>
          </section>
          <section anchor="attribute-path">
            <name>The Path Attribute</name>
            <t>The scope of each cookie is limited to a set of paths, controlled by the
Path attribute. If the server omits the Path attribute, the user agent will
use the "directory" of the request-uri's path component as the default value.
(See <xref target="cookie-path"/> for more details.)</t>
            <t>The user agent will include the cookie in an HTTP request only if the path
portion of the request-uri matches (or is a subdirectory of) the cookie's
Path attribute, where the %x2F ("/") character is interpreted as a directory
separator.</t>
            <t>Although seemingly useful for isolating cookies between different paths within
a given host, the Path attribute cannot be relied upon for security (see
<xref target="security-considerations"/>).</t>
          </section>
          <section anchor="attribute-secure">
            <name>The Secure Attribute</name>
            <t>The Secure attribute limits the scope of the cookie to "secure" channels
(where "secure" is defined by the user agent). When a cookie has the Secure
attribute, the user agent will include the cookie in an HTTP request only if
the request is transmitted over a secure channel (typically HTTP over Transport
Layer Security (TLS <xref target="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>
            <t>Note that the HttpOnly attribute is independent of the Secure attribute: a
cookie can have both the HttpOnly and the Secure attribute.</t>
          </section>
          <section anchor="attribute-samesite">
            <name>The SameSite Attribute</name>
            <t>The "SameSite" attribute limits the scope of the cookie such that it will only
be attached to requests if those requests are same-site, as defined by the
algorithm in <xref target="same-site-requests"/>. For example, requests for
<tt>https://site.example/sekrit-image</tt> will attach same-site cookies if and only if
initiated from a context whose "site for cookies" is an origin with a scheme and
registered domain of "https" and "site.example" respectively.</t>
            <t>If the "SameSite" attribute's value is "Strict", the cookie will only be sent
along with "same-site" requests. If the value is "Lax", the cookie will be sent
with same-site requests, and with "cross-site" top-level navigations, as
described in <xref target="strict-lax"/>. If the value is "None", the cookie will be sent
with same-site and cross-site requests. If the "SameSite" attribute's value is
something other than these three known keywords, the attribute's value will be
subject to a default enforcement mode that is equivalent to "Lax". If a user
agent uses "Lax-allowing-unsafe" enforcement (See <xref target="lax-allowing-unsafe"/>) then
this default enforcement mode will instead be equivalent to "Lax-allowing-unsafe".</t>
            <t>The "SameSite" attribute affects cookie creation as well as delivery. Cookies
which assert "SameSite=Lax" or "SameSite=Strict" cannot be set in responses to
cross-site subresource requests, or cross-site nested navigations. They can be
set along with any top-level navigation, cross-site or otherwise.</t>
          </section>
        </section>
        <section anchor="server-name-prefixes">
          <name>Cookie Name Prefixes</name>
          <t><xref target="weak-confidentiality"/> and <xref target="weak-integrity"/> of this document spell out some of the drawbacks of cookies'
historical implementation. In particular, it is impossible for a server to have
confidence that a given cookie was set with a particular set of attributes. In
order to provide such confidence in a backwards-compatible way, two common sets
of requirements can be inferred from the first few characters of the cookie's
name.</t>
          <t>The user agent requirements for the prefixes described below are detailed in
<xref target="ua-name-prefixes"/>.</t>
          <t>To maximize compatibility with user agents servers SHOULD use prefixes as
described below.</t>
          <section anchor="the-secure-prefix">
            <name>The "__Secure-" Prefix</name>
            <t>If a cookie's name begins with a case-sensitive match for the string
<tt>__Secure-</tt>, then the cookie will have been set with a <tt>Secure</tt> attribute.</t>
            <t>For example, the following <tt>Set-Cookie</tt> header field would be rejected by a conformant
user agent, as it does not have a <tt>Secure</tt> attribute.</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example
]]></sourcecode>
            <t>Whereas the following <tt>Set-Cookie</tt> header field would be accepted if set from a secure origin
(e.g. "https://site.example/"), and rejected otherwise:</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example; Secure
]]></sourcecode>
          </section>
          <section anchor="the-host-prefix">
            <name>The "__Host-" Prefix</name>
            <t>If a cookie's name begins with a case-sensitive match for the string
<tt>__Host-</tt>, then the cookie will have been set with a <tt>Secure</tt> attribute, a
<tt>Path</tt> attribute with a value of <tt>/</tt>, and no <tt>Domain</tt> attribute.</t>
            <t>This combination yields a cookie that hews as closely as a cookie can to
treating the origin as a security boundary. The lack of a <tt>Domain</tt> attribute
ensures that the cookie's <tt>host-only-flag</tt> is true, locking the cookie to a
particular host, rather than allowing it to span subdomains. Setting the <tt>Path</tt>
to <tt>/</tt> means that the cookie is effective for the entire host, and won't be
overridden for specific paths. The <tt>Secure</tt> attribute ensures that the cookie
is unaltered by non-secure origins, and won't span protocols.</t>
            <t>Ports are the only piece of the origin model that <tt>__Host-</tt> cookies continue
to ignore.</t>
            <t>For example, the following cookies would always be rejected:</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Host-SID=12345
Set-Cookie: __Host-SID=12345; Secure
Set-Cookie: __Host-SID=12345; Domain=site.example
Set-Cookie: __Host-SID=12345; Domain=site.example; Path=/
Set-Cookie: __Host-SID=12345; Secure; Domain=site.example; Path=/
]]></sourcecode>
            <t>While the following would be accepted if set from a secure origin (e.g.
"https://site.example/"), and rejected otherwise:</t>
            <sourcecode type="example"><![CDATA[
Set-Cookie: __Host-SID=12345; Secure; Path=/
]]></sourcecode>
          </section>
        </section>
      </section>
      <section anchor="sane-cookie">
        <name>Cookie</name>
        <section anchor="server-syntax">
          <name>Syntax</name>
          <t>The user agent sends stored cookies to the origin server in the Cookie header field.
If the server conforms to the requirements in <xref target="sane-set-cookie"/> (and the user agent
conforms to the requirements in <xref target="ua-requirements"/>), the user agent will send a Cookie
header field that conforms to the following grammar:</t>
          <sourcecode type="abnf"><![CDATA[
cookie        = cookie-string
cookie-string = cookie-pair *( ";" SP cookie-pair )
]]></sourcecode>
          <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 8192 octets. 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 cookie headers. For example, an HTTP/2
<xref target="RFC9113"/> or HTTP/3 <xref target="RFC9114"/> client or intermediary might split a cookie
header to improve compression. Servers are free to determine what form this
tolerance takes. For example, the server could process each cookie header
individually or the server could concatenate all the cookie 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 cookie 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 Set-Cookie header field.</t>
          <t>Notice that the cookie attributes are not returned. In particular, the server
cannot determine from the Cookie  field alone when a cookie will expire, for
which hosts the cookie is valid, for which paths the cookie is valid, or
whether the cookie was set with the Secure or HttpOnly attributes.</t>
          <t>The semantics of individual cookies in the Cookie header field are not defined by
this document. Servers are expected to imbue these cookies with
application-specific semantics.</t>
          <t>Although cookies are serialized linearly in the Cookie header field, servers SHOULD
NOT rely upon the serialization order. In particular, if the Cookie header field
contains two cookies with the same name (e.g., that were set with different
Path or Domain attributes), servers SHOULD NOT rely upon the order in which
these cookies appear in the header field.</t>
        </section>
      </section>
    </section>
    <section anchor="ua-requirements">
      <name>User Agent Requirements</name>
      <t>This section specifies the Cookie and Set-Cookie header fields in sufficient
detail that a user agent implementing these requirements precisely can
interoperate with existing servers (even those that do not conform to the
well-behaved profile described in <xref target="sane-profile"/>).</t>
      <t>A user agent could enforce more restrictions than those specified herein (e.g.,
restrictions specified by its cookie policy, described in <xref target="cookie-policy"/>).
However, such additional restrictions may reduce the likelihood that a user
agent will be able to interoperate with existing servers.</t>
      <section anchor="subcomponent-algorithms">
        <name>Subcomponent Algorithms</name>
        <t>This section defines some algorithms used by user agents to process specific
subcomponents of the Cookie and Set-Cookie header fields.</t>
        <section anchor="cookie-date">
          <name>Dates</name>
          <t>The user agent MUST use an algorithm equivalent to the following algorithm to
parse a cookie-date. Note that the various boolean flags defined as a part
of the algorithm (i.e., found-time, found-day-of-month, found-month,
found-year) are initially "not set".</t>
          <ol spacing="normal" type="1"><li>
              <t>Using the grammar below, divide the cookie-date into date-tokens.  </t>
              <sourcecode type="abnf"><![CDATA[
cookie-date     = *delimiter date-token-list *delimiter
date-token-list = date-token *( 1*delimiter date-token )
date-token      = 1*non-delimiter

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

day-of-month    = 1*2DIGIT [ non-digit *OCTET ]
month           = ( "jan" / "feb" / "mar" / "apr" /
                    "may" / "jun" / "jul" / "aug" /
                    "sep" / "oct" / "nov" / "dec" ) *OCTET
year            = 2*4DIGIT [ non-digit *OCTET ]
time            = hms-time [ non-digit *OCTET ]
hms-time        = time-field ":" time-field ":" time-field
time-field      = 1*2DIGIT
]]></sourcecode>
            </li>
            <li>
              <t>Process each date-token sequentially in the order the date-tokens
appear in the cookie-date:  </t>
              <ol spacing="normal" type="1"><li>
                  <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>Abort this algorithm and fail to parse the cookie-date if:  </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>
(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 this algorithm 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="canonicalized-host-names">
          <name>Canonicalized Host Names</name>
          <t>A canonicalized host name is the string generated by the following algorithm:</t>
          <ol spacing="normal" type="1"><li>
              <t>Convert the host name to a sequence of individual domain name labels.</t>
            </li>
            <li>
              <t>Convert each label that is not a Non-Reserved LDH (NR-LDH) label, to an
A-label (see <xref section="2.3.2.1" sectionFormat="of" target="RFC5890"/> for the former and latter).</t>
            </li>
            <li>
              <t>Concatenate the resulting labels, separated by a %x2E (".") character.</t>
            </li>
          </ol>
        </section>
        <section anchor="domain-matching">
          <name>Domain Matching</name>
          <t>A string domain-matches a given domain string if at least one of the following
conditions hold:</t>
          <ul spacing="normal">
            <li>
              <t>The domain string and the string are identical. (Note that both the domain
string and the string will have been canonicalized to lower case at this
point.)</t>
            </li>
            <li>
              <t>All of the following conditions hold:  </t>
              <ul spacing="normal">
                <li>
                  <t>The domain string is a suffix of the string.</t>
                </li>
                <li>
                  <t>The last character of the string that is not included in the domain
string is a %x2E (".") character.</t>
                </li>
                <li>
                  <t>The string is a host name (i.e., not an IP address).</t>
                </li>
              </ul>
            </li>
          </ul>
        </section>
        <section anchor="cookie-path">
          <name>Paths and Path-Match</name>
          <t>The user agent MUST use an algorithm equivalent to the following algorithm to
compute the default-path of a cookie:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let uri-path be the path portion of the request-uri if such a portion
exists (and empty otherwise).</t>
            </li>
            <li>
              <t>If the uri-path is empty or if the first character of the uri-path is
not a %x2F ("/") character, output %x2F ("/") and skip the remaining steps.</t>
            </li>
            <li>
              <t>If the uri-path contains no more than one %x2F ("/") character, output
%x2F ("/") and skip the remaining step.</t>
            </li>
            <li>
              <t>Output the characters of the uri-path from the first character up to, but
not including, the right-most %x2F ("/").</t>
            </li>
          </ol>
          <t>A request-path path-matches a given cookie-path if at least one of the
following conditions holds:</t>
          <ul spacing="normal">
            <li>
              <t>The cookie-path and the request-path are identical.  </t>
              <t>
Note that this differs from the rules in <xref target="RFC3986"/> for equivalence of the
path component, and hence two equivalent paths can have different cookies.</t>
            </li>
            <li>
              <t>The cookie-path is a prefix of the request-path, and the last character
of the cookie-path is %x2F ("/").</t>
            </li>
            <li>
              <t>The cookie-path is a prefix of the request-path, and the first character
of the request-path that is not included in the cookie-path is a %x2F
("/") character.</t>
            </li>
          </ul>
        </section>
      </section>
      <section anchor="same-site-requests">
        <name>"Same-site" and "cross-site" Requests</name>
        <t>Two origins are same-site if they satisfy the "same site" criteria defined in
<xref target="SAMESITE"/>. A request is "same-site" if the following criteria are true:</t>
        <ol spacing="normal" type="1"><li>
            <t>The request is not the result of a reload navigation triggered through a
user interface element (as defined by the user agent; e.g., a request
triggered by the user clicking a refresh button on a toolbar).</t>
          </li>
          <li>
            <t>The request's current url's origin is same-site with the request's
client's "site for cookies" (which is an origin), or if the request has no
client or the request's client is null.</t>
          </li>
        </ol>
        <t>Requests which are the result of a reload navigation triggered through a user
interface element are same-site if the reloaded document was originally
navigated to via a same-site request. A request that is not "same-site" is
instead "cross-site".</t>
        <t>The request's client's "site for cookies" is calculated depending upon its
client's type, as described in the following subsections:</t>
        <section anchor="document-requests">
          <name>Document-based requests</name>
          <t>The URI displayed in a user agent's address bar is the only security context
directly exposed to users, and therefore the only signal users can reasonably
rely upon to determine whether or not they trust a particular website. The
origin of that URI represents the context in which a user most likely believes
themselves to be interacting. We'll define this origin, the top-level
traversable's active document's origin, as the "top-level origin".</t>
          <t>For a document displayed in a top-level traversable, we can stop here: the
document's "site for cookies" is the top-level origin.</t>
          <t>For container documents, we need to audit the origins of each of a document's
ancestor navigables' active documents in order to account for the
"multiple-nested scenarios" described in <xref section="4" sectionFormat="of" target="RFC7034"/>. A document's
"site for cookies" is the top-level origin if and only if the top-level origin
is same-site with the document's origin, and with each of the document's
ancestor documents' origins. Otherwise its "site for cookies" is an origin set
to an opaque origin.</t>
          <t>Given a Document (<tt>document</tt>), the following algorithm returns its "site for
cookies":</t>
          <ol spacing="normal" type="1"><li>
              <t>Let <tt>top-document</tt> be the active document in <tt>document</tt>'s navigable's
top-level traversable.</t>
            </li>
            <li>
              <t>Let <tt>top-origin</tt> be the origin of <tt>top-document</tt>'s URI if <tt>top-document</tt>'s
sandboxed origin browsing context flag is set, and <tt>top-document</tt>'s origin
otherwise.</t>
            </li>
            <li>
              <t>Let <tt>documents</tt> be a list consisting of the active documents of
<tt>document</tt>'s inclusive ancestor navigables.</t>
            </li>
            <li>
              <t>For each <tt>item</tt> in <tt>documents</tt>:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>Let <tt>origin</tt> be the origin of <tt>item</tt>'s URI if <tt>item</tt>'s sandboxed origin
browsing context flag is set, and <tt>item</tt>'s origin otherwise.</t>
                </li>
                <li>
                  <t>If <tt>origin</tt> is not same-site with <tt>top-origin</tt>, return an origin set to
an opaque origin.</t>
                </li>
              </ol>
            </li>
            <li>
              <t>Return <tt>top-origin</tt>.</t>
            </li>
          </ol>
          <t>Note: This algorithm only applies when the entire chain of documents from
<tt>top-document</tt> to <tt>document</tt> are all active.</t>
        </section>
        <section anchor="worker-requests">
          <name>Worker-based requests</name>
          <t>Worker-driven requests aren't as clear-cut as document-driven requests, as
there isn't a clear link between a top-level traversable and a worker.
This is especially true for Service Workers <xref target="SERVICE-WORKERS"/>, which may
execute code in the background, without any document visible at all.</t>
          <section anchor="dedicated-and-shared-requests">
            <name>Dedicated and Shared Workers</name>
            <t>Dedicated workers are simple, as each dedicated worker is bound to one and
only one document. The worker's "site for cookies" is the document's "site for
cookies" if the worker's origin is same-site with the document's "site for
cookies", otherwise its "site for cookies" is an origin set to an opaque
origin.</t>
            <t>Shared workers may be bound to multiple documents at once. As it is quite
possible for those documents to have distinct "site for cookies" values, the
worker's "site for cookies" will be an origin set to an opaque origin in cases
where the values are not all same-site with the worker's origin, and the
worker's origin in cases where the values agree.</t>
            <t>Given a WorkerGlobalScope (<tt>worker</tt>), the following algorithm returns its "site
for cookies":</t>
            <ol spacing="normal" type="1"><li>
                <t>Let <tt>site</tt> be <tt>worker</tt>'s origin.</t>
              </li>
              <li>
                <t>For each <tt>document</tt> in <tt>worker</tt>'s Documents:  </t>
                <ol spacing="normal" type="1"><li>
                    <t>Let <tt>document-site</tt> be <tt>document</tt>'s "site for cookies" (as defined
in <xref target="document-requests"/>).</t>
                  </li>
                  <li>
                    <t>If <tt>document-site</tt> is not same-site with <tt>site</tt>, return an origin
set to an opaque origin.</t>
                  </li>
                </ol>
              </li>
              <li>
                <t>Return <tt>site</tt>.</t>
              </li>
            </ol>
          </section>
          <section anchor="service-workers">
            <name>Service Workers</name>
            <t>Service Workers are more complicated, as they act as a completely separate
execution context with only tangential relationship to the Document which
registered them.</t>
            <t>How user agents handle Service Workers may differ, but user agents SHOULD
match the <xref target="SERVICE-WORKERS"/> specification.</t>
          </section>
        </section>
      </section>
      <section anchor="ignoring-cookies">
        <name>Ignoring Set-Cookie Header Fields</name>
        <t>User agents MAY ignore Set-Cookie header fields contained in responses with 100-level
status codes or based on its cookie policy (see <xref target="cookie-policy"/>).</t>
        <t>All other Set-Cookie header fields SHOULD be processed according to <xref target="set-cookie"/>.
That is, Set-Cookie header fields contained in responses with non-100-level status
codes (including those in responses with 400- and 500-level status codes)
SHOULD be processed unless ignored according to the user agent's cookie policy.</t>
      </section>
      <section anchor="ua-name-prefixes">
        <name>Cookie Name Prefixes</name>
        <t>User agents' requirements for cookie name prefixes differ slightly from
servers' (<xref target="server-name-prefixes"/>) in that UAs MUST match the prefix string
case-insensitively.</t>
        <t>The normative requirements for the prefixes are detailed in the storage model
algorithm defined in <xref target="storage-model"/>.</t>
        <t>This is because some servers will process cookies case-insensitively, resulting
in them unintentionally miscapitalizing and accepting miscapitalized prefixes.</t>
        <t>For example, if a server sends the following <tt>Set-Cookie</tt> header field</t>
        <artwork><![CDATA[
Set-Cookie: __SECURE-SID=12345
]]></artwork>
        <t>to a UA which checks prefixes case-sensitively it will accept this cookie and
the server would incorrectly believe the cookie is subject the same guarantees
as one spelled <tt>__Secure-</tt>.</t>
        <t>Additionally the server is vulnerable to an attacker that purposefully
miscapitalizes a cookie in order to impersonate a prefixed cookie. For example,
a site already has a cookie <tt>__Secure-SID=12345</tt> and by some means an attacker
sends the following <tt>Set-Cookie</tt> header field for the site to a UA which checks
prefixes case-sensitively.</t>
        <artwork><![CDATA[
Set-Cookie: __SeCuRe-SID=evil
]]></artwork>
        <t>The next time a user visits the site the UA will send both cookies:</t>
        <artwork><![CDATA[
Cookie: __Secure-SID=12345; __SeCuRe-SID=evil
]]></artwork>
        <t>The server, being case-insensitive, won't be able to tell the difference
between the two cookies allowing the attacker to compromise the site.</t>
        <t>To prevent these issues, UAs MUST match cookie name prefixes
case-insensitively.</t>
        <t>Note: Cookies with different names are still considered separate by UAs. So
both <tt>__Secure-foo=bar</tt> and <tt>__secure-foo=baz</tt> can exist as distinct cookies
simultaneously and both would have the requirements of the <tt>__Secure-</tt> prefix
applied.</t>
        <t>The following are examples of <tt>Set-Cookie</tt> header fields that would be rejected
by a conformant user agent.</t>
        <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example
Set-Cookie: __secure-SID=12345; Domain=site.example
Set-Cookie: __SECURE-SID=12345; Domain=site.example
Set-Cookie: __Host-SID=12345
Set-Cookie: __host-SID=12345; Secure
Set-Cookie: __host-SID=12345; Domain=site.example
Set-Cookie: __HOST-SID=12345; Domain=site.example; Path=/
Set-Cookie: __Host-SID=12345; Secure; Domain=site.example; Path=/
Set-Cookie: __host-SID=12345; Secure; Domain=site.example; Path=/
Set-Cookie: __HOST-SID=12345; Secure; Domain=site.example; Path=/
]]></sourcecode>
        <t>Whereas the following <tt>Set-Cookie</tt> header fields would be accepted if set from
a secure origin.</t>
        <sourcecode type="example"><![CDATA[
Set-Cookie: __Secure-SID=12345; Domain=site.example; Secure
Set-Cookie: __secure-SID=12345; Domain=site.example; Secure
Set-Cookie: __SECURE-SID=12345; Domain=site.example; Secure
Set-Cookie: __Host-SID=12345; Secure; Path=/
Set-Cookie: __host-SID=12345; Secure; Path=/
Set-Cookie: __HOST-SID=12345; Secure; Path=/
]]></sourcecode>
      </section>
      <section anchor="cookie-lifetime-limits">
        <name>Cookie Lifetime Limits</name>
        <t>When processing cookies with a specified lifetime, either with the Expires or
with the Max-Age attribute, the user agent MUST limit the maximum age of the
cookie. The limit SHOULD NOT be greater than 400 days (34560000 seconds) in the
future. The RECOMMENDED limit is 400 days in the future, but the user agent MAY
adjust the limit (see <xref target="cookie-policy"/>). Expires or Max-Age attributes that
specify a lifetime longer than the limit MUST be reduced to the limit.</t>
      </section>
      <section anchor="set-cookie">
        <name>The Set-Cookie Header Field</name>
        <t>When a user agent receives a Set-Cookie header field in an HTTP response, the
user agent MAY ignore the Set-Cookie header field in its entirety
(see <xref target="ignoring-cookies"/>).</t>
        <t>If the user agent does not ignore the Set-Cookie header field in its entirety,
the user agent MUST parse the field-value of the Set-Cookie header field as a
set-cookie-string (defined below).</t>
        <t>Note: The algorithm below is more permissive than the grammar in <xref target="sane-set-cookie"/>.
For example, the algorithm allows cookie-name to be comprised of cookie-octets
instead of being a token as specified in <xref target="sane-set-cookie"/> and the algorithm
accommodates some characters that are not cookie-octets according to the
grammar in <xref target="sane-set-cookie"/>. In addition, the algorithm below also strips
leading and trailing whitespace from the cookie name and value (but maintains
internal whitespace), whereas the grammar in <xref target="sane-set-cookie"/> forbids
whitespace in these positions. User agents use this algorithm so as to
interoperate with servers that do not follow the recommendations in <xref target="sane-profile"/>.</t>
        <t>Note: As set-cookie-string may originate from a non-HTTP API, it is not
guaranteed to be free of CTL characters, so this algorithm handles them
explicitly. Horizontal tab (%x09) is excluded from the CTL characters that
lead to set-cookie-string rejection, as it is considered whitespace, which is
handled separately.</t>
        <t>Note: The set-cookie-string may contain octet sequences that appear
percent-encoded as per <xref section="2.1" sectionFormat="of" target="RFC3986"/>. However, a user agent
MUST NOT decode these sequences and instead parse the individual octets
as specified in this algorithm.</t>
        <t>A user agent MUST use an algorithm equivalent to the following algorithm to
parse a set-cookie-string:</t>
        <ol spacing="normal" type="1"><li>
            <t>If the set-cookie-string contains a %x00-08 / %x0A-1F / %x7F character
(CTL characters excluding HTAB):
Abort this algorithm and ignore the set-cookie-string entirely.</t>
          </li>
          <li>
            <t>If the set-cookie-string contains a %x3B (";") character:  </t>
            <ol spacing="normal" type="1"><li>
                <t>The name-value-pair string consists of the characters up to, but not
including, the first %x3B (";"), and the unparsed-attributes consist of
the remainder of the set-cookie-string (including the %x3B (";") in
question).</t>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>
                <t>The name-value-pair string consists of all the characters contained in
the set-cookie-string, and the unparsed-attributes is the empty
string.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the name-value-pair string lacks a %x3D ("=") character, then the name
string is empty, and the value string is the value of name-value-pair.  </t>
            <t>
Otherwise, the (possibly empty) name string consists of the characters up
to, but not including, the first %x3D ("=") character, and the (possibly
empty) value string consists of the characters after the first %x3D ("=")
character.</t>
          </li>
          <li>
            <t>Remove any leading or trailing WSP characters from the name string and the
value string.</t>
          </li>
          <li>
            <t>If the sum of the lengths of the name string and the value string is more
than 4096 octets, abort this algorithm and ignore the set-cookie-string
entirely.</t>
          </li>
          <li>
            <t>The cookie-name is the name string, and the cookie-value is the value string.</t>
          </li>
        </ol>
        <t>The user agent MUST use an algorithm equivalent to the following algorithm to
parse the unparsed-attributes:</t>
        <ol spacing="normal" type="1"><li>
            <t>If the unparsed-attributes string is empty, skip the rest of these steps.</t>
          </li>
          <li>
            <t>Discard the first character of the unparsed-attributes (which will be a
%x3B (";") character).</t>
          </li>
          <li>
            <t>If the remaining unparsed-attributes contains a %x3B (";") character:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Consume the characters of the unparsed-attributes up to, but not
including, the first %x3B (";") character.</t>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Consume the remainder of the unparsed-attributes.</t>
              </li>
            </ol>
            <t>
Let the cookie-av string be the characters consumed in this step;
unparsed-attributes now contains any remaining characters.</t>
          </li>
          <li>
            <t>If the cookie-av string contains a %x3D ("=") character:  </t>
            <ol spacing="normal" type="1"><li>
                <t>The (possibly empty) attribute-name string consists of the characters
up to, but not including, the first %x3D ("=") character, and the
(possibly empty) attribute-value string consists of the characters
after the first %x3D ("=") character.</t>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>
                <t>The attribute-name string consists of the entire cookie-av string,
and the attribute-value string is empty.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>Remove any leading or trailing WSP characters from the attribute-name
string and the attribute-value string.</t>
          </li>
          <li>
            <t>If the attribute-value is longer than 1024 octets, ignore the cookie-av
string and return to Step 1 of this algorithm.</t>
          </li>
          <li>
            <t>Process the attribute-name and attribute-value according to the
requirements in the following subsections. (Notice that attributes with
unrecognized attribute-names are ignored.)</t>
          </li>
          <li>
            <t>Return to Step 1 of this algorithm.</t>
          </li>
        </ol>
        <t>When the user agent finishes parsing the set-cookie-string, the user agent is
said to "receive a cookie" from the request-uri with name cookie-name,
value cookie-value, and attributes cookie-attribute-list. (See <xref target="storage-model"/>
for additional requirements triggered by receiving a cookie.)</t>
        <section anchor="ua-attribute-expires">
          <name>The Expires Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Expires", the
user agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>
              <t>Let the expiry-time be the result of parsing the attribute-value as
cookie-date (see <xref target="cookie-date"/>).</t>
            </li>
            <li>
              <t>If the attribute-value failed to parse as a cookie date, ignore the
cookie-av.</t>
            </li>
            <li>
              <t>Let cookie-age-limit be the maximum age of the cookie (which SHOULD be 400 days
in the future or sooner, see <xref target="cookie-lifetime-limits"/>).</t>
            </li>
            <li>
              <t>If the expiry-time is more than cookie-age-limit, the user agent MUST set the
expiry time to cookie-age-limit in seconds.</t>
            </li>
            <li>
              <t>If the expiry-time is earlier than the earliest date the user agent can
represent, the user agent MAY replace the expiry-time with the earliest
representable date.</t>
            </li>
            <li>
              <t>Append an attribute to the cookie-attribute-list with an attribute-name
of Expires and an attribute-value of expiry-time.</t>
            </li>
          </ol>
        </section>
        <section anchor="ua-attribute-max-age">
          <name>The Max-Age Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Max-Age", the
user agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>
              <t>If the attribute-value is empty, ignore the cookie-av.</t>
            </li>
            <li>
              <t>If the first character of the attribute-value is neither a DIGIT, nor a "-"
character followed by a DIGIT, ignore the cookie-av.</t>
            </li>
            <li>
              <t>If the remainder of attribute-value contains a non-DIGIT character, ignore
the cookie-av.</t>
            </li>
            <li>
              <t>Let delta-seconds be the attribute-value converted to a base 10 integer.</t>
            </li>
            <li>
              <t>Let cookie-age-limit be the maximum age of the cookie (which SHOULD be 400 days
or less, see <xref target="cookie-lifetime-limits"/>).</t>
            </li>
            <li>
              <t>Set delta-seconds to the smaller of its present value and cookie-age-limit.</t>
            </li>
            <li>
              <t>If delta-seconds is less than or equal to zero (0), let expiry-time be
the earliest representable date and time. Otherwise, let the expiry-time
be the current date and time plus delta-seconds seconds.</t>
            </li>
            <li>
              <t>Append an attribute to the cookie-attribute-list with an attribute-name
of Max-Age and an attribute-value of expiry-time.</t>
            </li>
          </ol>
        </section>
        <section anchor="the-domain-attribute">
          <name>The Domain Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Domain", the user
agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>
              <t>Let cookie-domain be the attribute-value.</t>
            </li>
            <li>
              <t>If cookie-domain starts with %x2E ("."), let cookie-domain be cookie-domain
without its leading %x2E (".").</t>
            </li>
            <li>
              <t>Convert the cookie-domain to lower case.</t>
            </li>
            <li>
              <t>Append an attribute to the cookie-attribute-list with an attribute-name
of Domain and an attribute-value of cookie-domain.</t>
            </li>
          </ol>
        </section>
        <section anchor="the-path-attribute">
          <name>The Path Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Path", the user
agent MUST process the cookie-av as follows.</t>
          <ol spacing="normal" type="1"><li>
              <t>If the attribute-value is empty or if the first character of the
attribute-value is not %x2F ("/"):  </t>
              <ol spacing="normal" type="1"><li>
                  <t>Let cookie-path be the default-path.</t>
                </li>
              </ol>
              <t>
Otherwise:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>Let cookie-path be the attribute-value.</t>
                </li>
              </ol>
            </li>
            <li>
              <t>Append an attribute to the cookie-attribute-list with an attribute-name
of Path and an attribute-value of cookie-path.</t>
            </li>
          </ol>
        </section>
        <section anchor="the-secure-attribute">
          <name>The Secure Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "Secure", the
user agent MUST append an attribute to the cookie-attribute-list with an
attribute-name of Secure and an empty attribute-value.</t>
        </section>
        <section anchor="the-httponly-attribute">
          <name>The HttpOnly Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "HttpOnly", the
user agent MUST append an attribute to the cookie-attribute-list with an
attribute-name of HttpOnly and an empty attribute-value.</t>
        </section>
        <section anchor="the-samesite-attribute">
          <name>The SameSite Attribute</name>
          <t>If the attribute-name case-insensitively matches the string "SameSite", the
user agent MUST process the cookie-av as follows:</t>
          <ol spacing="normal" type="1"><li>
              <t>Let <tt>enforcement</tt> be "Default".</t>
            </li>
            <li>
              <t>If cookie-av's attribute-value is a case-insensitive match for "None",
set <tt>enforcement</tt> to "None".</t>
            </li>
            <li>
              <t>If cookie-av's attribute-value is a case-insensitive match for "Strict",
set <tt>enforcement</tt> to "Strict".</t>
            </li>
            <li>
              <t>If cookie-av's attribute-value is a case-insensitive match for "Lax", set
<tt>enforcement</tt> to "Lax".</t>
            </li>
            <li>
              <t>Append an attribute to the cookie-attribute-list with an attribute-name
of "SameSite" and an attribute-value of <tt>enforcement</tt>.</t>
            </li>
          </ol>
          <section anchor="strict-lax">
            <name>"Strict" and "Lax" enforcement</name>
            <t>Same-site cookies in "Strict" enforcement mode will not be sent along with
top-level navigations which are triggered from a cross-site document context.
As discussed in <xref target="top-level-navigations"/>, this might or might not be compatible
with existing session management systems. In the interests of providing a
drop-in mechanism that mitigates the risk of CSRF attacks, developers may set
the <tt>SameSite</tt> attribute in a "Lax" enforcement mode that carves out an
exception which sends same-site cookies along with cross-site requests if and
only if they are top-level navigations which use a "safe" (in the <xref target="RFC9110"/>
sense) HTTP method. (Note that a request's method may be changed from POST
to GET for some redirects (see Sections <xref target="RFC9110" section="15.4.2" sectionFormat="bare"/> and <xref target="RFC9110" section="15.4.3" sectionFormat="bare"/> of <xref target="RFC9110"/>); in
these cases, a request's "safe"ness is determined based on the method of the
current redirect hop.)</t>
            <t>Lax enforcement provides reasonable defense in depth against CSRF attacks that
rely on unsafe HTTP methods (like <tt>POST</tt>), but does not offer a robust defense
against CSRF as a general category of attack:</t>
            <ol spacing="normal" type="1"><li>
                <t>Attackers can still pop up new windows or trigger top-level navigations in
order to create a "same-site" request (as described in <xref target="document-requests"/>), which
is only a speedbump along the road to exploitation.</t>
              </li>
              <li>
                <t>Features like <tt>&lt;link rel='prerender'&gt;</tt> <xref target="prerendering"/> can be exploited
to create "same-site" requests without the risk of user detection.</t>
              </li>
            </ol>
            <t>Developers can more completely mitigate CSRF through a session management
mechanism such as that described in <xref target="top-level-navigations"/>.</t>
          </section>
          <section anchor="lax-allowing-unsafe">
            <name>"Lax-Allowing-Unsafe" enforcement</name>
            <t>As discussed in <xref target="unsafe-top-level-requests"/>, compatibility concerns may
necessitate the use of a "Lax-allowing-unsafe" enforcement mode that allows
cookies to be sent with a cross-site HTTP request if and only if it is a
top-level request, regardless of request method. That is, the
"Lax-allowing-unsafe" enforcement mode waives the requirement for the HTTP
request's method to be "safe" in the <tt>SameSite</tt> enforcement step of the
retrieval algorithm in <xref target="retrieval-algorithm"/>. (All cookies, regardless of
<tt>SameSite</tt> enforcement mode, may be set for top-level navigations, regardless of
HTTP request method, as specified in <xref target="storage-model"/>.)</t>
            <t>"Lax-allowing-unsafe" is not a distinct value of the <tt>SameSite</tt> attribute.
Rather, user agents MAY apply "Lax-allowing-unsafe" enforcement only to cookies
that did not explicitly specify a <tt>SameSite</tt> attribute (i.e., those whose
same-site-flag was set to "Default" by default). To limit the scope of this
compatibility mode, user agents which apply "Lax-allowing-unsafe" enforcement
SHOULD restrict the enforcement to cookies which were created recently.
Deployment experience has shown a cookie age of 2 minutes or less to be a
reasonable limit.</t>
            <t>If the user agent uses "Lax-allowing-unsafe" enforcement, it MUST apply the
following modification to the retrieval algorithm defined in
<xref target="retrieval-algorithm"/>:</t>
            <t>Replace the condition in the penultimate bullet point of step 1 of the retrieval
algorithm reading</t>
            <artwork><![CDATA[
 * The HTTP request associated with the retrieval uses a "safe"
   method.
]]></artwork>
            <t>with</t>
            <artwork><![CDATA[
 * At least one of the following is true:

   1.  The HTTP request associated with the retrieval uses a "safe"
       method.

   2.  The cookie's same-site-flag is "Default" and the amount of
       time elapsed since the cookie's creation-time is at most a
       duration of the user agent's choosing.
]]></artwork>
          </section>
        </section>
      </section>
      <section anchor="storage-model">
        <name>Storage Model</name>
        <t>The user agent stores the following fields about each cookie: name, value,
expiry-time, domain, path, creation-time, last-access-time,
persistent-flag, host-only-flag, secure-only-flag, http-only-flag,
and same-site-flag.</t>
        <t>When the user agent "receives a cookie" from a request-uri with name
cookie-name, value cookie-value, and attributes cookie-attribute-list, the
user agent MUST process the cookie as follows:</t>
        <ol spacing="normal" type="1"><li>
            <t>A user agent MAY ignore a received cookie in its entirety. See
<xref target="ignoring-cookies"/>.</t>
          </li>
          <li>
            <t>If cookie-name is empty and cookie-value is empty, abort this algorithm and
ignore the cookie entirely.</t>
          </li>
          <li>
            <t>If the cookie-name or the cookie-value contains a
%x00-08 / %x0A-1F / %x7F character (CTL characters excluding HTAB),
abort this algorithm and ignore the cookie entirely.</t>
          </li>
          <li>
            <t>If the sum of the lengths of cookie-name and cookie-value is more than
4096 octets, abort this algorithm and ignore the cookie entirely.</t>
          </li>
          <li>
            <t>Create a new cookie with name cookie-name, value cookie-value. Set the
creation-time and the last-access-time to the current date and time.</t>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an attribute-name
of "Max-Age":  </t>
            <ol spacing="normal" type="1"><li>
                <t>Set the cookie's persistent-flag to true.</t>
              </li>
              <li>
                <t>Set the cookie's expiry-time to attribute-value of the last
attribute in the cookie-attribute-list with an attribute-name of
"Max-Age".</t>
              </li>
            </ol>
            <t>
Otherwise, if the cookie-attribute-list contains an attribute with an
attribute-name of "Expires" (and does not contain an attribute with an
attribute-name of "Max-Age"):  </t>
            <ol spacing="normal" type="1"><li>
                <t>Set the cookie's persistent-flag to true.</t>
              </li>
              <li>
                <t>Set the cookie's expiry-time to attribute-value of the last
attribute in the cookie-attribute-list with an attribute-name of
"Expires".</t>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Set the cookie's persistent-flag to false.</t>
              </li>
              <li>
                <t>Set the cookie's expiry-time to the latest representable date.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an
attribute-name of "Domain":  </t>
            <ol spacing="normal" type="1"><li>
                <t>Let the domain-attribute be the attribute-value of the last
attribute in the cookie-attribute-list with both an
attribute-name of "Domain" and an attribute-value whose
length is no more than 1024 octets. (Note that a leading %x2E
("."), if present, is ignored even though that character is not
permitted.)</t>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Let the domain-attribute be the empty string.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the domain-attribute contains a character that is not in CHAR, abort
this algorithm and ignore the cookie entirely.</t>
          </li>
          <li>
            <t>If the user agent is configured to reject "public suffixes" and the
domain-attribute is a public suffix:  </t>
            <ol spacing="normal" type="1"><li>
                <t>If the domain-attribute is identical to the canonicalized
request-host:      </t>
                <ol spacing="normal" type="1"><li>
                    <t>Let the domain-attribute be the empty string.</t>
                  </li>
                </ol>
                <t>
Otherwise:      </t>
                <ol spacing="normal" type="1"><li>
                    <t>Abort this algorithm and ignore the cookie entirely.</t>
                  </li>
                </ol>
              </li>
            </ol>
            <t>
Note: This step prevents <tt>attacker.example</tt> from disrupting the integrity of
<tt>site.example</tt> by setting a cookie with a Domain attribute of "example".</t>
          </li>
          <li>
            <t>If the domain-attribute is non-empty:  </t>
            <ol spacing="normal" type="1"><li>
                <t>If the canonicalized request-host does not domain-match the
domain-attribute:      </t>
                <ol spacing="normal" type="1"><li>
                    <t>Abort this algorithm and ignore the cookie entirely.</t>
                  </li>
                </ol>
                <t>
Otherwise:      </t>
                <ol spacing="normal" type="1"><li>
                    <t>Set the cookie's host-only-flag to false.</t>
                  </li>
                  <li>
                    <t>Set the cookie's domain to the domain-attribute.</t>
                  </li>
                </ol>
              </li>
            </ol>
            <t>
Otherwise:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Set the cookie's host-only-flag to true.</t>
              </li>
              <li>
                <t>Set the cookie's domain to the canonicalized request-host.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an
attribute-name of "Path", set the cookie's path to attribute-value of
the last attribute in the cookie-attribute-list with both an
attribute-name of "Path" and an attribute-value whose length is no
more than 1024 octets. Otherwise, set the cookie's path to the
default-path of the request-uri.</t>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an
attribute-name of "Secure", set the cookie's secure-only-flag to true.
Otherwise, set the cookie's secure-only-flag to false.</t>
          </li>
          <li>
            <t>If the request-uri does not denote a "secure" connection (as defined by the
user agent), and the cookie's secure-only-flag is true, then abort these
steps and ignore the cookie entirely.</t>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an
attribute-name of "HttpOnly", set the cookie's http-only-flag to true.
Otherwise, set the cookie's http-only-flag to false.</t>
          </li>
          <li>
            <t>If the cookie was received from a "non-HTTP" API and the cookie's
http-only-flag is true, abort this algorithm and ignore the cookie
entirely.</t>
          </li>
          <li>
            <t>If the cookie's secure-only-flag is false, and the request-uri does not
denote a "secure" connection, then abort this algorithm and ignore the
cookie entirely if the cookie store contains one or more cookies that meet
all of the following criteria:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Their name matches the name of the newly-created cookie.</t>
              </li>
              <li>
                <t>Their secure-only-flag is true.</t>
              </li>
              <li>
                <t>Their domain domain-matches the domain of the newly-created cookie, or
vice-versa.</t>
              </li>
              <li>
                <t>The path of the newly-created cookie path-matches the path of the
existing cookie.</t>
              </li>
            </ol>
            <t>
Note: The path comparison is not symmetric, ensuring only that a
newly-created, non-secure cookie does not overlay an existing secure
cookie, providing some mitigation against cookie-fixing attacks. That is,
given an existing secure cookie named 'a' with a path of '/login', a
non-secure cookie named 'a' could be set for a path of '/' or '/foo', but
not for a path of '/login' or '/login/en'.</t>
          </li>
          <li>
            <t>If the cookie-attribute-list contains an attribute with an
attribute-name of "SameSite", and an attribute-value of "Strict", "Lax", or
"None", set the cookie's same-site-flag to the attribute-value of the last
attribute in the cookie-attribute-list with an attribute-name of "SameSite".
Otherwise, set the cookie's same-site-flag to "Default".</t>
          </li>
          <li>
            <t>If the cookie's <tt>same-site-flag</tt> is not "None":  </t>
            <ol spacing="normal" type="1"><li>
                <t>If the cookie was received from a "non-HTTP" API, and the API was called
from a navigable's active document whose "site for cookies" is
not same-site with the top-level origin, then abort this algorithm and
ignore the newly created cookie entirely.</t>
              </li>
              <li>
                <t>If the cookie was received from a "same-site" request (as defined in
<xref target="same-site-requests"/>), skip the remaining substeps and continue
processing the cookie.</t>
              </li>
              <li>
                <t>If the cookie was received from a request which is navigating a
top-level traversable <xref target="HTML"/> (e.g. if the request's "reserved
client" is either <tt>null</tt> or an environment whose "target browsing
context"'s navigable is a top-level traversable), skip the remaining
substeps and continue processing the cookie.      </t>
                <t>
Note: Top-level navigations can create a cookie with any <tt>SameSite</tt>
value, even if the new cookie wouldn't have been sent along with
the request had it already existed prior to the navigation.</t>
              </li>
              <li>
                <t>Abort this algorithm and ignore the newly created cookie entirely.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the cookie's "same-site-flag" is "None", abort this algorithm and ignore the
cookie entirely unless the cookie's secure-only-flag is true.</t>
          </li>
          <li>
            <t>If the cookie-name begins with a case-insensitive match for the string
"__Secure-", abort this algorithm and ignore the cookie entirely unless the
cookie's secure-only-flag is true.</t>
          </li>
          <li>
            <t>If the cookie-name begins with a case-insensitive match for the string
"__Host-", abort this algorithm and ignore the cookie entirely unless the
cookie meets all the following criteria:  </t>
            <ol spacing="normal" type="1"><li>
                <t>The cookie's secure-only-flag is true.</t>
              </li>
              <li>
                <t>The cookie's host-only-flag is true.</t>
              </li>
              <li>
                <t>The cookie-attribute-list contains an attribute with an attribute-name
of "Path", and the cookie's path is <tt>/</tt>.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>If the cookie-name is empty and either of the following conditions are
true, abort this algorithm and ignore the cookie entirely:  </t>
            <ul spacing="normal">
              <li>
                <t>the cookie-value begins with a case-insensitive match for the string
"__Secure-"</t>
              </li>
              <li>
                <t>the cookie-value begins with a case-insensitive match for the string
"__Host-"</t>
              </li>
            </ul>
          </li>
          <li>
            <t>If the cookie store contains a cookie with the same name, domain,
host-only-flag, and path as the newly-created cookie:  </t>
            <ol spacing="normal" type="1"><li>
                <t>Let old-cookie be the existing cookie with the same name, domain,
host-only-flag, and path as the newly-created cookie. (Notice that this
algorithm maintains the invariant that there is at most one such
cookie.)</t>
              </li>
              <li>
                <t>If the newly-created cookie was received from a "non-HTTP" API and the
old-cookie's http-only-flag is true, abort this algorithm and ignore
the newly created cookie entirely.</t>
              </li>
              <li>
                <t>Update the creation-time of the newly-created cookie to match the
creation-time of the old-cookie.</t>
              </li>
              <li>
                <t>Remove the old-cookie from the cookie store.</t>
              </li>
            </ol>
          </li>
          <li>
            <t>Insert the newly-created cookie into the cookie store.</t>
          </li>
        </ol>
        <t>A cookie is "expired" if the cookie has an expiry date in the past.</t>
        <t>The user agent MUST evict all expired cookies from the cookie store if, at any
time, an expired cookie exists in the cookie store.</t>
        <t>At any time, the user agent MAY "remove excess cookies" from the cookie store
if the number of cookies sharing a domain field exceeds some
implementation-defined upper bound (such as 50 cookies).</t>
        <t>At any time, the user agent MAY "remove excess cookies" from the cookie store
if the cookie store exceeds some predetermined upper bound (such as 3000
cookies).</t>
        <t>When the user agent removes excess cookies from the cookie store, the user
agent MUST evict cookies in the following priority order:</t>
        <ol spacing="normal" type="1"><li>
            <t>Expired cookies.</t>
          </li>
          <li>
            <t>Cookies whose secure-only-flag is false, and which share a domain field
with more than a predetermined number of other cookies.</t>
          </li>
          <li>
            <t>Cookies that share a domain field with more than a predetermined number of
other cookies.</t>
          </li>
          <li>
            <t>All cookies.</t>
          </li>
        </ol>
        <t>If two cookies have the same removal priority, the user agent MUST evict the
cookie with the earliest last-access-time first.</t>
        <t>When "the current session is over" (as defined by the user agent), the user
agent MUST remove from the cookie store all cookies with the persistent-flag
set to false.</t>
      </section>
      <section anchor="retrieval-model">
        <name>Retrieval Model</name>
        <t>This section defines how cookies are retrieved from a cookie store in the form
of a cookie-string. A "retrieval" is any event which requires generating a
cookie-string. For example, a retrieval may occur in order to build a Cookie
header field for an HTTP request, or may be required in order to return a
cookie-string from a call to a "non-HTTP" API that provides access to cookies. A
retrieval has an associated URI, same-site status, and type, which
are defined below depending on the type of retrieval.</t>
        <section anchor="cookie">
          <name>The Cookie Header Field</name>
          <t>The user agent includes stored cookies in the Cookie HTTP request header field.</t>
          <t>A user agent MAY omit the Cookie header field in its entirety.  For example,
the user agent might wish to block sending cookies during "third-party"
requests (see <xref target="third-party-cookies"/>).</t>
          <t>If the user agent does attach a Cookie header field to an HTTP request, the
user agent MUST generate a single cookie-string and the user agent MUST compute
the cookie-string following the algorithm defined in <xref target="retrieval-algorithm"/>,
where the retrieval's URI is the request-uri, the retrieval's same-site status
is computed for the HTTP request as defined in <xref target="same-site-requests"/>, and the
retrieval's type is "HTTP".</t>
          <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 cookie 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 anchor="non-http">
          <name>Non-HTTP APIs</name>
          <t>The user agent MAY implement "non-HTTP" APIs that can be used to access
stored cookies.</t>
          <t>A user agent MAY return an empty cookie-string in certain contexts, such as
when a retrieval occurs within a third-party context (see
<xref target="third-party-cookies"/>).</t>
          <t>If a user agent does return cookies for a given call to a "non-HTTP" API with
an associated Document, then the user agent MUST compute the cookie-string
following the algorithm defined in <xref target="retrieval-algorithm"/>, where the
retrieval's URI is defined by the caller (see <xref target="DOM-DOCUMENT-COOKIE"/>), the
retrieval's same-site status is "same-site" if the Document's "site for
cookies" is same-site with the top-level origin as defined in
<xref target="document-requests"/> (otherwise it is "cross-site"), and the retrieval's type
is "non-HTTP".</t>
        </section>
        <section anchor="retrieval-algorithm">
          <name>Retrieval Algorithm</name>
          <t>Given a cookie store and a retrieval, the following algorithm returns a
cookie-string from a given cookie store.</t>
          <ol spacing="normal" type="1"><li>
              <t>Let cookie-list be the set of cookies from the cookie store that meets all
of the following requirements:  </t>
              <ul spacing="normal">
                <li>
                  <t>Either:      </t>
                  <ul spacing="normal">
                    <li>
                      <t>The cookie's host-only-flag is true and the canonicalized
host of the retrieval's URI is identical to the cookie's domain.</t>
                    </li>
                  </ul>
                  <t>
Or:      </t>
                  <ul spacing="normal">
                    <li>
                      <t>The cookie's host-only-flag is false and the canonicalized
host of the retrieval's URI domain-matches the cookie's domain.</t>
                    </li>
                    <li>
                      <t>The cookie's domain is not a public suffix, for user agents configured
to reject "public suffixes".</t>
                    </li>
                  </ul>
                  <t>
Note: It's possible that the public suffix list was changed since the
cookie was created. If this change resulted in the cookie's domain
becoming a public suffix then that cookie would have been rejected during
creation if it had been created now. (See <xref target="storage-model"/> step 9).</t>
                </li>
                <li>
                  <t>The retrieval's URI's path path-matches the cookie's path.</t>
                </li>
                <li>
                  <t>If the cookie's secure-only-flag is true, then the retrieval's URI must
denote a "secure" connection (as defined by the user agent).      </t>
                  <t>
Note: The notion of a "secure" connection is not defined by this document.
Typically, user agents consider a connection secure if the connection makes
use of transport-layer security, such as SSL or TLS <xref target="RFC8446"/>, or if the host is
trusted. For example, most user agents consider "https" to be a scheme that
denotes a secure protocol and "localhost" to be trusted host.</t>
                </li>
                <li>
                  <t>If the cookie's http-only-flag is true, then exclude the cookie if the
retrieval's type is "non-HTTP".</t>
                </li>
                <li>
                  <t>If the cookie's same-site-flag is not "None" and the retrieval's same-site
status is "cross-site", then exclude the cookie unless all of the
following conditions are met:      </t>
                  <ul spacing="normal">
                    <li>
                      <t>The retrieval's type is "HTTP".</t>
                    </li>
                    <li>
                      <t>The same-site-flag is "Lax" or "Default".</t>
                    </li>
                    <li>
                      <t>The HTTP request associated with the retrieval uses a "safe" method.</t>
                    </li>
                    <li>
                      <t>The target browsing context of the HTTP request associated with the
retrieval is the active browsing context or a top-level traversable.</t>
                    </li>
                  </ul>
                </li>
              </ul>
            </li>
            <li>
              <t>The user agent SHOULD sort the cookie-list in the following order:  </t>
              <ul spacing="normal">
                <li>
                  <t>Cookies with longer paths are listed before cookies with shorter
paths.</t>
                </li>
                <li>
                  <t>Among cookies that have equal-length path fields, cookies with earlier
creation-times are listed before cookies with later creation-times.</t>
                </li>
              </ul>
              <t>
Note: Not all user agents sort the cookie-list in this order, but this order
reflects common practice when this document was written, and, historically,
there have been servers that (erroneously) depended on this order.</t>
            </li>
            <li>
              <t>Update the last-access-time of each cookie in the cookie-list to the
current date and time.</t>
            </li>
            <li>
              <t>Serialize the cookie-list into a cookie-string by processing each cookie
in the cookie-list in order:  </t>
              <ol spacing="normal" type="1"><li>
                  <t>If the cookies' name is not empty, output the cookie's name followed by
the %x3D ("=") character.</t>
                </li>
                <li>
                  <t>If the cookies' value is not empty, output the cookie's value.</t>
                </li>
                <li>
                  <t>If the cookie was not the last cookie in the cookie-list, output the
characters %x3B and %x20 ("; ").</t>
                </li>
              </ol>
            </li>
          </ol>
        </section>
      </section>
    </section>
    <section anchor="implementation-considerations">
      <name>Implementation Considerations</name>
      <section anchor="limits">
        <name>Limits</name>
        <t>Practical user agent implementations have limits on the number and size of
cookies that they can store. General-use user agents SHOULD provide each of the
following minimum capabilities:</t>
        <ul spacing="normal">
          <li>
            <t>At least 50 cookies per domain.</t>
          </li>
          <li>
            <t>At least 3000 cookies total.</t>
          </li>
        </ul>
        <t>User agents MAY limit the maximum number of cookies they store, and may evict
any cookie at any time (whether at the request of the user or due to
implementation limitations).</t>
        <t>Note that a limit on the maximum number of cookies also limits the total size of
the stored cookies, due to the length limits which MUST be enforced in
<xref target="set-cookie"/>.</t>
        <t>Servers SHOULD use as few and as small cookies as possible to avoid reaching
these implementation limits, minimize network bandwidth due to the
Cookie 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 Cookie header field because the user agent might evict any cookie
at any time.</t>
      </section>
      <section anchor="application-programming-interfaces">
        <name>Application Programming Interfaces</name>
        <t>One reason the Cookie and Set-Cookie header fields use such esoteric handling
is that many platforms (both in servers and user agents) provide a string-based
application programming interface (API) to cookies, requiring
application-layer programmers to generate and parse the syntax used by the
Cookie and Set-Cookie header fields, which many programmers have done incorrectly,
resulting in interoperability problems.</t>
        <t>Instead of providing string-based APIs to cookies, platforms would be
well-served by providing more semantic APIs. It is beyond the scope of this
document to recommend specific API designs, but there are clear benefits to
accepting an abstract "Date" object instead of a serialized date string.</t>
      </section>
    </section>
    <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
Set-Cookie header fields and refusing to send third-party Cookie header fields. Some partition
cookies based upon the first-party context, so that different cookies are sent depending on the
site being browsed. Some block cookies based upon user agent cookie policy and/or user controls.</t>
        <t>While this document does not endorse or require a specific approach, it is RECOMMENDED that user
agents adopt a policy for third-party cookies that is as restrictive as compatibility constraints
permit. Consequently, resources cannot rely upon third-party cookies being treated consistently by
user agents for the foreseeable future.</t>
      </section>
      <section anchor="cookie-policy">
        <name>Cookie Policy</name>
        <t>User agents MAY enforce a cookie policy consisting of restrictions on how
cookies may be used or ignored (see <xref target="ignoring-cookies"/>).</t>
        <t>A cookie policy may govern which domains or parties, as in first and third parties
(see <xref target="third-party-cookies"/>), for which the user agent will allow cookie access.
The policy can also define limits on cookie size, cookie expiry (see
<xref target="cookie-lifetime-limits"/>), and the number of cookies per
domain or in total.</t>
        <t>The recommended cookie expiry upper limit is 400 days. User agents may set
a lower limit to enforce shorter data retention timelines, or set the limit higher
to support longer retention when appropriate (e.g., server-to-server
communication over HTTPS).</t>
        <t>The goal of a restrictive cookie policy is often to improve security or privacy.
User agents often allow users to change the cookie policy (see <xref target="user-controls"/>).</t>
      </section>
      <section anchor="user-controls">
        <name>User Controls</name>
        <t>User agents SHOULD provide users with a mechanism for managing the cookies
stored in the cookie store. For example, a user agent might let users delete
all cookies received during a specified time period or all the cookies related
to a particular domain. In addition, many user agents include a user interface
element that lets users examine the cookies stored in their cookie store.</t>
        <t>User agents SHOULD provide users with a mechanism for disabling cookies. When
cookies are disabled, the user agent MUST NOT include a Cookie header field in
outbound HTTP requests and the user agent MUST NOT process Set-Cookie header fields
in inbound HTTP responses.</t>
        <t>User agents MAY offer a way to change the cookie policy (see
<xref target="cookie-policy"/>).</t>
        <t>User agents MAY provide users the option of preventing persistent storage of
cookies across sessions. When configured thusly, user agents MUST treat all
received cookies as if the persistent-flag were set to false. Some popular
user agents expose this functionality via "private browsing" mode
<xref target="Aggarwal2010"/>.</t>
      </section>
      <section anchor="expiration-dates">
        <name>Expiration Dates</name>
        <t>Although servers can set the expiration date for cookies to the distant future,
most user agents do not actually retain cookies for multiple decades. Rather
than choosing gratuitously long expiration periods, servers SHOULD promote user
privacy by selecting reasonable cookie expiration periods based on the purpose
of the cookie. For example, a typical session identifier might reasonably be
set to expire in two weeks.</t>
      </section>
    </section>
    <section anchor="security-considerations">
      <name>Security Considerations</name>
      <section anchor="overview-1">
        <name>Overview</name>
        <t>Cookies have a number of security pitfalls. This section overviews a few of the
more salient issues.</t>
        <t>In particular, cookies encourage developers to rely on ambient authority for
authentication, often becoming vulnerable to attacks such as cross-site request
forgery <xref target="CSRF"/>. Also, when storing session identifiers in cookies, developers
often create session fixation vulnerabilities.</t>
        <t>Transport-layer encryption, such as that employed in HTTPS, offers a
significant layer of defense against network attacks on cookies. However, it
is insufficient in fully preventing a networking attacker from obtaining or
altering a victim's cookies because of inherent vulnerabilities in the cookie
protocol itself (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 Cookie
and Set-Cookie 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>
        </ol>
        <t>Servers SHOULD encrypt and sign the contents of cookies (using whatever format
the server desires) when transmitting them to the user agent (even when sending
the cookies over a secure channel). However, encrypting and signing cookie
contents does not prevent an attacker from transplanting a cookie from one user
agent to another or from replaying the cookie at a later time.</t>
        <t>In addition to encrypting and signing the contents of every cookie, servers that
require a higher level of security SHOULD use the Cookie and Set-Cookie
header fields only over a secure channel. When using cookies over a secure channel,
servers SHOULD set the Secure attribute (see <xref target="attribute-secure"/>) for every
cookie. If a server does not set the Secure attribute, the protection
provided by the secure channel will be largely moot.</t>
        <t>For example, consider a webmail server that stores a session identifier in a
cookie and is typically accessed over HTTPS. If the server does not set the
Secure attribute on its cookies, an active network attacker can intercept any
outbound HTTP request from the user agent and redirect that request to the
webmail server over HTTP. Even if the webmail server is not listening for HTTP
connections, the user agent will still include cookies in the request. The
active network attacker can intercept these cookies, replay them against the
server, and learn the contents of the user's email. If, instead, the server had
set the Secure attribute on its cookies, the user agent would not have
included the cookies in the clear-text request.</t>
      </section>
      <section anchor="session-identifiers">
        <name>Session Identifiers</name>
        <t>Instead of storing session information directly in a cookie (where it might be
exposed to or replayed by an attacker), servers commonly store a nonce (or
"session identifier") in a cookie. When the server receives an HTTP request
with a nonce, the server can look up state information associated with the
cookie using the nonce as a key.</t>
        <t>Using session identifier cookies limits the damage an attacker can cause if the
attacker learns the contents of a cookie because the nonce is useful only for
interacting with the server (unlike non-nonce cookie content, which might itself
be sensitive). Furthermore, using a single nonce prevents an attacker from
"splicing" together cookie content from two interactions with the server, which
could cause the server to behave unexpectedly.</t>
        <t>Using session identifiers is not without risk. For example, the server SHOULD
take care to avoid "session fixation" vulnerabilities. A session fixation attack
proceeds in three steps. First, the attacker transplants a session identifier
from his or her user agent to the victim's user agent. Second, the victim uses
that session identifier to interact with the server, possibly imbuing the
session identifier with the user's credentials or confidential information.
Third, the attacker uses the session identifier to interact with server
directly, possibly obtaining the user's authority or confidential information.</t>
      </section>
      <section anchor="weak-confidentiality">
        <name>Weak Confidentiality</name>
        <t>Cookies do not provide isolation by port. If a cookie is readable by a service
running on one port, the cookie is also readable by a service running on another
port of the same server. If a cookie is writable by a service on one port, the
cookie is also writable by a service running on another port of the same server.
For this reason, servers SHOULD NOT both run mutually distrusting services on
different ports of the same host and use cookies to store security-sensitive
information.</t>
        <t>Cookies do not provide isolation by scheme. Although most commonly used with
the http and https schemes, the cookies for a given host might also be
available to other schemes, such as ftp and gopher. Although this lack of
isolation by scheme is most apparent in non-HTTP APIs that permit access to
cookies (e.g., HTML's document.cookie API), the lack of isolation by scheme
is actually present in requirements for processing cookies themselves (e.g.,
consider retrieving a URI with the gopher scheme via HTTP).</t>
        <t>Cookies do not always provide isolation by path. Although the network-level
protocol does not send cookies stored for one path to another, some user
agents expose cookies via non-HTTP APIs, such as HTML's document.cookie API.
Because some of these user agents (e.g., web browsers) do not isolate resources
received from different paths, a resource retrieved from one path might be able
to access cookies stored for another path.</t>
      </section>
      <section anchor="weak-integrity">
        <name>Weak Integrity</name>
        <t>Cookies do not provide integrity guarantees for sibling domains (and their
subdomains). For example, consider foo.site.example and bar.site.example. The
foo.site.example server can set a cookie with a Domain attribute of
"site.example" (possibly overwriting an existing "site.example" cookie set by
bar.site.example), and the user agent will include that cookie in HTTP requests
to bar.site.example. In the worst case, bar.site.example will be unable to
distinguish this cookie from a cookie it set itself. The foo.site.example
server might be able to leverage this ability to mount an attack against
bar.site.example.</t>
        <t>Even though the Set-Cookie header field supports the Path attribute, the Path
attribute does not provide any integrity protection because the user agent
will accept an arbitrary Path attribute in a Set-Cookie header field. For
example, an HTTP response to a request for http://site.example/foo/bar can set
a cookie with a Path attribute of "/qux". Consequently, servers SHOULD NOT
both run mutually distrusting services on different paths of the same host and
use cookies to store security-sensitive information.</t>
        <t>An active network attacker can also inject cookies into the Cookie header field
sent to https://site.example/ by impersonating a response from
http://site.example/ and injecting a Set-Cookie header field. The HTTPS server
at site.example will be unable to distinguish these cookies from cookies that
it set itself in an HTTPS response. An active network attacker might be able
to leverage this ability to mount an attack against site.example even if
site.example uses HTTPS exclusively.</t>
        <t>Servers can partially mitigate these attacks by encrypting and signing the
contents of their cookies, or by naming the cookie with the <tt>__Secure-</tt> prefix.
However, using cryptography does not mitigate the issue completely because an
attacker can replay a cookie he or she received from the authentic site.example
server in the user's session, with unpredictable results.</t>
        <t>Finally, an attacker might be able to force the user agent to delete cookies by
storing a large number of cookies. Once the user agent reaches its storage
limit, the user agent will be forced to evict some cookies. Servers SHOULD NOT
rely upon user agents retaining cookies.</t>
      </section>
      <section anchor="reliance-on-dns">
        <name>Reliance on DNS</name>
        <t>Cookies rely upon the Domain Name System (DNS) for security. If the DNS is
partially or fully compromised, the cookie protocol might fail to provide the
security properties required by applications.</t>
      </section>
      <section anchor="samesite-cookies">
        <name>SameSite Cookies</name>
        <section anchor="defense-in-depth">
          <name>Defense in depth</name>
          <t>"SameSite" cookies offer a robust defense against CSRF attack when deployed in
strict mode, and when supported by the client. It is, however, prudent to ensure
that this designation is not the extent of a site's defense against CSRF, as
same-site navigations and submissions can certainly be executed in conjunction
with other attack vectors such as cross-site scripting or abuse of page
redirections.</t>
          <t>Understanding how and when a request is considered same-site is also important
in order to properly design a site for SameSite cookies. For example, if a
cross-site top-level request is made to a sensitive page that request will be
considered cross-site and <tt>SameSite=Strict</tt> cookies won't be sent; that page's
sub-resources requests, however, are same-site and would receive <tt>SameSite=Strict</tt>
cookies. Sites can avoid inadvertently allowing access to these sub-resources
by returning an error for the initial page request if it doesn't include the
appropriate cookies.</t>
          <t>Developers are strongly encouraged to deploy the usual server-side defenses
(CSRF tokens, ensuring that "safe" HTTP methods are idempotent, etc) to mitigate
the risk more fully.</t>
          <t>Additionally, client-side techniques such as those described in
<xref target="app-isolation"/> may also prove effective against CSRF, and are certainly worth
exploring in combination with "SameSite" cookies.</t>
        </section>
        <section anchor="top-level-navigations">
          <name>Top-level Navigations</name>
          <t>Setting the <tt>SameSite</tt> attribute in "strict" mode provides robust defense in
depth against CSRF attacks, but has the potential to confuse users unless sites'
developers carefully ensure that their cookie-based session management systems
deal reasonably well with top-level navigations.</t>
          <t>Consider the scenario in which a user reads their email at MegaCorp Inc's
webmail provider <tt>https://site.example/</tt>. They might expect that clicking on an
emailed link to <tt>https://projects.example/secret/project</tt> would show them the
secret project that they're authorized to see, but if <tt>https://projects.example</tt>
has marked their session cookies as <tt>SameSite=Strict</tt>, then this cross-site
navigation won't send them along with the request. <tt>https://projects.example</tt>
will render a 404 error to avoid leaking secret information, and the user will
be quite confused.</t>
          <t>Developers can avoid this confusion by adopting a session management system that
relies on not one, but two cookies: one conceptually granting "read" access,
another granting "write" access. The latter could be marked as <tt>SameSite=Strict</tt>,
and its absence would prompt a reauthentication step before executing any
non-idempotent action. The former could be marked as <tt>SameSite=Lax</tt>, in
order to allow users access to data via top-level navigation, or
<tt>SameSite=None</tt>, to permit access in all contexts (including cross-site
embedded contexts).</t>
        </section>
        <section anchor="mashups-and-widgets">
          <name>Mashups and Widgets</name>
          <t>The <tt>Lax</tt> and <tt>Strict</tt> values for the <tt>SameSite</tt> attribute are inappropriate
for some important use-cases. In particular, note that content intended for
embedding in cross-site contexts (social networking widgets or commenting
services, for instance) will not have access to same-site cookies. Cookies
which are required in these situations should be marked with <tt>SameSite=None</tt>
to allow access in cross-site contexts.</t>
          <t>Likewise, some forms of Single-Sign-On might require cookie-based authentication
in a cross-site context; these mechanisms will not function as intended with
same-site cookies and will also require <tt>SameSite=None</tt>.</t>
        </section>
        <section anchor="server-controlled">
          <name>Server-controlled</name>
          <t>SameSite cookies in and of themselves don't do anything to address the
general privacy concerns outlined in <xref section="7.1" sectionFormat="of" target="RFC6265"/>. The "SameSite"
attribute is set by the server, and serves to mitigate the risk of certain kinds
of attacks that the server is worried about. The user is not involved in this
decision. Moreover, a number of side-channels exist which could allow a server
to link distinct requests even in the absence of cookies (for example, connection
and/or socket pooling between same-site and cross-site requests).</t>
        </section>
        <section anchor="reload-navigations">
          <name>Reload navigations</name>
          <t>Requests issued for reloads triggered through user interface elements (such as a
refresh button on a toolbar) are same-site only if the reloaded document was
originally navigated to via a same-site request. This differs from the handling
of other reload navigations, which are always same-site if top-level, since the
source navigable's active document is precisely the document being
reloaded.</t>
          <t>This special handling of reloads triggered through a user interface element
avoids sending <tt>SameSite</tt> cookies on user-initiated reloads if they were
withheld on the original navigation (i.e., if the initial navigation were
cross-site). If the reload navigation were instead considered same-site, and
sent all the initially withheld <tt>SameSite</tt> cookies, the security benefits of
withholding the cookies in the first place would be nullified. This is
especially important given that the absence of <tt>SameSite</tt> cookies withheld on a
cross-site navigation request may lead to visible site breakage, prompting the
user to trigger a reload.</t>
          <t>For example, suppose the user clicks on a link from <tt>https://attacker.example/</tt>
to <tt>https://victim.example/</tt>. This is a cross-site request, so <tt>SameSite=Strict</tt>
cookies are withheld. Suppose this causes <tt>https://victim.example/</tt> to appear
broken, because the site only displays its sensitive content if a particular
<tt>SameSite</tt> cookie is present in the request. The user, frustrated by the
unexpectedly broken site, presses refresh on their browser's toolbar. To now
consider the reload request same-site and send the initially withheld <tt>SameSite</tt>
cookie would defeat the purpose of withholding it in the first place, as the
reload navigation triggered through the user interface may replay the original
(potentially malicious) request. Thus, the reload request should be considered
cross-site, like the request that initially navigated to the page.</t>
          <t>Because requests issued for, non-user initiated, reloads attach all SameSite
cookies, developers should be careful and thoughtful about when to initiate a
reload in order to avoid a CSRF attack. For example, the page could only
initiate a reload if a CSRF token is present on the initial request.</t>
        </section>
        <section anchor="unsafe-top-level-requests">
          <name>Top-level requests with "unsafe" methods</name>
          <t>The "Lax" enforcement mode described in <xref target="strict-lax"/> allows a cookie to be
sent with a cross-site HTTP request if and only if it is a top-level navigation
with a "safe" HTTP method. Implementation experience shows that this is
difficult to apply as the default behavior, as some sites may rely on cookies
not explicitly specifying a <tt>SameSite</tt> attribute being included on top-level
cross-site requests with "unsafe" HTTP methods (as was the case prior to the
introduction of the <tt>SameSite</tt> attribute).</t>
          <t>For example, the concluding step of a login flow may involve a cross-site top-level
<tt>POST</tt> request to an endpoint; this endpoint expects a recently created cookie
containing transactional state information, necessary to securely complete the
login. For such a cookie, "Lax" enforcement is not appropriate, as it would
cause the cookie to be excluded due to the unsafe HTTP request method,
resulting in an unrecoverable failure of the whole login flow.</t>
          <t>The "Lax-allowing-unsafe" enforcement mode described in <xref target="lax-allowing-unsafe"/>
retains some of the protections of "Lax" enforcement (as compared to "None")
while still allowing recently created cookies to be sent cross-site with unsafe
top-level requests.</t>
          <t>As a more permissive variant of "Lax" mode, "Lax-allowing-unsafe" mode
necessarily provides fewer protections against CSRF. Ultimately, the provision
of such an enforcement mode should be seen as a temporary, transitional measure
to ease adoption of "Lax" enforcement by default.</t>
        </section>
      </section>
    </section>
    <section anchor="iana-considerations">
      <name>IANA Considerations</name>
      <section anchor="iana-cookie">
        <name>Cookie</name>
        <t>The 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 anchor="cookie-attributes-registry">
        <name>"Cookie Attributes" Registry</name>
        <t>IANA is requested to create the "Cookie Attributes" registry, defining the name space of
attributes used to control cookies' behavior. The registry should be maintained in a new
registry group called "Hypertext Transfer Protocol (HTTP) Cookie Attributes" at
<eref target="https://www.iana.org/assignments/cookie-attribute-names">https://www.iana.org/assignments/cookie-attribute-names</eref>.</t>
        <section anchor="procedure">
          <name>Procedure</name>
          <t>Each registered attribute name is associated with a description, and a
reference detailing how the attribute is to be processed and stored.</t>
          <t>New registrations happen on a "RFC Required" basis (see Section 4.7 of
<xref target="RFC8126"/>). The attribute to be registered MUST match the <tt>extension-av</tt>
syntax defined in <xref target="abnf-syntax"/>. Note that attribute names are generally
defined in CamelCase but MUST be recognized case-insensitively.  Two attribute
names that case-insensitively match MUST NOT be registered.</t>
        </section>
        <section anchor="registration">
          <name>Registration</name>
          <t>The "Cookie Attributes" registry should be created with the registrations below:</t>
          <table>
            <thead>
              <tr>
                <th align="right">Name</th>
                <th align="left">Reference</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td align="right">Domain</td>
                <td align="left">
                  <xref target="attribute-domain"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Expires</td>
                <td align="left">
                  <xref target="attribute-expires"/> of this document</td>
              </tr>
              <tr>
                <td align="right">HttpOnly</td>
                <td align="left">
                  <xref target="attribute-httponly"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Max-Age</td>
                <td align="left">
                  <xref target="attribute-max-age"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Path</td>
                <td align="left">
                  <xref target="attribute-path"/> of this document</td>
              </tr>
              <tr>
                <td align="right">SameSite</td>
                <td align="left">
                  <xref target="attribute-samesite"/> of this document</td>
              </tr>
              <tr>
                <td align="right">Secure</td>
                <td align="left">
                  <xref target="attribute-secure"/> of this document</td>
              </tr>
            </tbody>
          </table>
        </section>
      </section>
    </section>
  </middle>
  <back>
    <displayreference target="RFC9110" to="HTTP"/>
    <displayreference target="RFC8446" to="TLS13"/>
    <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="RFC4790">
          <front>
            <title>Internet Application Protocol Collation Registry</title>
            <author fullname="C. Newman" initials="C." surname="Newman"/>
            <author fullname="M. Duerst" initials="M." surname="Duerst"/>
            <author fullname="A. Gulbrandsen" initials="A." surname="Gulbrandsen"/>
            <date month="March" year="2007"/>
            <abstract>
              <t>Many Internet application protocols include string-based lookup, searching, or sorting operations. However, the problem space for searching and sorting international strings is large, not fully explored, and is outside the area of expertise for the Internet Engineering Task Force (IETF). Rather than attempt to solve such a large problem, this specification creates an abstraction framework so that application protocols can precisely identify a comparison function, and the repertoire of comparison functions can be extended in the future. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="4790"/>
          <seriesInfo name="DOI" value="10.17487/RFC4790"/>
        </reference>
        <reference anchor="RFC5234">
          <front>
            <title>Augmented BNF for Syntax Specifications: ABNF</title>
            <author fullname="D. Crocker" initials="D." role="editor" surname="Crocker"/>
            <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="RFC5890">
          <front>
            <title>Internationalized Domain Names for Applications (IDNA): Definitions and Document Framework</title>
            <author fullname="J. Klensin" initials="J." surname="Klensin"/>
            <date month="August" year="2010"/>
            <abstract>
              <t>This document is one of a collection that, together, describe the protocol and usage context for a revision of Internationalized Domain Names for Applications (IDNA), superseding the earlier version. It describes the document collection and provides definitions and other material that are common to the set. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="5890"/>
          <seriesInfo name="DOI" value="10.17487/RFC5890"/>
        </reference>
        <reference anchor="RFC6454">
          <front>
            <title>The Web Origin Concept</title>
            <author fullname="A. Barth" initials="A." surname="Barth"/>
            <date month="December" year="2011"/>
            <abstract>
              <t>This document defines the concept of an "origin", which is often used as the scope of authority or privilege by user agents. Typically, user agents isolate content retrieved from different origins to prevent malicious web site operators from interfering with the operation of benign web sites. In addition to outlining the principles that underlie the concept of origin, this document details how to determine the origin of a URI and how to serialize an origin into a string. It also defines an HTTP header field, named "Origin", that indicates which origins are associated with an HTTP request. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="RFC" value="6454"/>
          <seriesInfo name="DOI" value="10.17487/RFC6454"/>
        </reference>
        <reference anchor="RFC8126">
          <front>
            <title>Guidelines for Writing an IANA Considerations Section in RFCs</title>
            <author fullname="M. Cotton" initials="M." surname="Cotton"/>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <author fullname="T. Narten" initials="T." surname="Narten"/>
            <date month="June" year="2017"/>
            <abstract>
              <t>Many protocols make use of points of extensibility that use constants to identify various protocol parameters. To ensure that the values in these fields do not have conflicting uses and to promote interoperability, their allocations are often coordinated by a central record keeper. For IETF protocols, that role is filled by the Internet Assigned Numbers Authority (IANA).</t>
              <t>To make assignments in a given registry prudently, guidance describing the conditions under which new values should be assigned, as well as when and how modifications to existing values can be made, is needed. This document defines a framework for the documentation of these guidelines by specification authors, in order to assure that the provided guidance for the IANA Considerations is clear and addresses the various issues that are likely in the operation of a registry.</t>
              <t>This is the third edition of this document; it obsoletes RFC 5226.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="26"/>
          <seriesInfo name="RFC" value="8126"/>
          <seriesInfo name="DOI" value="10.17487/RFC8126"/>
        </reference>
        <reference anchor="RFC8174">
          <front>
            <title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
            <author fullname="B. Leiba" initials="B." surname="Leiba"/>
            <date month="May" year="2017"/>
            <abstract>
              <t>RFC 2119 specifies common key words that may be used in protocol specifications. This document aims to reduce the ambiguity by clarifying that only UPPERCASE usage of the key words have the defined special meanings.</t>
            </abstract>
          </front>
          <seriesInfo name="BCP" value="14"/>
          <seriesInfo name="RFC" value="8174"/>
          <seriesInfo name="DOI" value="10.17487/RFC8174"/>
        </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="USASCII">
          <front>
            <title>Coded Character Set -- 7-bit American Standard Code for Information Interchange</title>
            <author>
              <organization>American National Standards Institute</organization>
            </author>
            <date year="1986"/>
          </front>
          <seriesInfo name="ANSI" value="X3.4"/>
        </reference>
        <reference anchor="DOM-DOCUMENT-COOKIE" target="https://html.spec.whatwg.org/#dom-document-cookie">
          <front>
            <title>HTML - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date year="2021" month="May" day="18"/>
          </front>
        </reference>
        <reference anchor="SAMESITE" target="https://html.spec.whatwg.org/#same-site">
          <front>
            <title>HTML - Living Standard</title>
            <author>
              <organization>WHATWG</organization>
            </author>
            <date year="2021" month="January" day="26"/>
          </front>
        </reference>
      </references>
      <references anchor="sec-informative-references">
        <name>Informative References</name>
        <reference anchor="RFC3986">
          <front>
            <title>Uniform Resource Identifier (URI): Generic Syntax</title>
            <author fullname="T. Berners-Lee" initials="T." surname="Berners-Lee"/>
            <author fullname="R. Fielding" initials="R." surname="Fielding"/>
            <author fullname="L. Masinter" initials="L." surname="Masinter"/>
            <date month="January" year="2005"/>
            <abstract>
              <t>A Uniform Resource Identifier (URI) is a compact sequence of characters that identifies an abstract or physical resource. This specification defines the generic URI syntax and a process for resolving URI references that might be in relative form, along with guidelines and security considerations for the use of URIs on the Internet. The URI syntax defines a grammar that is a superset of all valid URIs, allowing an implementation to parse the common components of a URI reference without knowing the scheme-specific requirements of every possible identifier. This specification does not define a generative grammar for URIs; that task is performed by the individual specifications of each URI scheme. [STANDARDS-TRACK]</t>
            </abstract>
          </front>
          <seriesInfo name="STD" value="66"/>
          <seriesInfo name="RFC" value="3986"/>
          <seriesInfo name="DOI" value="10.17487/RFC3986"/>
        </reference>
        <reference anchor="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="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="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="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="Aggarwal2010" target="http://www.usenix.org/events/sec10/tech/full_papers/Aggarwal.pdf">
          <front>
            <title>An Analysis of Private Browsing Modes in Modern Browsers</title>
            <author initials="G." surname="Aggarwal">
              <organization/>
            </author>
            <author initials="E." surname="Burzstein">
              <organization/>
            </author>
            <author initials="C." surname="Jackson">
              <organization/>
            </author>
            <author initials="D." surname="Boneh">
              <organization/>
            </author>
            <date year="2010"/>
          </front>
        </reference>
        <reference anchor="app-isolation" target="http://www.collinjackson.com/research/papers/appisolation.pdf">
          <front>
            <title>App Isolation - Get the Security of Multiple Browsers with Just One</title>
            <author initials="E." surname="Chen" fullname="Eric Y. Chen">
              <organization/>
            </author>
            <author initials="J." surname="Bau" fullname="Jason Bau">
              <organization/>
            </author>
            <author initials="C." surname="Reis" fullname="Charles Reis">
              <organization/>
            </author>
            <author initials="A." surname="Barth" fullname="Adam Barth">
              <organization/>
            </author>
            <author initials="C." surname="Jackson" fullname="Collin Jackson">
              <organization/>
            </author>
            <date year="2011"/>
          </front>
        </reference>
        <reference anchor="FETCH" target="https://fetch.spec.whatwg.org/">
          <front>
            <title>Fetch Living Standard</title>
            <author initials="A." surname="van Kesteren" fullname="Anne van Kesteren">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
          <annotation>WHATWG</annotation>
        </reference>
        <reference anchor="HTML" target="https://html.spec.whatwg.org/">
          <front>
            <title>HTML Living Standard</title>
            <author initials="A." surname="van Kesteren" fullname="Anne van Kesteren">
              <organization/>
            </author>
            <author initials="D." surname="Denicola" fullname="Domenic Denicola">
              <organization/>
            </author>
            <author initials="D." surname="Farolino" fullname="Dominic Farolino">
              <organization/>
            </author>
            <author initials="I." surname="Hickson" fullname="Ian Hickson">
              <organization/>
            </author>
            <author initials="P." surname="Jägenstedt" fullname="Philip Jägenstedt">
              <organization/>
            </author>
            <author initials="S." surname="Pieters" fullname="Simon Pieters">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
          <annotation>WHATWG</annotation>
        </reference>
        <reference anchor="prerendering" target="https://www.chromium.org/developers/design-documents/prerender">
          <front>
            <title>Chrome Prerendering</title>
            <author initials="C." surname="Bentzel" fullname="Chris Bentzel">
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </reference>
        <reference anchor="PSL" target="https://publicsuffix.org/list/">
          <front>
            <title>Public Suffix List</title>
            <author>
              <organization/>
            </author>
            <date>n.d.</date>
          </front>
        </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="SERVICE-WORKERS" target="https://www.w3.org/TR/service-workers/">
          <front>
            <title>Service Workers</title>
            <author initials="J." surname="Archibald" fullname="Jake Archibald">
              <organization/>
            </author>
            <author initials="M." surname="Kruisselbrink" fullname="Marijn Kruisselbrink">
              <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>
    <?line 2507?>

<section anchor="changes-from-rfc-6265">
      <name>Changes from RFC 6265</name>
      <ul spacing="normal">
        <li>
          <t>Adds the same-site concept and the SameSite attribute.
(<xref target="same-site-requests"/> and <xref target="attribute-samesite"/>)</t>
        </li>
        <li>
          <t>Introduces cookie prefixes and prohibits nameless cookies from setting a
value that would mimic a cookie prefix. (<xref target="server-name-prefixes"/> and
<xref target="storage-model"/>)</t>
        </li>
        <li>
          <t>Prohibits non-secure origins from setting cookies with a <tt>Secure</tt> flag or
overwriting cookies with this flag. (<xref target="storage-model"/>)</t>
        </li>
        <li>
          <t>Limits maximum cookie size. (<xref target="storage-model"/>)</t>
        </li>
        <li>
          <t>Limits maximum values for max-age and expire. (<xref target="ua-attribute-expires"/> and <xref target="ua-attribute-max-age"/>)</t>
        </li>
        <li>
          <t>Includes the host-only-flag as part of a cookie's uniqueness computation.
(<xref target="storage-model"/>)</t>
        </li>
        <li>
          <t>Considers potentially trustworthy origins as "secure". (<xref target="storage-model"/>)</t>
        </li>
        <li>
          <t>Improves cookie syntax
          </t>
          <ul spacing="normal">
            <li>
              <t>Treats Set-Cookie: token as creating the cookie ("", "token").
(<xref target="set-cookie"/>)</t>
            </li>
            <li>
              <t>Rejects cookies without a name nor value. (<xref target="storage-model"/>)</t>
            </li>
            <li>
              <t>Specifies how to serialize a nameless/valueless cookie. (<xref target="retrieval-algorithm"/>)</t>
            </li>
            <li>
              <t>Adjusts ABNF for cookie-pair and the Cookie header production to allow
for spaces. (<xref target="abnf-syntax"/>)</t>
            </li>
            <li>
              <t>Explicitly handle control characters. (<xref target="set-cookie"/> and <xref target="storage-model"/>)</t>
            </li>
            <li>
              <t>Specifies how to handle empty domain attributes. (<xref target="storage-model"/>)</t>
            </li>
            <li>
              <t>Requires ASCII characters for the domain attribute. (<xref target="storage-model"/>)</t>
            </li>
          </ul>
        </li>
        <li>
          <t>Refactors cookie retrieval algorithm to support non-HTTP APIs. (<xref target="non-http"/>)</t>
        </li>
        <li>
          <t>Specifies that the Set-Cookie line should not be decoded. (<xref target="set-cookie"/>)</t>
        </li>
        <li>
          <t>Adds an advisory section to assist implementers in deciding which requirements
to implement. (<xref target="implementation-advisory"/>)</t>
        </li>
        <li>
          <t>Advises against sending invalid cookies due to public suffix list changes.
(<xref target="retrieval-algorithm"/>)</t>
        </li>
        <li>
          <t>Removes the single cookie header requirement. (<xref target="cookie"/>)</t>
        </li>
        <li>
          <t>Address errata 3444 by updating the path-value andextension-av grammar,
errata 4148 by updating the day-of-month, year, and time grammar, and errata
3663 by adding the requested note. (<xref target="sane-set-cookie"/> and <xref target="cookie-path"/>)</t>
        </li>
      </ul>
    </section>
    <section numbered="false" anchor="acknowledgements">
      <name>Acknowledgements</name>
      <t>RFC 6265 was written by Adam Barth. This document is an update of RFC 6265,
adding features and aligning the specification with the reality of today's
deployments. Here, we're standing upon the shoulders of a giant since the
majority of the text is still Adam's.</t>
      <t>Thank you to both Lily Chen and Steven Englehardt, editors emeritus, for their
significant contributions improving this draft.</t>
    </section>
  </back>
  <!-- ##markdown-source:
H4sIAAAAAAAAA9y963LbSJYw+D+fAkHHrKUKkpbkS9mucX+jkuWyun37LHlq
JiYmWiAJSmiTABsAJbMcNU/zvcm+2J5r5kkAlGW7ajdiK6LbIgnk5eTJc7+M
RiPX5M0ie5oMjsryY57VT5OXZ2fvktMmbbLkdVqkF9kyK5rkdTa9TIu8Xg7c
rJwW6RLemVXpvBnlWTMfXTbNapLXo2o+fXTw6CH+ebDv6vVkmdd1XhbNZgUv
nByfvXAzGPlp8vn54dnx724KHy7KavM0qZuZKyd1ucgaXAWO4ly+qp4mqyp7
eP/Hx2fVum4O9vae7B24tMrSp8nharXIYQQYv07SYpa8z9LF6CxfZu66rD5e
VOV6xftxq/xp8l9NOR0m8H95MYMtDZO6rJoqm9fw12YpfzRVPoWfpuVylcof
uH/4KS8WeZH9t6sbmOrv6aIsYBubrE7u/N3Vy7Rq/v7PdUlrL0rnrrJinT11
SWJXkSQMh19hdXlxkfyCv8G3lyWCE2FYP713D/+9vhiX1cU9+G2Z5ouniQfy
6Pri367v44/wW1pNL8N7i7xu6jH/eO8Qfsqvsvreu/UEgHTPDoDDVtmqDK9e
5M3lejKGzcrs9M8o+9RkBR5ffW+RTrJFfU8O1/ELIzjcdTai3/jI8DeXrpvL
snrqRjBPXgBATsfJz7DfRVbBN4w7p00GIDJfVyWiYTbLmxI/ZrzvCf/+b9PL
qlzm6yVt3I/7epz8mtWNH/R1/jHTb1rjwXuAvr8RsjxNfilLGDZ59eooTLX8
eF03/3ZBvyAk4Jd1lQcYLWHwaxibD8av4a+whnwBKGE299fysrDf3rgWxOJs
mJwU07CWa3n331L8kVbjirJawitXhFXvXxzt791/oH/uH9yXPw/295/Inw9+
fLInfz488M8+fOy/ffTgoX77eP/gkf/zR/32yf4+PQv/zfJ6tUg3HpE/nB6e
Hp2c8K+BhsyyWXJ0mVZwd7IqOc2aZDRKfhxN8iY5XGZwt9ICaUsxSyt4EB5P
5mUFe5/z5soC/oY3kdZcZAMavIbXsjqHR2QpyeGb05OnyX/cHz+gL5ig7D95
/Ig+Kvbxsy1Y6xre0Bfpwi+mholr2Me6yeDN529fj56/Pfrw+vjN2ejo7du/
nRzLTtPqImvsXV0uxvUqm46vL9NGbu2dWbkcAZVcI+UYTYmwWji9PHv9Khkl
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
W5d6to1R/zQKQbxL+RaWetBCq7WtWtd5xToa0TfbNaApCEIQm7W+fK3tzvIB
v6dugHf+zfBrOVbUXu2De7hSvVf4NbPla4bSZe/+/+ksFD43OJFus8d5uqi/
ZpO8o6bfpx2c6H8wMoirt+UgI38ad/QII22JaPjew6B6DGnRfbezyG22bVZi
9H2mwqyimZAoE6bZsiZa93AIumVvcz5PfGhSHoohaVNcNJ6wcdVzHcme03Eo
VbRpOChyGzp9CeTMgH1s6uOACZ03TBxLWFNc1T45enn4XviMxFN8Ha95YqL3
bfQlFbDIL9YVR7dwTl4yWK0nC2xRTW1NkO7YAOfOBrikv33FAGrbrvFotHuC
Z0q2g4s/D5XnUJoMqsK3nIK+2j5QHe42eWdd2OLbpqYpqV9SrKVOzrW2ixY4
OGcxdZbX1XqlPZ85mIgKg2tFWlsU4ZwK92RNY4NM1YrVbqFN109epFa2e+Ob
DgFDpwhM3TOLG+rYYwgsyDYR8hjShyV/GKhvOsAOwY41kDaN30rnQ0hJH9i+
hst0F/AlRhrPvf0M8GhDM9M/kL9IfEndYZjUbaOPtfsQL2oT8q2cZNtSbuQh
Ee+gYbbwDyOfbd2Zp3Ct/kNqjRWtEiF/8GdA3gd6dFbY1pwDIkWYeMs39Q7s
h6akVmkOl5taYJJ1hVeG2yokI7rb7IMzDjx72W1ns/WtRkxAkn6pilRWa+qH
Nlm9kSzsP/gzTsPEo3SgGtstbn8a3ff8WTxs7YFsut44ILaNgab+DzD3vwNf
mr81h4fw7bXUdvLi/qPW2racJO0lnHofTsn92o5XLUy4YbEm8t8vNta92BIW
Tp+MkJV62MQtRJ79TCJA0t52cNJSJ06ryitW0m18j+IO/Z1dA2jUri2JIYHu
8wjb7sPYNw2WB4UrtHr2Be5006y2N2mCtWVHVGF87Dvxkl3UEru+UeJ2W038
hh/ex19EGw4lGnxHq7TK67LwZYI3yyWadKdDOMp6TVFS7DwhgZ8GiRY1JMFF
il5paoh3hMP+Fukm0TpzHA9CZaUCzgxNyAcXRWRHK9I2dZkLNQGJliQvdtIH
xx6Nxm3HulPpqhAnZsnd9K4KbAq2u/cW5UVe3B3q/jobCq9OtfqX+tDsMNjE
Av6Zl+XduK1a+0Gej5+mv+9lxV283z/+KdwsBLltj3DyIV8aiyWoKnFnPfws
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
j9UlcpQS/tWrqCjyZ/xqP6JQr2HpgdwCd2yk4toF+W55fIWTOQzhlU86Q33+
YTi0Ct6gUPpgBIvd42foqiGcsNcS/s0QbtGV8QU68p8eC4BR8vF0eOr1i08v
41uDxqVmVeL3mY6qe4Z1FNenJVIpD0lp59o3/Hno56o6/ww09C0uhI47SsSj
BOe9kwgVAk9tnULLiiMqiC4gxtzbSpaHpUD2peIr5vjfFrQds0etd/CkXJ/J
oN2M9q39tXT3vIe1bhR4lW7NproP6bHLqIXfSpPQcrHz6gE5JCi0I8oMsj0+
WA7KHhO6FzNLKbbhH2aO3d/fr3HO1m13+bTokUtA39FT9bbmilliW/xLNcMP
SEMvITbCi4K9yTE/GgpZJ7FOQOMqtkIvitscEKKDCvmI57hF4uo3ljGxvfJF
irUJcc2DVzBwyY8GYnB1PzjA/QDQf+fjy+PFR/Vz7wDeqdZG1rlZ7y/YR4EB
+OlnwADIPuUpyPhuwQQEY2dCUYaYxwIRvSo+nwbtOjFoE1ucNRepCcl64XrH
DGgndrV6faNi775xHH/eHENcI4hljV8MfB5XXvxtVTfJTt6gI/in+zYPEWQI
hU0eP60LSnBwgyVb/OWjo7QqCt/hHG8b6cXsoo5+zwjiE2XPV5Fw+PM1DmYH
5Pt/voavq/Tn8C+rH/wTX7P8MIzma8Ul4T1aJBO8bo4m+GqRlKPXBNSrn30P
r0FQv4eJMnwNnAnLZe49vPY2KhhHUXCOXruB3nFZPToas4oXk7Uh+3d+ZfJa
Cl0MX4OvAsrTY5PU6uLxaFZ1P0/JELchMuX5NTSLY8W0p1MLfIsgBltHHZWl
ls+5OE2jed3iM0mzTkOvw958p3Tt1j23tH0O91oNnoTNpFmmGhaKguiqPoNP
Cvy08VUbnHqv2SHAhkafMvKbuGtu6hsADw8/u5YLjTEkfHFlo8lUw6SHqszy
Q55GFDyKOSCemNFEvFOT1iSfPV0QorDtgi+bGDwrWITxKZni3Cykg1nqeWWl
FVEi/fA7Lk6rR1raPZCZ+JW7YjXHZLKPgx8TT9hO0nKSwzPqRIw+V0W39eXM
qDtl1lIjm4rO4Jrj/thaTBPuB1BUTMBnStJD2pKiT11gHyXNa8GZTedObowg
jYwhQT0656H6dqw58Chdem9nJxonfAT96BZTtYmf/cgGv/1g4+GvKuQyb9gP
Bm30ZufMT6jyBtBBXN9t7uyjXwGPPOVXHLfwg7Pt0/WzR+Xvd3BcHP327qWD
pIwCrO4S3w9T+G+zo8Ii02Ehub5Q2HqOObiLdawX2fMiLTSyFpca/a3HFNQD
+INE0e+yXaE1os7a4+PkVe0l0uHk+PVr33jQMhvGH3uc8+KNWkiWqx6S3AE1
t0R3CMyDUjt+Fv+D+8q+mJeZIivOokGM2pQAeD7OiP3ZIso2o8WbpGcDnWjz
tsRmy9vZ9+xHaT46RWxE0LgUBKGaemmunwwC3SyPc8RhE5CVDZOHj/+uskVu
Ubu6iSSqs1tBHTEzzby1MQsFxiOHWzbihnwuAQ8iFZwPTrJbxnpkNAqZmCNQ
dR2Scp4dHBzATqeNZ2KA7bPlBoonz6uoC3Y0K7pl0PcPfjr4++T9snhYtRfx
/DTbq+XioSo0P4C4zfYFkdT8Snj2/PkzydBK8btsbiFTRva8aKrVDBcl5oZ2
ApNucXQO/L9o9Vzqbn45lFSAqvznDtF0d74F0xN8S1dM4qgsbha/Rfl+ZbFo
FweGT0z6skq2BL+wDDrx1CJIumc5+KShGepUWUWQRHA6km0XmQzWrQVInBWA
Ke6rXab1am54KlEQ9mCTqgtWRBfsXWGR7Zvid63uF8cZbT+YxPSAYZm7xByN
5+568dDe0VpBUdgbeJ2OpSFVuTjZMufhBY5alCAlknzLmqIgUjcOcKe5RVsp
+nToo5SEECzU1AUKXSgCsnbFxXYd/g8TCV1yG7IBAA==

-->

</rfc>
