Internet-Draft | WebSocket Extension to disable masking | February 2024 |
Damjanovic | Expires 30 August 2024 | [Page] |
The WebSocket protocol specifies that all frames sent from the client to the server must be masked. This was introduced as a protection against a possible attack on the infrastructure. With careful consideration, the masking could be omitted when intermediaries do not have access to the unencrypted traffic.¶
This specification introduces a WebSocket extension that disables the mandatory masking of frames sent from the client to the server. The extension is allowed only if the client uses an encrypted connection.¶
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 on 30 August 2024.¶
Copyright (c) 2024 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 Revised BSD License text as described in Section 4.e of the Trust Legal Provisions and are provided without warranty as described in the Revised BSD License.¶
The WebSocket protocol specifies that all frames sent from the client to the server must be masked [RFC6455]. This was introduced as a protection against a possible attack on the infrastructure described in Section 10.3 of [RFC6455]. The attack can be performed on intermediaries, such as proxies and it could cause cache poisoning. Using end-to-end encryption, the attack can be mitigated without the use of masking. This is because every intermediary will be denied access to the unencrypted traffic, which prevents the caching attack. The masking has been made mandatory for the connection using TLS to protect the infrastructure that is behind TLS terminating proxies.¶
This specification introduces a WebSocket extension that disables the masking of frames sent from the client to the server. The support for the extension will be advertised by the client (see Section 9 of [RFC6455]). The server may accept or decline the extension. The client can advertise the extension only if an encrypted connection.¶
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 [RFC2119] [RFC8174] when, and only when, they appear in all capitals, as shown here.¶
The "no-masking" extension is negotiated using the WebSocket extension mechanism described in Section 9 of [RFC6455]. The client advertises support for the extension by sending "no-masking" in the list of supported extensions sent in the "Sec-WebSocket-Extensions" header field. The server accepts the extension, by sending "no-masking" in the "Sec-WebSocket-Extensions" header value.¶
The client MUST NOT send the extension if a non-secure connection is used.¶
If the "no-masking" extension is negotiated the client and the server behavior are:¶
The client MUST send data to the server without masking. The client sets the field "frame-masked" to 0 on all frames. As defined in [RFC6455], the field "frame-masking-key" will not be present.¶
The server must only accept frames with the field "frame-masked" set to 0. If the server receives a frame with the field "frame-masked" set to 1, it MUST close the connection with the status code 1002 define in Section 7.4.1 of [RFC6455].¶
IANA has registered the following WebSocket extension name in the "WebSocket Extension Name Registry" defined in [RFC6455].¶
Extension Identifier: no-masking¶
Extension Common Name: Disable the WebSocket client-to-server masking¶
Extension Definition: This document.¶
Known Incompatible Extensions: None¶
The "no-masking" extension name is used in the "Sec-WebSocket-Extensions" header in the WebSocket opening handshake to negotiate disabling of the client-to-server masking.¶