HTTP Working Group | M. West |
Internet-Draft | Google, Inc |
Updates: 6265 (if approved) | M. Goodwin |
Intended status: Standards Track | Mozilla |
Expires: December 22, 2016 | June 20, 2016 |
This document updates RFC6265 by defining a SameSite attribute which allows servers to assert that a cookie ought not to be sent along with cross-site requests. This assertion allows user agents to mitigate the risk of cross-origin information leakage, and provides some protection against cross-site request forgery attacks.¶
Discussion of this draft takes place on the HTTP working group mailing list (ietf-http-wg@w3.org), which is archived at https://lists.w3.org/Archives/Public/ietf-http-wg/.¶
Working Group information can be found at http://httpwg.github.io/; source code and issues list for this draft can be found at https://github.com/httpwg/http-extensions/labels/cookie-same-site.¶
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 at http://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 22, 2016.¶
Copyright (c) 2016 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 (http://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.¶
Section 8.2 of [RFC6265] eloquently notes that cookies are a form of ambient authority, attached by default to requests the user agent sends on a user’s behalf. Even when an attacker doesn’t know the contents of a user’s cookies, she can still execute commands on the user’s behalf (and with the user’s authority) by asking the user agent to send HTTP requests to unwary servers.¶
Here, we update [RFC6265] with a simple mitigation strategy that allows servers to declare certain cookies as “same-site”, meaning they should not be attached to “cross-site” requests (as defined in section 2.1).¶
Note that the mechanism outlined here is backwards compatible with the existing cookie syntax. Servers may serve these cookies to all user agents; those that do not support the SameSite attribute will simply store a cookie which is attached to all relevant requests, just as they do today.¶
These cookies are intended to provide a solid layer of defense-in-depth against attacks which require embedding an authenticated request into an attacker-controlled context:¶
Same-site cookies are set via the SameSite attribute in the Set-Cookie header field. That is, given a server’s response to a user agent which contains the following header field:¶
Set-Cookie: SID=31d4d96e407aad42; SameSite=Strict
Subsequent requests from that user agent can be expected to contain the following header field if and only if both the requested resource and the resource in the top-level browsing context match the cookie.¶
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].¶
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 terms “active document”, “ancestor browsing context”, “browsing context”, “document”, “WorkerGlobalScope”, “sandboxed origin browsing context flag”, “parent browsing context”, “the worker’s Documents”, “nested browsing context”, and “top-level browsing context” 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 include GET, HEAD, OPTIONS, and TRACE, as defined in Section 4.2.1 of [RFC7231].¶
The term “public suffix” is defined in a note in Section 5.3 of [RFC6265] as “a domain that is controlled by a public registry”. For example, example.com’s public suffix is com. User agents SHOULD use an up-to-date public suffix list, such as the one maintained by Mozilla at [PSL].¶
An origin’s “registrable domain” is the origin’s host’s public suffix plus the label to its left. That is, https://www.example.com’s registrable domain is example.com. This concept is defined more rigorously in [PSL].¶
The term “request”, as well as a request’s “client”, “current url”, “method”, and “target browsing context”, are defined in [FETCH].¶
A request is “same-site” if its target’s URI’s origin’s registrable domain is an exact match for the request’s initiator’s “site for cookies”, and “cross-site” otherwise. To be more precise, for a given request (“request”), the following algorithm returns same-site or cross-site:¶
The URI displayed in a user agent’s address bar is the only security context directly exposed to users, and therefore the only signal users can reasonably rely upon to determine whether or not they trust a particular website. The registrable domain of that URI’s origin represents the context in which a user most likely believes themselves to be interacting. We’ll label this domain the “top-level site”.¶
For a document displayed in a top-level browsing context, we can stop here: the document’s “site for cookies” is the top-level site.¶
For documents which are displayed in nested browsing contexts, we need to audit the origins of each of a document’s ancestor browsing contexts’ active documents in order to account for the “multiple-nested scenarios” described in Section 4 of [RFC7034]. These document’s “site for cookies” is the top-level site if and only if the document and each of its ancestor documents’ origins have the same registrable domain as the top-level site. Otherwise its “site for cookies” is the empty string.¶
Given a Document (document), the following algorithm returns its “site for cookies” (either a registrable domain, or the empty string):¶
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.¶
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 in Section 2.1.1 and Section 2.1.2.1¶
Requests which are initiated by the Service Worker itself (via a direct call to fetch(), for instance), on the other hand, will have a client which is a ServiceWorkerGlobalScope. Its “site for cookies” will be the registrable domain of the Service Worker’s URI.¶
Given a ServiceWorkerGlobalScope (worker), the following algorithm returns its “site for cookies” (either a registrable domain, or the empty string):¶
This section describes extensions to [RFC6265] necessary to implement the server-side requirements of the SameSite attribute.¶
Add SameSite to the list of accepted attributes in the Set-Cookie header field’s value by replacing the cookie-av token definition in Section 4.1.1 of [RFC6265] with the following ABNF grammar:¶
cookie-av = expires-av / max-age-av / domain-av / path-av / secure-av / httponly-av / samesite-av / extension-av samesite-av = "SameSite" / "SameSite=" samesite-value samesite-value = "Strict" / "Lax"
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 Section 2.1. For example, requests for https://example.com/sekrit-image will attach same-site cookies if and only if initiated from a context whose “site for cookies” is “example.com”.¶
If the “SameSite” attribute’s value is “Strict”, or if the value is invalid, 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 Section 4.1.1.¶
The changes to the Cookie header field suggested in Section 4.3 provide additional detail.¶
This section describes extensions to [RFC6265] necessary in order to implement the client-side requirements of the SameSite attribute.¶
The following attribute definition should be considered part of the the Set-Cookie algorithm as described in Section 5.2 of [RFC6265]:¶
If the attribute-name case-insensitively matches the string “SameSite”, the user agent MUST process the cookie-av as follows:¶
By default, same-site cookies will not be sent along with top-level navigations. As discussed in Section 5.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 the SameSite 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 [RFC7231] sense) HTTP method.¶
Lax enforcement provides reasonable defense in depth against CSRF attacks that rely on unsafe HTTP methods (like POST), but do 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 in Section 5.2 to mitigate the risk of CSRF more completely.¶
Note: There’s got to be a better way to specify this. Until I figure out what that is, monkey-patching!¶
Same-site cookies in and of themselves don’t do anything to address the general privacy concerns outlined in Section 7.1 of [RFC6265]. The attribute is set by the server, and serves to mitigate the risk of certain kinds of attacks that the server is worried about. The user is not involved in this decision. Moreover, a number of side-channels exist which could allow a server to link distinct requests even in the absence of cookies. Connection and/or socket pooling, Token Binding, and Channel ID all offer explicit methods of identification that servers could take advantage of.¶
As outlined in [RFC7258], pervasive monitoring is an attack. Cookies play a large part in enabling such monitoring, as they are responsible for maintaining state in HTTP connections. We considered restricting same-site cookies to secure contexts [secure-contexts] as a mitigation but decided against doing so, as this feature should result in a strict reduction in the number of cookies floating around in cross-site contexts. That is, even if http://not-example.com embeds a resource from http://example.com/, that resource will not be “same-site”, and http://example.com’s cookies simply cannot be used to correlate user behavior across distinct origins.¶
The same-site cookie concept documented here is indebited to Mark Goodwin’s and Joe Walker’s [samedomain-cookies]. Michal Zalewski, Artur Janc, Ryan Sleevi, and Adam Barth provided particularly valuable feedback on this document.¶