HTTP Working Group | M. West |
Internet-Draft | Google, Inc |
Updates: 6265 (if approved) | 2018 |
Intended status: Standards Track | |
Expires: WRONG SYNTAX FOR MONTH |
This document updates RFC6265 by adding a set of restrictions upon the names which may be used for cookies with specific properties. These restrictions enable user agents to smuggle cookie state to the server within the confines of the existing Cookie request header syntax, and limits the ways in which cookies may be abused in a conforming user agent.¶
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-prefixes.¶
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 https://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 in WRONG SYNTAX FOR MONTH.¶
Copyright (c) 2018 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.¶
Section 8.5 and Section 8.6 of [RFC6265] spell out some of the drawbacks of cookies' implementation: due to historical accident, it is impossible for a server to have confidence that a cookie set in a secure way (e.g., as a domain cookie with the Secure (and possibly HttpOnly) flags set) remains intact and untouched by non-secure subdomains.¶
We can't alter the syntax of the Cookie request header, as that would likely break a number of implementations. This rules out sending a cookie's flags along with the cookie directly, but we can smuggle information along with the cookie if we reserve certain name prefixes for cookies with certain properties.¶
This document describes such a scheme, which enables servers to set cookies which conforming user agents will ensure are Secure, and locked to a domain.¶
If a cookie's name begins with "__Secure-", the cookie MUST be:¶
The following cookie would be rejected when set from any origin, as the Secure flag is not set¶
Set-Cookie: __Secure-SID=12345; Domain=example.com
While the following would be accepted if set from a secure origin (e.g. https://example.com/), and rejected otherwise:¶
Set-Cookie: __Secure-SID=12345; Secure; Domain=example.com
If a cookie's name begins with "__Host-", the cookie MUST be:¶
The following cookies would always be rejected:¶
Set-Cookie: __Host-SID=12345 Set-Cookie: __Host-SID=12345; Secure Set-Cookie: __Host-SID=12345; Domain=example.com Set-Cookie: __Host-SID=12345; Domain=example.com; Path=/ Set-Cookie: __Host-SID=12345; Secure; Domain=example.com; Path=/
While the following would be accepted if set from a secure origin (e.g. https://example.com/), and rejected otherwise:¶
Set-Cookie: __Host-SID=12345; Secure; Path=/
This document updates Section 5.3 of [RFC6265] as follows:¶
After step 10 of the current algorithm, the cookies flags are set. Insert the following steps to perform the prefix checks this document specifies:¶
Prefixes are ugly. :(¶
We started with $, but ran into issues with servers that had implemented [RFC2109]-style cookies. __ is a prefix used for a number of well-known cookies in the wild (notably Google Analytics's __ut* cookies, and CloudFlare's __cfduid), and so is unlikely to produce such compatibility issues, while being uncommon enough to mitigate the risk of collisions.¶
It would certainly be possible to extend this scheme to non-secure origins (and an earlier draft of this document did exactly that). User agents, however, are slowly moving towards a world where features with security implications are available only over secure transport (see [SECURE-CONTEXTS], [POWERFUL-FEATURES], and [DEPRECATING-HTTP]). This document follows that trend, limiting exciting new cookie properties to secure transport in order to ensure that user agents can make claims which middlemen will have a hard time violating.¶
To that end, note that the requirements listed above mean that prefixed cookies will be rejected entirely if a non-secure origin attempts to set them.¶
This scheme gives no assurance to the server that the restrictions on cookie names are enforced. Servers could certainly probe the user agent's functionality to determine support, or sniff based on the User-Agent request header, if such assurances were deemed necessary.¶
Eric Lawrence had this idea a million years ago, and wrote about its genesis in [Lawrence2015]. Devdatta Akhawe helped justify the potential impact of the scheme on real-world websites. Thomas Broyer pointed out the issues with a leading $ in the prefixes, and Brian Smith provided valuable contributions to the discussion around a replacement (ISO C indeed).¶