| HTTP Working Group | L. Chen, Editor |
| Internet-Draft | Google LLC |
| Obsoletes:6265 (if approved) | S. Englehardt, Editor |
| Intended status: Standards Track | Mozilla |
| Expires: December 4, 2021 | M. West, Editor |
| Google LLC | |
| J. Wilander, Editor | |
| Apple, Inc | |
| June 2, 2021 |
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.¶
Discussion of this draft takes place on the HTTP working group mailing list (ietf-http-wg@w3.org), which is archived athttps://lists.w3.org/Archives/Public/ietf-http-wg/.¶
Working Group information can be found athttp://httpwg.github.io/; source code and issues list for this draft can be found athttps://github.com/httpwg/http-extensions/labels/6265bis.¶
This Internet-Draft is submitted in full conformance with the provisions of BCP 78 and BCP 79.¶
Internet-Drafts are working documents of the Internet Engineering Task Force (IETF). Note that other groups may also distribute working documents as Internet-Drafts. The list of current Internet-Drafts is athttps://datatracker.ietf.org/drafts/current/.¶
Internet-Drafts are draft documents valid for a maximum of six months and may be updated, replaced, or obsoleted by other documents at any time. It is inappropriate to use Internet-Drafts as reference material or to cite them other than as “work in progress”.¶
This Internet-Draft will expire on December 4, 2021.¶
Copyright (c) 2021 IETF Trust and the persons identified as the document authors. All rights reserved.¶
This document is subject to BCP 78 and the IETF Trust's Legal Provisions Relating to IETF Documents (https://trustee.ietf.org/license-info) in effect on the date of publication of this document. Please review these documents carefully, as they describe your rights and restrictions with respect to this document. Code Components extracted from this document must include Simplified BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Simplified BSD License.¶
This document may contain material from IETF Documents or IETF Contributions published or made publicly available before November 10, 2008. The person(s) controlling the copyright in some of this material may not have granted the IETF Trust the right to allow modifications of such material outside the IETF Standards Process. Without obtaining an adequate license from the person(s) controlling the copyright in such materials, this document may not be modified outside the IETF Standards Process, and derivative works of it may not be created outside the IETF Standards Process, except to format it for publication as an RFC or to translate it into languages other than English.¶
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.¶
Although simple on their surface, cookies have a number of complexities. For example, the server indicates a scope for each cookie when sending it to the user agent. The scope indicates the maximum amount of time in which the user agent should return the cookie, the servers to which the user agent should return the cookie, and the URI schemes for which the cookie is applicable.¶
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.¶
There are two audiences for this specification: developers of cookie-generating servers and developers of cookie-consuming user agents.¶
To maximize interoperability with user agents, servers SHOULD limit themselves to the well-behaved profile defined inSection 4 when generating cookies.¶
User agents MUST implement the more liberal processing rules defined inSection 5, in order to maximize interoperability with existing servers that do not conform to the well-behaved profile defined inSection 4.¶
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 inSection 4 represent a preferred subset of current server behavior, and even the more liberal cookie processing algorithm provided inSection 5 does not recommend all of the syntactic and semantic variations in use today. Where some existing software differs from the recommended protocol in significant ways, the document contains a note explaining the difference.¶
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this document are to be interpreted as described in[RFC2119].¶
Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("MUST", "SHOULD", "MAY", etc.) used in introducing the algorithm.¶
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.¶
The following core rules are included by reference, as defined in[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[USASCII] character), VCHAR (any visible[USASCII] character), and WSP (whitespace).¶
The OWS (optional whitespace) and BWS (bad whitespace) rules are defined inSection 5.6.3 of[HTTPSEM].¶
The terms "user agent", "client", "server", "proxy", and "origin server" have the same meaning as in the HTTP/1.1 specification ([HTTPSEM],Section 3).¶
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).¶
The term request-uri refers to "target URI" as defined inSection 7.1 of[HTTPSEM].¶
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[RFC4790].¶
The term string means a sequence of non-NUL octets.¶
The terms "active document", "ancestor browsing context", "browsing context", "dedicated worker", "Document", "nested browsing context", "opaque origin", "parent browsing context", "sandboxed origin browsing context flag", "shared worker", "the worker's Documents", "top-level browsing context", and "WorkerGlobalScope" are defined in[HTML].¶
"Service Workers" are defined in the Service Workers specification[SERVICE-WORKERS].¶
The term "origin", the mechanism of deriving an origin from a URI, and the "the same" matching algorithm for origins are defined in[RFC6454].¶
"Safe" HTTP methods includeGET,HEAD,OPTIONS, andTRACE, as defined inSection 9.2.1 of[HTTPSEM].¶
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, forhttps://www.site.example, the public suffix isexample, and the registrable domain issite.example. Whenever possible, user agents SHOULD use an up-to-date public suffix list, such as the one maintained by the Mozilla project at[PSL].¶
The term "request", as well as a request's "client", "current url", "method", "target browsing context", and "url list", are defined in[FETCH].¶
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.¶
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.¶
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.¶
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.¶
Origin servers SHOULD NOT fold multiple Set-Cookie header fields into a single header field. The usual mechanism for folding HTTP headers fields (i.e., as defined inSection 5.3 of[HTTPSEM]) might change the semantics of the Set-Cookie header field because the %x2C (",") character is used by Set-Cookie in a way that conflicts with such folding.¶
User agents MAY ignore Set-Cookie header fieldss based on response status codes or the user agent's cookie policy (seeSection 5.3).¶
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.¶
== Server -> User Agent ==Set-Cookie: SID=31d4d96e407aad42== User Agent -> Server ==Cookie: SID=31d4d96e407aad42
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.¶
== Server -> User Agent ==Set-Cookie: SID=31d4d96e407aad42; Path=/; Domain=site.example== User Agent -> Server ==Cookie: SID=31d4d96e407aad42
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 (seeSection 4.1.2).¶
== Server -> User Agent ==Set-Cookie: SID=31d4d96e407aad42; Path=/; Secure; HttpOnlySet-Cookie: lang=en-US; Path=/; Domain=site.example== User Agent -> Server ==Cookie: SID=31d4d96e407aad42; lang=en-US
Notice that the Cookie header field above contains two cookies, one named SID and one named lang. If the server wishes the user agent to persist the cookie over multiple "sessions" (e.g., user agent restarts), the server can specify an expiration date in the Expires attribute. Note that the user agent might delete the cookie before the expiration date if the user agent's cookie store exceeds its quota or if the user manually deletes the server's cookie.¶
== 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
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.¶
== Server -> User Agent ==Set-Cookie: lang=; Expires=Sun, 06 Nov 1994 08:49:37 GMT== User Agent -> Server ==Cookie: SID=31d4d96e407aad42
This section describes the syntax and semantics of a well-behaved profile of the Cookie and Set-Cookie header fields.¶
The Set-Cookie HTTP response header field is used to send cookies from the server to the user agent.¶
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 SHOULD NOT send Set-Cookie header fields that fail to conform to the following grammar:¶
set-cookie = set-cookie-stringset-cookie-string = BWS cookie-pair *( BWS ";" OWS cookie-av )cookie-pair = cookie-name BWS "=" BWS cookie-valuecookie-name = 1*cookie-octetcookie-value = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE )cookie-octet = %x21 / %x23-2B / %x2D-3A / %x3C-5B / %x5D-7E / %x80-FF ; octets excluding CTLs, ; whitespace DQUOTE, comma, semicolon, ; and backslashcookie-av = expires-av / max-age-av / domain-av / path-av / secure-av / httponly-av / samesite-av / extension-avexpires-av = "Expires" BWS "=" BWS sane-cookie-datesane-cookie-date = <IMF-fixdate, defined in[HTTPSEM],Section 5.6.7>max-age-av = "Max-Age" BWS "=" BWS non-zero-digit *DIGIT ; In practice, both expires-av and max-age-av ; are limited to dates representable by the ; user agent.non-zero-digit = %x31-39 ; digits 1 through 9domain-av = "Domain" BWS "=" BWS domain-valuedomain-value = <subdomain> ; defined in[RFC1034],Section 3.5, as ; enhanced by[RFC1123],Section 2.1path-av = "Path" BWS "=" BWS path-valuepath-value = *av-octetsecure-av = "Secure"httponly-av = "HttpOnly"samesite-av = "SameSite" BWS "=" BWS samesite-valuesamesite-value = "Strict" / "Lax" / "None"extension-av = *av-octetav-octet = %x20-3A / %x3C-7E ; any CHAR except CTLs or ";"
Note that some of the grammatical terms above reference documents that use different grammatical notations than this document (which uses ABNF from[RFC5234]).¶
The semantics of the cookie-value are not defined by this document.¶
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[RFC4648].¶
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.¶
The portions of the set-cookie-string produced by the cookie-av term are known as attributes. To maximize compatibility with user agents, servers SHOULD NOT produce two attributes with the same name in the same set-cookie-string. (SeeSection 5.5 for how user agents handle this case.)¶
Servers SHOULD NOT include more than one Set-Cookie header field in the same response with the same cookie-name. (SeeSection 5.4 for how user agents handle this case.)¶
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.¶
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.¶
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.¶
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 inSection 5.¶
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.¶
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.¶
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).¶
The Expires attribute indicates the maximum lifetime of the cookie, represented as the date and time at which the cookie expires. The user agent is not required to retain the cookie until the specified date has passed. In fact, user agents often evict cookies due to memory pressure or privacy concerns.¶
The Max-Age attribute indicates the maximum lifetime of the cookie, represented as the number of seconds until the cookie expires. The user agent is not required to retain the cookie for the specified duration. In fact, user agents often evict cookies due to memory pressure or privacy concerns.¶
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.¶
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).¶
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, but a trailing %x2E ("."), if present, will cause the user agent to ignore the attribute.) If the server omits the Domain attribute, the user agent will return the cookie only to the origin server.¶
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.¶
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".¶
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". (SeeSection 5.5 for more information.)¶
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. (SeeSection 5.1.4 for more details.)¶
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.¶
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)[RFC2818]).¶
Although seemingly useful for protecting cookies from active network attackers, the Secure attribute protects only the cookie's confidentiality. An active network attacker can overwrite Secure cookies from an insecure channel, disrupting their integrity (seeSection 8.6 for more details).¶
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.¶
Note that the HttpOnly attribute is independent of the Secure attribute: a cookie can have both the HttpOnly and the Secure attribute.¶
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 inSection 5.2. For example, requests forhttps://site.example/sekrit-image 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.¶
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 inSection 5.4.7.1. 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".¶
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.¶
Section 8.5 andSection 8.6 of this document spell out some of the drawbacks of cookies' historical implementation. In particular, it is impossible for a server to have confidence that a given cookie was set with a particular set of attributes. In order to provide such confidence in a backwards-compatible way, two common sets of requirements can be inferred from the first few characters of the cookie's name.¶
The normative requirements for the prefixes described below are detailed in the storage model algorithm defined inSection 5.5.¶
If a cookie's name begins with a case-sensitive match for the string__Secure-, then the cookie will have been set with aSecure attribute.¶
For example, the followingSet-Cookie header field would be rejected by a conformant user agent, as it does not have aSecure attribute.¶
Set-Cookie: __Secure-SID=12345; Domain=site.example
Whereas the followingSet-Cookie header field would be accepted:¶
Set-Cookie: __Secure-SID=12345; Domain=site.example; Secure
If a cookie's name begins with a case-sensitive match for the string__Host-, then the cookie will have been set with aSecure attribute, aPath attribute with a value of/, and noDomain attribute.¶
This combination yields a cookie that hews as closely as a cookie can to treating the origin as a security boundary. The lack of aDomain attribute ensures that the cookie'shost-only-flag is true, locking the cookie to a particular host, rather than allowing it to span subdomains. Setting thePath to/ means that the cookie is effective for the entire host, and won't be overridden for specific paths. TheSecure attribute ensures that the cookie is unaltered by non-secure origins, and won't span protocols.¶
Ports are the only piece of the origin model that__Host- cookies continue to ignore.¶
For example, the following cookies would always be rejected:¶
Set-Cookie: __Host-SID=12345Set-Cookie: __Host-SID=12345; SecureSet-Cookie: __Host-SID=12345; Domain=site.exampleSet-Cookie: __Host-SID=12345; Domain=site.example; Path=/Set-Cookie: __Host-SID=12345; Secure; Domain=site.example; Path=/
While the following would be accepted if set from a secure origin (e.g. "https://site.example/"), and rejected otherwise:¶
Set-Cookie: __Host-SID=12345; Secure; Path=/
The user agent sends stored cookies to the origin server in the Cookie header field. If the server conforms to the requirements inSection 4.1 (and the user agent conforms to the requirements inSection 5), the user agent will send a Cookie header field that conforms to the following grammar:¶
cookie = cookie-stringcookie-string = cookie-pair *( ";" SP cookie-pair )
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.¶
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.¶
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.¶
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.¶
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 inSection 4).¶
A user agent could enforce more restrictions than those specified herein (e.g., restrictions specified by its cookie policy, described inSection 7.2). However, such additional restrictions may reduce the likelihood that a user agent will be able to interoperate with existing servers.¶
This section defines some algorithms used by user agents to process specific subcomponents of the Cookie and Set-Cookie header fields.¶
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".¶
cookie-date = *delimiter date-token-list *delimiterdate-token-list = date-token *( 1*delimiter date-token )date-token = 1*non-delimiterdelimiter = %x09 / %x20-2F / %x3B-40 / %x5B-60 / %x7B-7Enon-delimiter = %x00-08 / %x0A-1F / DIGIT / ":" / ALPHA / %x7F-FFnon-digit = %x00-2F / %x3A-FFday-of-month = 1*2DIGIT [ non-digit *OCTET ]month = ( "jan" / "feb" / "mar" / "apr" / "may" / "jun" / "jul" / "aug" / "sep" / "oct" / "nov" / "dec" ) *OCTETyear = 2*4DIGIT [ non-digit *OCTET ]time = hms-time [ non-digit *OCTET ]hms-time = time-field ":" time-field ":" time-fieldtime-field = 1*2DIGIT
A canonicalized host name is the string generated by the following algorithm:¶
A string domain-matches a given domain string if at least one of the following conditions hold:¶
The user agent MUST use an algorithm equivalent to the following algorithm to compute the default-path of a cookie:¶
A request-path path-matches a given cookie-path if at least one of the following conditions holds:¶
Two origins are same-site if they satisfy the "same site" criteria defined in[SAMESITE]. A request is "same-site" if the following criteria are true:¶
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".¶
The request's client's "site for cookies" is calculated depending upon its client's type, as described in the following subsections:¶
The URI displayed in a user agent's address bar is the only security context directly exposed to users, and therefore the only signal users can reasonably rely upon to determine whether or not they trust a particular website. The origin of that URI represents the context in which a user most likely believes themselves to be interacting. We'll define this origin, the top-level browsing context's active document's origin, as the "top-level origin".¶
For a document displayed in a top-level browsing context, we can stop here: the document's "site for cookies" is the top-level origin.¶
For documents which are displayed in nested browsing contexts, we need to audit the origins of each of a document's ancestor browsing contexts' active documents in order to account for the "multiple-nested scenarios" described inSection 4 of[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.¶
Given a Document (document), the following algorithm returns its "site for cookies":¶
Worker-driven requests aren't as clear-cut as document-driven requests, as there isn't a clear link between a top-level browsing context and a worker. This is especially true for Service Workers[SERVICE-WORKERS], which may execute code in the background, without any document visible at all.¶
Note: The descriptions below assume that workers must be same-origin with the documents that instantiate them. If this invariant changes, we'll need to take the worker's script's URI into account when determining their status.¶
Dedicated workers are simple, as each dedicated worker is bound to one and only one document. Requests generated from a dedicated worker (viaimportScripts,XMLHttpRequest,fetch(), etc) define their "site for cookies" as that document's "site for cookies".¶
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.¶
Given a WorkerGlobalScope (worker), the following algorithm returns its "site for cookies":¶
Service Workers are more complicated, as they act as a completely separate execution context with only tangential relationship to the Document which registered them.¶
Requests which simply pass through a Service Worker will be handled as described above: the request's client will be the Document or Worker which initiated the request, and its "site for cookies" will be those defined inSection 5.2.1 andSection 5.2.2.1¶
Requests which are initiated by the Service Worker itself (via a direct call tofetch(), for instance), on the other hand, will have a client which is a ServiceWorkerGlobalScope. Its "site for cookies" will be the Service Worker's URI's origin.¶
Given a ServiceWorkerGlobalScope (worker), the following algorithm returns its "site for cookies":¶
User agents MAY ignore Set-Cookie header fields contained in responses with 100-level status codes or based on its cookie policy (seeSection 7.2).¶
All other Set-Cookie header fields SHOULD be processed according toSection 5.4. 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.¶
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 (seeSection 5.3).¶
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).¶
NOTE: The algorithm below is more permissive than the grammar inSection 4.1. For example, the algorithm strips leading and trailing whitespace from the cookie name and value (but maintains internal whitespace), whereas the grammar inSection 4.1 forbids whitespace in these positions. In addition, the algorithm below accommodates some characters that are not cookie-octets according to the grammar inSection 4.1. User agents use this algorithm so as to interoperate with servers that do not follow the recommendations inSection 4.¶
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.¶
A user agent MUST use an algorithm equivalent to the following algorithm to parse a set-cookie-string:¶
The user agent MUST use an algorithm equivalent to the following algorithm to parse the unparsed-attributes:¶
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. (SeeSection 5.5 for additional requirements triggered by receiving a cookie.)¶
If the attribute-name case-insensitively matches the string "Expires", the user agent MUST process the cookie-av as follows.¶
If the attribute-name case-insensitively matches the string "Max-Age", the user agent MUST process the cookie-av as follows.¶
If the attribute-name case-insensitively matches the string "Domain", the user agent MUST process the cookie-av as follows.¶
If the attribute-name case-insensitively matches the string "Path", the user agent MUST process the cookie-av as follows.¶
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.¶
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.¶
If the attribute-name case-insensitively matches the string "SameSite", the user agent MUST process the cookie-av as follows:¶
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 inSection 8.8.2, 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 theSameSite 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[HTTPSEM] sense) HTTP method. (Note that a request's method may be changed from POST to GET for some redirects (see Sections15.4.2 and15.4.3 of[HTTPSEM]); in these cases, a request's "safe"ness is determined based on the method of the current redirect hop.)¶
Lax enforcement provides reasonable defense in depth against CSRF attacks that rely on unsafe HTTP methods (likePOST), but does not offer a robust defense against CSRF as a general category of attack:¶
When possible, developers should use a session management mechanism such as that described inSection 8.8.2 to mitigate the risk of CSRF more completely.¶
As discussed inSection 8.8.6, 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 theSameSite enforcement step of the retrieval algorithm inSection 5.6.3. (All cookies, regardless ofSameSite enforcement mode, may be set for top-level navigations, regardless of HTTP request method, as specified inSection 5.5.)¶
"Lax-allowing-unsafe" is not a distinct value of theSameSite attribute. Rather, user agents MAY apply "Lax-allowing-unsafe" enforcement only to cookies that did not explicitly specify aSameSite 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.¶
If the user agent uses "Lax-allowing-unsafe" enforcement, it MUST apply the following modification to the retrieval algorithm defined inSection 5.6.3:¶
Replace the condition in the penultimate bullet point of step 1 of the retrieval algorithm reading¶
* The HTTP request associated with the retrieval uses a "safe" method.
with¶
* 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.
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.¶
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:¶
A cookie is "expired" if the cookie has an expiry date in the past.¶
The user agent MUST evict all expired cookies from the cookie store if, at any time, an expired cookie exists in the cookie store.¶
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).¶
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).¶
When the user agent removes excess cookies from the cookie store, the user agent MUST evict cookies in the following priority order:¶
If two cookies have the same removal priority, the user agent MUST evict the cookie with the earliest last-access-time first.¶
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.¶
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.¶
The user agent includes stored cookies in the Cookie HTTP request header field.¶
When the user agent generates an HTTP request, the user agent MUST NOT attach more than one Cookie header field.¶
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 from setting cookies (seeSection 7.1).¶
If the user agent does attach a Cookie header field to an HTTP request, the user agent MUST compute the cookie-string following the algorithm defined inSection 5.6.3, where the retrieval's URI is the request-uri, the retrieval's same-site status is computed for the HTTP request as defined inSection 5.2, and the retrieval's type is "HTTP".¶
The user agent MAY implement "non-HTTP" APIs that can be used to access stored cookies.¶
A user agent MAY return an empty cookie-string in certain contexts, such as when a retrieval occurs within a third-party context (seeSection 7.1).¶
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 inSection 5.6.3, where the retrieval's URI is defined by the caller (see[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 inSection 5.2.1 (otherwise it is "cross-site"), and the retrieval's type is "non-HTTP".¶
Given a cookie store and a retrieval, the following algorithm returns a cookie-string from a given cookie store.¶
NOTE: Despite its name, the cookie-string is actually a sequence of octets, not a sequence of characters. To convert the cookie-string (or components thereof) into a sequence of characters (e.g., for presentation to the user), the user agent might wish to try using the UTF-8 character encoding[RFC3629] to decode the octet sequence. This decoding might fail, however, because not every sequence of octets is valid UTF-8.¶
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:¶
Servers SHOULD use as few and as small cookies as possible to avoid reaching these implementation limits and to minimize network bandwidth due to the Cookie header field being included in every request.¶
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 on orders from the user.¶
One reason the Cookie and Set-Cookie header fields use such esoteric syntax is that many platforms (both in servers and user agents) provide a string-based application programming interface (API) to cookies, requiring application-layer programmers to generate and parse the syntax used by the Cookie and Set-Cookie header fields, which many programmers have done incorrectly, resulting in interoperability problems.¶
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.¶
IDNA2008[RFC5890] supersedes IDNA2003[RFC3490]. However, there are differences between the two specifications, and thus there can be differences in processing (e.g., converting) domain name labels that have been registered under one from those registered under the other. There will be a transition period of some time during which IDNA2003-based domain name labels will exist in the wild. User agents SHOULD implement IDNA2008[RFC5890] and MAY implement[UTS46] or[RFC5895] in order to facilitate their IDNA transition. If a user agent does not implement IDNA2008, the user agent MUST implement IDNA2003[RFC3490].¶
Cookies are often criticized for letting servers track users. For example, a number of "web analytics" companies use cookies to recognize when a user returns to a web site or visits another web site. Although cookies are not the only mechanism servers can use to track users across HTTP requests, cookies facilitate tracking because they are persistent across user agent sessions and can be shared between hosts.¶
Particularly worrisome are so-called "third-party" cookies. In rendering an HTML document, a user agent often requests resources from other servers (such as advertising networks). These third-party servers can use cookies to track the user even if the user never visits the server directly. For example, if a user visits a site that contains content from a third party and then later visits another site that contains content from the same third party, the third party can track the user between the two sites.¶
Given this risk to user privacy, some user agents restrict how third-party cookies behave, and those restrictions vary widly. For instance, user agents might block third-party cookies entirely by refusing to send Cookie header fields or process Set-Cookie header fields during third-party requests. They might take a less draconian approach by partitioning cookies based on the first-party context, sending one set of cookies to a given third party in one first-party context, and another to the same third party in another.¶
This document grants user agents wide latitude to experiment with third-party cookie policies that balance the privacy and compatibility needs of their users. However, this document does not endorse any particular third-party cookie policy.¶
Third-party cookie blocking policies are often ineffective at achieving their privacy goals if servers attempt to work around their restrictions to track users. In particular, two collaborating servers can often track users without using cookies at all by injecting identifying information into dynamic URLs.¶
User agents MAY enforce a cookie policy consisting of restrictions on how cookies may be used or ignored (seeSection 5.3).¶
A cookie policy may govern which domains or parties, as in first and third parties (seeSection 7.1), for which the user agent will allow cookie access. The policy can also define limits on cookie size, cookie expiry, and the number of cookies per domain or in total.¶
The goal of a restrictive cookie policy is often to improve security or privacy. User agents often allow users to change the cookie policy (seeSection 7.3).¶
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.¶
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.¶
User agents MAY offer a way to change the cookie policy (seeSection 7.2).¶
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[Aggarwal2010].¶
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.¶
Cookies have a number of security pitfalls. This section overviews a few of the more salient issues.¶
In particular, cookies encourage developers to rely on ambient authority for authentication, often becoming vulnerable to attacks such as cross-site request forgery[CSRF]. Also, when storing session identifiers in cookies, developers often create session fixation vulnerabilities.¶
Transport-layer encryption, such as that employed in HTTPS, is insufficient to prevent a network attacker from obtaining or altering a victim's cookies because the cookie protocol itself has various vulnerabilities (see "Weak Confidentiality" and "Weak Integrity", below). In addition, by default, cookies do not provide confidentiality or integrity from network attackers, even when used in conjunction with HTTPS.¶
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.¶
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.¶
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.¶
Unless sent over a secure channel (such as TLS), the information in the Cookie and Set-Cookie header fields is transmitted in the clear.¶
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.¶
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 (seeSection 4.1.2.5) for every cookie. If a server does not set the Secure attribute, the protection provided by the secure channel will be largely moot.¶
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.¶
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.¶
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.¶
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.¶
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.¶
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).¶
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.¶
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.¶
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.¶
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.¶
Servers can partially mitigate these attacks by encrypting and signing the contents of their cookies. However, using cryptography does not mitigate the issue completely because an attacker can replay a cookie he or she received from the authentic site.example server in the user's session, with unpredictable results.¶
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.¶
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.¶
"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.¶
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.¶
Additionally, client-side techniques such as those described in[app-isolation] may also prove effective against CSRF, and are certainly worth exploring in combination with "SameSite" cookies.¶
Setting theSameSite 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.¶
Consider the scenario in which a user reads their email at MegaCorp Inc's webmail providerhttps://site.example/. They might expect that clicking on an emailed link tohttps://projects.example/secret/project would show them the secret project that they're authorized to see, but ifhttps://projects.example has marked their session cookies asSameSite=Strict, then this cross-site navigation won't send them along with the request.https://projects.example will render a 404 error to avoid leaking secret information, and the user will be quite confused.¶
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 asSameSite=Strict, and its absence would prompt a reauthentication step before executing any non-idempotent action. The former could be marked asSameSite=Lax, in order to allow users access to data via top-level navigation, orSameSite=None, to permit access in all contexts (including cross-site embedded contexts).¶
TheLax andStrict values for theSameSite 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 withSameSite=None to allow access in cross-site contexts.¶
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 requireSameSite=None.¶
SameSite cookies in and of themselves don't do anything to address the general privacy concerns outlined inSection 7.1 of[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).¶
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 browsing context's active document is precisely the document being reloaded.¶
This special handling of reloads triggered through a user interface element avoids sendingSameSite 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 withheldSameSite cookies, the security benefits of withholding the cookies in the first place would be nullified. This is especially important given that the absence ofSameSite cookies withheld on a cross-site navigation request may lead to visible site breakage, prompting the user to trigger a reload.¶
For example, suppose the user clicks on a link fromhttps://attacker.example/ tohttps://victim.example/. This is a cross-site request, soSameSite=Strict cookies are withheld. Suppose this causeshttps://victim.example/ to appear broken, because the site only displays its sensitive content if a particularSameSite 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 withheldSameSite 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.¶
The "Lax" enforcement mode described inSection 5.4.7.1 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 aSameSite attribute being included on top-level cross-site requests with "unsafe" HTTP methods (as was the case prior to the introduction of theSameSite attribute).¶
For example, a login flow may involve a cross-site top-levelPOST request to an endpoint which expects a cookie with login information. 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. On the other hand, "None" enforcement would allow the cookie to be sent with all cross-site requests, which may not be desirable due to the cookie's sensitive contents.¶
The "Lax-allowing-unsafe" enforcement mode described inSection 5.4.7.2 retains some of the protections of "Lax" enforcement (as compared to "None") while still allowing cookies to be sent cross-site with unsafe top-level requests.¶
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.¶
The permanent message header field registry (see[RFC3864]) needs to be updated with the following registration:¶
The permanent message header field registry (see[RFC3864]) needs to be updated with the following registration:¶
IANA is requested to create the "Cookie Attribute Registry", defining the name space of attribute used to control cookies' behavior. The registry should be maintained athttps://www.iana.org/assignments/cookie-attribute-names.¶
Each registered attribute name is associated with a description, and a reference detailing how the attribute is to be processed and stored.¶
New registrations happen on a "RFC Required" basis (seeSection 4.7 of[RFC8126]). The attribute to be registered MUST match theextension-av syntax defined inSection 4.1.1. Note that attribute names are generally defined in CamelCase, but technically accepted case-insensitively.¶
The "Cookie Attribute Registry" should be created with the registrations below:¶
| Name | Reference |
|---|---|
| Domain | Section 4.1.2.3 of this document |
| Expires | Section 4.1.2.1 of this document |
| HttpOnly | Section 4.1.2.6 of this document |
| Max-Age | Section 4.1.2.2 of this document |
| Path | Section 4.1.2.4 of this document |
| SameSite | Section 4.1.2.7 of this document |
| Secure | Section 4.1.2.5 of this document |
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.¶