<?xml version="1.0" encoding="UTF-8"?>
  <?xml-stylesheet type="text/xsl" href="rfc2629.xslt" ?>
  <!-- generated by https://github.com/cabo/kramdown-rfc2629 version 1.2.7 -->

<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
]>

<?rfc toc="yes"?>
<?rfc tocindent="yes"?>
<?rfc sortrefs="yes"?>
<?rfc symrefs="yes"?>
<?rfc strict="yes"?>
<?rfc compact="yes"?>
<?rfc comments="yes"?>
<?rfc inline="yes"?>

<rfc ipr="trust200902" docName="draft-ietf-httpbis-bcp56bis-00" category="bcp" obsoletes="3205">

  <front>
    <title>On the use of HTTP as a Substrate</title>

    <author initials="M." surname="Nottingham" fullname="Mark Nottingham">
      <organization></organization>
      <address>
        <email>mnot@mnot.net</email>
        <uri>https://www.mnot.net/</uri>
      </address>
    </author>

    <date year="2017"/>

    <area>Applications and Real-Time</area>
    <workgroup>HTTP</workgroup>
    <keyword>substrate</keyword>

    <abstract>


<t>HTTP is often used as a substrate for other application protocols. This document specifies best
practices for these protocols’ use of HTTP.</t>



    </abstract>


    <note title="Note to Readers ">


<t>Discussion of this draft takes place on the HTTP working group mailing list 
(ietf-http-wg@w3.org), which is archived at <eref target="https://lists.w3.org/Archives/Public/ietf-http-wg/">https://lists.w3.org/Archives/Public/ietf-http-wg/</eref>.</t>

<t>Working Group information can be found at <eref target="http://httpwg.github.io/">http://httpwg.github.io/</eref>; source code and issues list
for this draft can be found at <eref target="https://github.com/httpwg/http-extensions/labels/bcp56bis">https://github.com/httpwg/http-extensions/labels/bcp56bis</eref>.</t>


    </note>


  </front>

  <middle>


<section anchor="introduction" title="Introduction">

<t>HTTP <xref target="RFC7230"/> is often used as a substrate for other application protocols. This is done for a
variety of reasons, including:</t>

<t><list style="symbols">
  <t>familiarity by implementers, specifiers, administrators, developers and users,</t>
  <t>availability of a variety of client, server and proxy implementations,</t>
  <t>ease of use,</t>
  <t>ubiquity of Web browsers,</t>
  <t>reuse of existing mechanisms like authentication and encryption,</t>
  <t>presence of HTTP servers and clients in target deployments, and</t>
  <t>its ability to traverse firewalls.</t>
</list></t>

<t>The Internet community has a long tradition of protocol reuse, dating back to the use of Telnet
<xref target="RFC0854"/> as a substrate for FTP <xref target="RFC0959"/> and SMTP <xref target="RFC2821"/>. However, layering new
protocols over HTTP brings its own set of issues:</t>

<t><list style="symbols">
  <t>Should an application using HTTP define a new URL scheme? Use new ports?</t>
  <t>Should it use standard HTTP methods and status codes, or define new ones?</t>
  <t>How can the maximum value be extracted from the use of HTTP?</t>
  <t>How does it coexist with other uses of HTTP – especially Web browsing?</t>
  <t>How can interoperability problems and “protocol dead ends” be avoided?</t>
</list></t>

<t>This document contains best current practices regarding the use of HTTP by applications other than
Web browsing. <xref target="used"/> defines what applications it applies to; <xref target="overview"/> surveys the properties
of HTTP that are important to preserve, and <xref target="bp"/> conveys best practices for those applications
that do use HTTP.</t>

<t>It is written primarily to guide IETF efforts to define application protocols using HTTP for
deployment on the Internet, but might be applicable in other situations. Note that the requirements
herein do not necessarily apply to the development of generic HTTP extensions.</t>

<section anchor="notational-conventions" title="Notational Conventions">

<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>

</section>
</section>
<section anchor="used" title="Is HTTP Being Used?">

<t>Different applications have different goals when using HTTP. In this document, we say an
application is <spanx style="emph">using HTTP</spanx> when any of the following conditions are true:</t>

<t><list style="symbols">
  <t>The transport port in use is 80 or 443,</t>
  <t>The URL scheme “http” or “https” is used,</t>
  <t>The ALPN protocol ID <xref target="RFC7301"/> “http/1.1”, “h2” or “h2c” is used, or</t>
  <t>The message formats described in <xref target="RFC7230"/> and/or <xref target="RFC7540"/> are used in conjunction with the IANA registries defined for HTTP.</t>
</list></t>

<t>When an application is using HTTP, all of the requirements of the HTTP protocol suite (including
but not limited to <xref target="RFC7230"/>, <xref target="RFC7231"/>, <xref target="RFC7232"/>, <xref target="RFC7233"/>, <xref target="RFC7234"/>,
<xref target="RFC7235"/> and <xref target="RFC7540"/>) are in force.</t>

<t>An application might not be <spanx style="emph">using HTTP</spanx> according to this definition, but still relying upon the
HTTP specifications in some manner. For example, an application might wish to avoid re-specifying
parts of the message format, but change others; or, it might want to use a different set of methods.</t>

<t>Such applications are referred to as <spanx style="emph">protocols based upon HTTP</spanx> in this document. These have more
freedom to modify protocol operation, but are also likely to lose at least a portion of the
benefits outlined above, as most HTTP implementations won’t be easily adaptable to these changes,
and as the protocol diverges from HTTP, the benefit of mindshare will be lost.</t>

<t>Protocols that are based upon HTTP MUST NOT reuse HTTP’s URL schemes, transport ports, ALPN
protocol IDs or IANA registries; rather, they are encouraged to establish their own.</t>

</section>
<section anchor="overview" title="What’s Important About HTTP">

<t>There are many ways that HTTP applications are defined and deployed, and sometimes they are brought
to the IETF for standardisation. In that process, what might be workable for deployment in a
limited fashion isn’t appropriate for standardisation and the corresponding broader deployment.</t>

<t>This section examines the facets of the protocol that are important to preserve in these situations.</t>

<section anchor="generic-semantics" title="Generic Semantics">

<t>When writing an application’s specification, it’s often tempting to specify exactly how HTTP is to
be implemented, supported and used.</t>

<t>However, this can easily lead to an unintended profile of HTTP’s behaviour. For example, it’s
common to see specifications with language like this:</t>

<figure><artwork><![CDATA[
A `200 OK` response means that the widget has successfully been updated.
]]></artwork></figure>

<t>This sort of specification is bad practice, because it is adding new semantics to HTTP’s status
codes and methods, respectively; a recipient – whether it’s an origin server, client library,
intermediary or cache – now has to know these extra semantics to understand the message.</t>

<t>Some applications even require specific behaviours, such as:</t>

<figure><artwork><![CDATA[
A `POST` request MUST result in a `201 Created` response.
]]></artwork></figure>

<t>This forms an expectation in the client that the response will always be <spanx style="verb">201 Created</spanx>, when in
fact there are a number of reasons why the status code might differ in a real deployment. If the
client does not anticipate this, the application’s deployment is brittle.</t>

<t>Much of the value of HTTP is in its <spanx style="emph">generic semantics</spanx> – that is, the protocol elements defined
by HTTP are potentially applicable to every resource, not specific to a particular context.
Application-specific semantics are expressed in the payload; mostly, in the body, but also in
header fields.</t>

<t>This allows a HTTP message to be examined by generic HTTP software (e.g., HTTP servers,
intermediaries, client implementatiions), and its handling to be correctly determined. It also
allows people to leverage their knowledge of HTTP semantics without special-casing them for a
particular application.</t>

<t>Therefore, applications that use HTTP MUST NOT re-define, refine or overlay the semantics of
defined protocol elements. Instead, they SHOULD focus their specifications on protocol elements
that are specific to them; namely their HTTP resources.</t>

<t>See <xref target="resource"/> for details.</t>

</section>
<section anchor="links" title="Links">

<t>Another common practice is assuming that the HTTP server’s name space (or a portion thereof) is
exclusively for the use of a single application. This effectively overlays special,
application-specific semantics onto that space, precludes other applications from using it.</t>

<t>As explained in <xref target="RFC7320"/>, such “squatting” on a part of the URL space by a standard usurps the
server’s authority over its own resources, can cause deployment issues, and is therefore bad
practice in standards.</t>

<t>Instead of statically defining URL paths, it is RECOMMENDED that applications using HTTP define
links in payloads, to allow flexibility in deployment.</t>

<t>Using runtime links in this fashion has a number of other benefits. For example, navigating with a
link allows a request to be routed to a different server without the overhead of a redirection,
thereby supporting deployment across machines well. It becomes possible to “mix” different
applications on the same server, and offers a natural path for extensibility, versioning and
capability management.</t>

</section>
<section anchor="getting-value-from-http" title="Getting Value from HTTP">

<t>The simplest possible use of HTTP is to POST data to a single URL, thereby effectively tunnelling
through the protocol.</t>

<t>This “RPC” style of communication does get some benefit from using HTTP – namely, message framing and the availability of implementations – but fails to realise many others:</t>

<t><list style="symbols">
  <t>Caching for server scalability, latency and bandwidth reduction, and reliability;</t>
  <t>Authentication and access control;</t>
  <t>Automatic redirection;</t>
  <t>Partial content to selectively request part of a response;</t>
  <t>Natural support for extensions and versioning through protocol extension; and</t>
  <t>The ability to interact with the application easily using a Web browser.</t>
</list></t>

<t>Using such a high-level protocol to tunnel simple semantics has downsides too; because of its more
advanced capabilities, breadth of deployment and age, HTTP’s complexity can cause interoperability
problems that could be avoided by using a simpler substrate (e.g., WebSockets <xref target="RFC6455"/>, if
browser support is necessary, or TCP <xref target="RFC0793"/> if not), or making the application be <spanx style="emph">based upon
HTTP</spanx>, instead of using it (as defined in <xref target="used"/>).</t>

<t>Applications that use HTTP are encouraged to accommodate the various features that the protocol
offers, so that their users receive the maximum benefit from it. This document does not require
specific features to be used, since the appropriate design tradeoffs are highly specific to a given
situation. However, following the practices in <xref target="bp"/> will help make them available.</t>

</section>
</section>
<section anchor="bp" title="Best Practices for Using HTTP">

<t>This section contains best practices regarding the use of HTTP by applications, including practices
for specific HTTP protocol elements.</t>

<section anchor="specifying-the-use-of-http" title="Specifying the Use of HTTP">

<t>When specifying the use of HTTP, an application SHOULD use <xref target="RFC7230"/> as the primary reference;
it is not necessary to reference all of the specifications in the HTTP suite unless there are
specific reasons to do so (e.g., a particular feature is called out).</t>

<t>Applications using HTTP MAY specify a minimum version to be supported (HTTP/1.1 is suggested), and
MUST NOT specify a maximum version.</t>

<t>Likewise, applications need not specify what HTTP mechanisms – such as redirection, caching,
authentication, proxy authentication, and so on – are to be supported. Full featured support for
HTTP SHOULD be taken for granted in servers and clients, and the application’s function SHOULD
degrade gracefully if they are not (although this might be achieved by informing the user that
their task cannot be completed).</t>

<t>For example, an application can specify that it uses HTTP like this:</t>

<figure><artwork><![CDATA[
Foo Application uses HTTP {{RFC7230}}. Implementations MUST support
HTTP/1.1, and MAY support later versions. Support for common HTTP
mechanisms such as redirection and caching are assumed.
]]></artwork></figure>

</section>
<section anchor="resource" title="Defining HTTP Resources">

<t>HTTP Applications SHOULD focus on defining the following application-specific protocol elements:</t>

<t><list style="symbols">
  <t>Media types <xref target="RFC6838"/>, often based upon a format convention such as JSON <xref target="RFC7159"/>,</t>
  <t>HTTP header fields, as per <xref target="headers"/>, and</t>
  <t>The behaviour of resources, as identified by link relations <xref target="RFC5988"/>.</t>
</list></t>

<t>By composing these protocol elements, an application can define a set of resources, identified by
link relations, that implement specified behaviours, including:</t>

<t><list style="symbols">
  <t>Retrieval of their state using GET, in one or more formats identified by media type;</t>
  <t>Resource creation or update using POST or PUT, with an appropriately identified request body format;</t>
  <t>Data processing using POST and identified request and response body format(s); and</t>
  <t>Resource deletion using DELETE.</t>
</list></t>

<t>For example, an application might specify:</t>

<figure><artwork><![CDATA[
Resources linked to with the "example-widget" link relation type are
Widgets. The state of a Widget can be fetched in the
"application/example-widget+json" format, and can be updated by PUT
to the same link. Widget resources can be deleted.

The "Example-Count" response header field on Widget representations
indicates how many Widgets are held by the sender.

The "application/example-widget+json" format is a JSON {{RFC7159}}
format representing the state of a Widget. It contains links to
related information in the link indicated by the Link header field
value with the "example-other-info" link relation type.
]]></artwork></figure>

</section>
<section anchor="http-urls" title="HTTP URLs">

<t>In HTTP, URLs are opaque identifiers under the control of the server. As outlined in <xref target="RFC7320"/>,
standards cannot usurp this space, since it might conflict with existing resources, and constrain
implementation and deployment.</t>

<t>In other words, applications that use HTTP MUST NOT associate application semantics with specific
URL paths on arbitrary servers. Doing so inappropriately conflates the identity of the resource (its URL) with the capabilities that resource supports, bringing about many of the same interoperability problems that <xref target="RFC4367"/> warns of.</t>

<t>For example, specifying that a “GET to the URL /foo retrieves a bar document” is bad practice.
Likewise, specifying “The widget API is at the path /bar” violates <xref target="RFC7320"/>.</t>

<t>Instead, applications that use HTTP are encouraged to ensure that URLs are discovered at runtime,
allowing HTTP-based services to describe their own capabilities. One way to do this is to use typed
links <xref target="RFC5988"/> to convey the URIs that are in use, as well as the semantics of the resources
that they identify. See <xref target="resource"/> for details.</t>

<section anchor="initial-url-discovery" title="Initial URL Discovery">

<t>Generally, a client will begin interacting with a given application server by requesting an initial
document that contains information about that particular deployment, potentially including links to
other relevant resources.</t>

<t>Applications that use HTTP SHOULD allow an arbitrary URL to be used as that entry point. For
example, rather than specifying “the initial document is at “/foo/v1”, they should allow a
deployment to use any URL as the entry point for the application.</t>

<t>In cases where doing so is impractical (e.g., it is not possible to convey a whole URL, but only a
hostname) applications that use HTTP MAY define a well-known URL <xref target="RFC5785"/> as an entry point.</t>

</section>
<section anchor="scheme" title="URL Schemes">

<t>Applications that use HTTP will typically use the “http” and/or “https” URL schemes. “https” is preferred to mitigate pervasive monitoring attacks <xref target="RFC7258"/>.</t>

<t>However, application-specific schemes can be defined as well.</t>

<t>When defining an URL scheme for an application using HTTP, there are a number of tradeoffs and
caveats to keep in mind:</t>

<t><list style="symbols">
  <t>Unmodified Web browsers will not support the new scheme. While it is possible to register new URL schemes with Web browsers (e.g. registerProtocolHandler() in <xref target="HTML5"/> Section 8.7.1.3, as well as several proprietary approaches), support for these mechanisms is not shared by all browsers, and their capabilities can vary.</t>
  <t>Likewise, existing non-browser clients, intermediaries, servers and associated software will not recognise the new scheme, and might fail to operate. For example, a client library might fail to dispatch the request; a cache might refuse to store the response, and a proxy might fail to forward the request.</t>
  <t>Because URLs occur in and are generated in HTTP artefacts commonly, often without human intervention (e.g., in the <spanx style="verb">Location</spanx> header), it can be difficult to assure that the new scheme is used consistently.</t>
  <t>The resources identified by the new scheme will still be available with “http” and/or “https” URLs to clients. While it is possible to define the relationship between these resources in the new scheme’s specification, existing HTTP software (such as clients, caches, intermediaries and servers) will not be available, so there is a danger of confusion when the “wrong” URL is used.</t>
  <t>Features that rely upon the URL’s origin <xref target="RFC6454"/>, such as the Web’s same-origin policy, will be impacted by a change of scheme.</t>
  <t>HTTP-specific features such as cookies <xref target="RFC6265"/>, authentication <xref target="RFC7235"/>, caching <xref target="RFC7234"/>, and CORS <xref target="FETCH"/> might or might not work correctly, depending on how they are defined and implemented. Generally, they are designed and implemented with an assumption that the URL will always be “http” or “https”.</t>
  <t>Web features that require a secure context <xref target="W3C.CR-secure-contexts-20160915"/> will likely treat a new scheme as insecure.</t>
</list></t>

<t>See <xref target="RFC7595"/> for more information about minting new URL schemes.</t>

</section>
<section anchor="transport-ports" title="Transport Ports">

<t>Applications that use HTTP SHOULD use the default port for the URL scheme in use. If it is felt
that networks might need to distinguish the application’s traffic for operational reasons, it MAY
register a separate port, but be aware that this has privacy implications for that protocol’s
users. The impact of doing so MUST be documented in Security Considerations.</t>

<t>See <xref target="RFC7605"/> for further guidance.</t>

</section>
</section>
<section anchor="http-methods" title="HTTP Methods">

<t>Applications that use HTTP MUST confine themselves to using registered HTTP methods such as GET,
POST, PUT, DELETE, and PATCH.</t>

<t>New HTTP methods are rare; they are required to be registered with IETF Review (see <xref target="RFC7232"/>),
and are also required to be <spanx style="emph">generic</spanx>. That means that they need to be potentially applicable to
all resources, not just those of one application.</t>

<t>While historically some applications (e.g., <xref target="RFC4791"/>) has defined non-generic methods,
<xref target="RFC7231"/> now forbids this.</t>

<t>When it is believed that a new method is required, authors are encouraged to engage with the HTTP
community early, and document their proposal as a separate HTTP extension, rather than as part of
an application’s specification.</t>

</section>
<section anchor="http-status-codes" title="HTTP Status Codes">

<t>Applications that use HTTP MUST only use registered HTTP status codes.</t>

<t>As with methods, new HTTP status codes are rare, and required (by <xref target="RFC7231"/>) to be registered
with IETF review. Similarly, HTTP status codes are generic; they are required (by <xref target="RFC7231"/>) to
be potentially applicable to all resources, not just to those of one application.</t>

<t>When it is believed that a new status code is required, authors are encouraged to engage with the
HTTP community early, and document their proposal as a separate HTTP extension, rather than as part
of an application’s specification.</t>

<t>Status codes’ primary function is to convey HTTP semantics for the benefit of generic HTTP
software, not application-specific semantics. Therefore, applications MUST NOT specify additional
semantics or refine existing semantics for status codes.</t>

<t>In particular, specifying that a particular status code has a specific meaning in the context of an
application is harmful, as these are not generic semantics, since the consumer needs to be in the
context of the application to understand them.</t>

<t>Furthermore, applications using HTTP MUST NOT re-specify the semantics of HTTP status codes, even
if it is only by copying their definition. They MUST NOT require specific status phrases to be
used; the status phrase has no function in HTTP, and is not guaranteed to be preserved by
implementations.</t>

<t>Typically, applications using HTTP will convey application-specific information in the message body
and/or HTTP header fields, not the status code.</t>

<t>Specifications sometimes also create a “laundry list” of potential status codes, in an effort to be
helpful. The problem with doing so is that such a list is never complete; for example, if a network
proxy is interposed, the client might encounter a <spanx style="verb">407 Proxy Authentication Required</spanx> response; or,
if the server is rate limiting the client, it might receive a <spanx style="verb">429 Too Many Requests</spanx> response.</t>

<t>Since the list of HTTP status codes can be added to, it’s safer to refer to it directly, and point
out that clients SHOULD be able to handle all applicable protocol elements gracefully (i.e.,
falling back to the generic <spanx style="verb">n00</spanx> semantics of a given status code; e.g., <spanx style="verb">499</spanx> can be safely
handled as <spanx style="verb">400</spanx> by clients that don’t recognise it).</t>

</section>
<section anchor="headers" title="HTTP Header Fields">

<t>Applications that use HTTP MAY define new HTTP header fields, following the advice in <xref target="RFC7231"/>,
Section 8.3.1.</t>

<t>Typically, using HTTP header fields is appropriate in a few different situations:</t>

<t><list style="symbols">
  <t>Their content is useful to intermediaries (who often wish to avoid parsing the body), and/or</t>
  <t>Their content is useful to generic HTTP software (e.g., clients, servers), and/or</t>
  <t>It is not possible to include their content in the message body (usually because a format does not allow it).</t>
</list></t>

<t>If none of these motivations apply, using a header field is NOT RECOMMENDED.</t>

<t>New header fields MUST be registered, as per <xref target="RFC7231"/> and <xref target="RFC3864"/>.</t>

<t>It is RECOMMENDED that header field names be short (even when HTTP/2 header compression is in
effect, there is an overhead) but appropriately specific. In particular, if a header field is
specific to an application, an identifier for that application SHOULD form a prefix to the header
field name, separated by a “-“.</t>

<t>The semantics of existing HTTP header fields MUST NOT be re-defined without updating their
registration or defining an extension to them (if allowed). For example, an application using HTTP
cannot specify that the <spanx style="verb">Location</spanx> header has a special meaning in a certain context.</t>

<t>See <xref target="state"/> for requirements regarding header fields that carry application state (e.g,. Cookie).</t>

</section>
<section anchor="payload" title="Defining Message Payloads">

</section>
<section anchor="browser" title="Ensuring Browser Interoperability">

</section>
<section anchor="access-control" title="Access Control">

<t>Modern Web browsers constrain the ability of content from one origin (as defined by <xref target="RFC6454"/>)
to access resources from another, to avoid the “confused deputy” problem. As a result, applications
that wish to expose cross-origin data to browsers will need to implement <xref target="W3C.REC-cors-20140116"/>.</t>

<section anchor="state" title="Authentication and Application State">

<t>Applications that use HTTP MAY use stateful cookies <xref target="RFC6265"/> to identify a client and/or store
client-specific data to contextualise requests.</t>

<t>If it is only necessary to identify clients, applications that use HTTP MAY use HTTP authentication
<xref target="RFC7235"/>; if the Basic authentication scheme <xref target="RFC7617"/> is used, it MUST NOT be used with the
‘http’ URL scheme.</t>

<t>In either case, it is important to carefully specify the scoping and use of these mechanisms; if
they expose sensitive data or capabilities (e.g., by acting as an ambient authority), exploits are
possible. Mitigations include using a request-specific token to assure the intent of the client.</t>

</section>
</section>
</section>
<section anchor="iana-considerations" title="IANA Considerations">

<t>This document has no requirements for IANA.</t>

</section>
<section anchor="security-considerations" title="Security Considerations">

<t><xref target="state"/> discusses the impact of using stateful mechanisms in the protocol as ambient authority,
and suggests a mitigation.</t>

<t><xref target="scheme"/> requires support for ‘https’ URLs, and discourages the use of ‘http’ URLs, to mitigate
pervasive monitoring attacks.</t>

<t>Applications that use HTTP in a manner that involves modification of implementations – for
example, requiring support for a new URL scheme, or a non-standard method – risk having those
implementations “fork” from their parent HTTP implementations, with the possible result that they
do not benefit from patches and other security improvements incorporated upstream.</t>

</section>


  </middle>

  <back>

    <references title='Normative References'>





<reference  anchor="RFC7230" target='https://www.rfc-editor.org/info/rfc7230'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless application-level protocol for distributed, collaborative, hypertext information systems.  This document provides an overview of HTTP architecture and its associated terminology, defines the &quot;http&quot; and &quot;https&quot; Uniform Resource Identifier (URI) schemes, defines the HTTP/1.1 message syntax and parsing requirements, and describes related security concerns for implementations.</t></abstract>
</front>
<seriesInfo name='RFC' value='7230'/>
<seriesInfo name='DOI' value='10.17487/RFC7230'/>
</reference>



<reference  anchor="RFC2119" target='https://www.rfc-editor.org/info/rfc2119'>
<front>
<title>Key words for use in RFCs to Indicate Requirement Levels</title>
<author initials='S.' surname='Bradner' fullname='S. Bradner'><organization /></author>
<date year='1997' month='March' />
<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="RFC8174" target='https://www.rfc-editor.org/info/rfc8174'>
<front>
<title>Ambiguity of Uppercase vs Lowercase in RFC 2119 Key Words</title>
<author initials='B.' surname='Leiba' fullname='B. Leiba'><organization /></author>
<date year='2017' month='May' />
<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="RFC7301" target='https://www.rfc-editor.org/info/rfc7301'>
<front>
<title>Transport Layer Security (TLS) Application-Layer Protocol Negotiation Extension</title>
<author initials='S.' surname='Friedl' fullname='S. Friedl'><organization /></author>
<author initials='A.' surname='Popov' fullname='A. Popov'><organization /></author>
<author initials='A.' surname='Langley' fullname='A. Langley'><organization /></author>
<author initials='E.' surname='Stephan' fullname='E. Stephan'><organization /></author>
<date year='2014' month='July' />
<abstract><t>This document describes a Transport Layer Security (TLS) extension for application-layer protocol negotiation within the TLS handshake. For instances in which multiple application protocols are supported on the same TCP or UDP port, this extension allows the application layer to negotiate which protocol will be used within the TLS connection.</t></abstract>
</front>
<seriesInfo name='RFC' value='7301'/>
<seriesInfo name='DOI' value='10.17487/RFC7301'/>
</reference>



<reference  anchor="RFC7231" target='https://www.rfc-editor.org/info/rfc7231'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines the semantics of HTTP/1.1 messages, as expressed by request methods, request header fields, response status codes, and response header fields, along with the payload of messages (metadata and body content) and mechanisms for content negotiation.</t></abstract>
</front>
<seriesInfo name='RFC' value='7231'/>
<seriesInfo name='DOI' value='10.17487/RFC7231'/>
</reference>



<reference  anchor="RFC7232" target='https://www.rfc-editor.org/info/rfc7232'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Conditional Requests</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless application- level protocol for distributed, collaborative, hypertext information systems.  This document defines HTTP/1.1 conditional requests, including metadata header fields for indicating state changes, request header fields for making preconditions on such state, and rules for constructing the responses to a conditional request when one or more preconditions evaluate to false.</t></abstract>
</front>
<seriesInfo name='RFC' value='7232'/>
<seriesInfo name='DOI' value='10.17487/RFC7232'/>
</reference>



<reference  anchor="RFC7233" target='https://www.rfc-editor.org/info/rfc7233'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Range Requests</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='Y.' surname='Lafon' fullname='Y. Lafon' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless application- level protocol for distributed, collaborative, hypertext information systems.  This document defines range requests and the rules for constructing and combining responses to those requests.</t></abstract>
</front>
<seriesInfo name='RFC' value='7233'/>
<seriesInfo name='DOI' value='10.17487/RFC7233'/>
</reference>



<reference  anchor="RFC7234" target='https://www.rfc-editor.org/info/rfc7234'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Caching</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='M.' surname='Nottingham' fullname='M. Nottingham' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless \%application- level protocol for distributed, collaborative, hypertext information systems.  This document defines HTTP caches and the associated header fields that control cache behavior or indicate cacheable response messages.</t></abstract>
</front>
<seriesInfo name='RFC' value='7234'/>
<seriesInfo name='DOI' value='10.17487/RFC7234'/>
</reference>



<reference  anchor="RFC7235" target='https://www.rfc-editor.org/info/rfc7235'>
<front>
<title>Hypertext Transfer Protocol (HTTP/1.1): Authentication</title>
<author initials='R.' surname='Fielding' fullname='R. Fielding' role='editor'><organization /></author>
<author initials='J.' surname='Reschke' fullname='J. Reschke' role='editor'><organization /></author>
<date year='2014' month='June' />
<abstract><t>The Hypertext Transfer Protocol (HTTP) is a stateless application- level protocol for distributed, collaborative, hypermedia information systems.  This document defines the HTTP Authentication framework.</t></abstract>
</front>
<seriesInfo name='RFC' value='7235'/>
<seriesInfo name='DOI' value='10.17487/RFC7235'/>
</reference>



<reference  anchor="RFC7540" target='https://www.rfc-editor.org/info/rfc7540'>
<front>
<title>Hypertext Transfer Protocol Version 2 (HTTP/2)</title>
<author initials='M.' surname='Belshe' fullname='M. Belshe'><organization /></author>
<author initials='R.' surname='Peon' fullname='R. Peon'><organization /></author>
<author initials='M.' surname='Thomson' fullname='M. Thomson' role='editor'><organization /></author>
<date year='2015' month='May' />
<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 perception of latency by introducing header field compression and allowing multiple concurrent exchanges on the same connection.  It also introduces unsolicited push of representations from servers to clients.</t><t>This specification is an alternative to, but does not obsolete, the HTTP/1.1 message syntax.  HTTP's existing semantics remain unchanged.</t></abstract>
</front>
<seriesInfo name='RFC' value='7540'/>
<seriesInfo name='DOI' value='10.17487/RFC7540'/>
</reference>



<reference  anchor="RFC7320" target='https://www.rfc-editor.org/info/rfc7320'>
<front>
<title>URI Design and Ownership</title>
<author initials='M.' surname='Nottingham' fullname='M. Nottingham'><organization /></author>
<date year='2014' month='July' />
<abstract><t>Section 1.1.1 of RFC 3986 defines URI syntax as &quot;a federated and extensible naming system wherein each scheme's specification may further restrict the syntax and semantics of identifiers using that scheme.&quot;  In other words, the structure of a URI is defined by its scheme.  While it is common for schemes to further delegate their substructure to the URI's owner, publishing independent standards that mandate particular forms of URI substructure is inappropriate, because that essentially usurps ownership.  This document further describes this problematic practice and provides some acceptable alternatives for use in standards.</t></abstract>
</front>
<seriesInfo name='BCP' value='190'/>
<seriesInfo name='RFC' value='7320'/>
<seriesInfo name='DOI' value='10.17487/RFC7320'/>
</reference>



<reference  anchor="RFC6838" target='https://www.rfc-editor.org/info/rfc6838'>
<front>
<title>Media Type Specifications and Registration Procedures</title>
<author initials='N.' surname='Freed' fullname='N. Freed'><organization /></author>
<author initials='J.' surname='Klensin' fullname='J. Klensin'><organization /></author>
<author initials='T.' surname='Hansen' fullname='T. Hansen'><organization /></author>
<date year='2013' month='January' />
<abstract><t>This document defines procedures for the specification and registration of media types for use in HTTP, MIME, and other Internet protocols.  This memo documents an Internet Best Current Practice.</t></abstract>
</front>
<seriesInfo name='BCP' value='13'/>
<seriesInfo name='RFC' value='6838'/>
<seriesInfo name='DOI' value='10.17487/RFC6838'/>
</reference>



<reference  anchor="RFC5988" target='https://www.rfc-editor.org/info/rfc5988'>
<front>
<title>Web Linking</title>
<author initials='M.' surname='Nottingham' fullname='M. Nottingham'><organization /></author>
<date year='2010' month='October' />
<abstract><t>This document specifies relation types for Web links, and defines a registry for them.  It also defines the use of such links in HTTP headers with the Link header field.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5988'/>
<seriesInfo name='DOI' value='10.17487/RFC5988'/>
</reference>



<reference  anchor="RFC3864" target='https://www.rfc-editor.org/info/rfc3864'>
<front>
<title>Registration Procedures for Message Header Fields</title>
<author initials='G.' surname='Klyne' fullname='G. Klyne'><organization /></author>
<author initials='M.' surname='Nottingham' fullname='M. Nottingham'><organization /></author>
<author initials='J.' surname='Mogul' fullname='J. Mogul'><organization /></author>
<date year='2004' month='September' />
<abstract><t>This specification defines registration procedures for the message header fields used by Internet mail, HTTP, Netnews and other applications.  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='90'/>
<seriesInfo name='RFC' value='3864'/>
<seriesInfo name='DOI' value='10.17487/RFC3864'/>
</reference>



<reference anchor="W3C.REC-cors-20140116"
           target='http://www.w3.org/TR/2014/REC-cors-20140116'>
<front>
<title>Cross-Origin Resource Sharing</title>

<author initials='A.' surname='Kesteren' fullname='Anne van Kesteren'>
    <organization />
</author>

<date month='January' day='16' year='2014' />
</front>

<seriesInfo name='World Wide Web Consortium Recommendation' value='REC-cors-20140116' />
<format type='HTML' target='http://www.w3.org/TR/2014/REC-cors-20140116' />
</reference>




    </references>

    <references title='Informative References'>

<reference anchor="HTML5" target="https://html.spec.whatwg.org">
  <front>
    <title>HTML - Living Standard</title>
    <author initials="." surname="various" fullname="various">
      <organization>WHATWG</organization>
    </author>
    <date year="2017" month="September" day="22"/>
  </front>
</reference>
<reference anchor="FETCH" target="https://fetch.spec.whatwg.org">
  <front>
    <title>Fetch - Living Standard</title>
    <author initials="." surname="various" fullname="various">
      <organization>WHATWG</organization>
    </author>
    <date year="2017" month="September" day="22"/>
  </front>
</reference>




<reference  anchor="RFC0854" target='https://www.rfc-editor.org/info/rfc854'>
<front>
<title>Telnet Protocol Specification</title>
<author initials='J.' surname='Postel' fullname='J. Postel'><organization /></author>
<author initials='J.K.' surname='Reynolds' fullname='J.K. Reynolds'><organization /></author>
<date year='1983' month='May' />
<abstract><t>This is the specification of the Telnet protocol used for remote    terminal access in the ARPA Internet.  The purpose of the TELNET    Protocol is to provide a fairly general, bi-directional, eight-bit    byte oriented communications facility.  Its primary goal is to allow    a standard method of interfacing terminal devices and    terminal-oriented processes to each other.  It is envisioned that the    protocol may also be used for terminal-terminal communication    (&quot;linking&quot;) and process-process communication (distributed    computation).   This RFC specifies a standard for the ARPA Internet    community.  Hosts on the ARPA Internet are expected to adopt and    implement this standard.  Obsoletes NIC 18639.</t></abstract>
</front>
<seriesInfo name='STD' value='8'/>
<seriesInfo name='RFC' value='854'/>
<seriesInfo name='DOI' value='10.17487/RFC0854'/>
</reference>



<reference  anchor="RFC0959" target='https://www.rfc-editor.org/info/rfc959'>
<front>
<title>File Transfer Protocol</title>
<author initials='J.' surname='Postel' fullname='J. Postel'><organization /></author>
<author initials='J.' surname='Reynolds' fullname='J. Reynolds'><organization /></author>
<date year='1985' month='October' />
<abstract><t>This memo is the official specification of the File Transfer Protocol    (FTP) for the DARPA Internet community.  The primary intent is to    clarify and correct the documentation of the FTP specification, not to    change the protocol.  The following new optional commands are included    in this edition of the specification:  Change to Parent Directory    (CDUP), Structure Mount (SMNT), Store Unique (STOU), Remove Directory    (RMD), Make Directory (MKD), Print Directory (PWD), and System (SYST).    Note that this specification is compatible with the previous edition.</t></abstract>
</front>
<seriesInfo name='STD' value='9'/>
<seriesInfo name='RFC' value='959'/>
<seriesInfo name='DOI' value='10.17487/RFC0959'/>
</reference>



<reference  anchor="RFC2821" target='https://www.rfc-editor.org/info/rfc2821'>
<front>
<title>Simple Mail Transfer Protocol</title>
<author initials='J.' surname='Klensin' fullname='J. Klensin' role='editor'><organization /></author>
<date year='2001' month='April' />
<abstract><t>This document is a self-contained specification of the basic protocol for the Internet electronic mail transport.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='2821'/>
<seriesInfo name='DOI' value='10.17487/RFC2821'/>
</reference>



<reference  anchor="RFC6455" target='https://www.rfc-editor.org/info/rfc6455'>
<front>
<title>The WebSocket Protocol</title>
<author initials='I.' surname='Fette' fullname='I. Fette'><organization /></author>
<author initials='A.' surname='Melnikov' fullname='A. Melnikov'><organization /></author>
<date year='2011' month='December' />
<abstract><t>The WebSocket Protocol enables two-way communication between a client running untrusted code in a controlled environment to a remote host that has opted-in to communications from that code.  The security model used for this is the origin-based security model commonly used by web browsers.  The protocol consists of an opening handshake followed by basic message framing, layered over TCP.  The goal of this technology is to provide a mechanism for browser-based applications that need two-way communication with servers that does not rely on opening multiple HTTP connections (e.g., using XMLHttpRequest or &lt;iframe&gt;s and long polling).  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='6455'/>
<seriesInfo name='DOI' value='10.17487/RFC6455'/>
</reference>



<reference  anchor="RFC0793" target='https://www.rfc-editor.org/info/rfc793'>
<front>
<title>Transmission Control Protocol</title>
<author initials='J.' surname='Postel' fullname='J. Postel'><organization /></author>
<date year='1981' month='September' />
</front>
<seriesInfo name='STD' value='7'/>
<seriesInfo name='RFC' value='793'/>
<seriesInfo name='DOI' value='10.17487/RFC0793'/>
</reference>



<reference  anchor="RFC7159" target='https://www.rfc-editor.org/info/rfc7159'>
<front>
<title>The JavaScript Object Notation (JSON) Data Interchange Format</title>
<author initials='T.' surname='Bray' fullname='T. Bray' role='editor'><organization /></author>
<date year='2014' month='March' />
<abstract><t>JavaScript Object Notation (JSON) is a lightweight, text-based, language-independent data interchange format.  It was derived from the ECMAScript Programming Language Standard.  JSON defines a small set of formatting rules for the portable representation of structured data.</t><t>This document removes inconsistencies with other specifications of JSON, repairs specification errors, and offers experience-based interoperability guidance.</t></abstract>
</front>
<seriesInfo name='RFC' value='7159'/>
<seriesInfo name='DOI' value='10.17487/RFC7159'/>
</reference>



<reference  anchor="RFC4367" target='https://www.rfc-editor.org/info/rfc4367'>
<front>
<title>What's in a Name: False Assumptions about DNS Names</title>
<author initials='J.' surname='Rosenberg' fullname='J. Rosenberg' role='editor'><organization /></author>
<author><organization>IAB</organization></author>
<date year='2006' month='February' />
<abstract><t>The Domain Name System (DNS) provides an essential service on the Internet, mapping structured names to a variety of data, usually IP addresses.  These names appear in email addresses, Uniform Resource Identifiers (URIs), and other application-layer identifiers that are often rendered to human users.  Because of this, there has been a strong demand to acquire names that have significance to people, through equivalence to registered trademarks, company names, types of services, and so on.  There is a danger in this trend; the humans and automata that consume and use such names will associate specific semantics with some names and thereby make assumptions about the services that are, or should be, provided by the hosts associated with the names.  Those assumptions can often be false, resulting in a variety of failure conditions.  This document discusses this problem in more detail and makes recommendations on how it can be avoided.  This memo provides information for the Internet community.</t></abstract>
</front>
<seriesInfo name='RFC' value='4367'/>
<seriesInfo name='DOI' value='10.17487/RFC4367'/>
</reference>



<reference  anchor="RFC5785" target='https://www.rfc-editor.org/info/rfc5785'>
<front>
<title>Defining Well-Known Uniform Resource Identifiers (URIs)</title>
<author initials='M.' surname='Nottingham' fullname='M. Nottingham'><organization /></author>
<author initials='E.' surname='Hammer-Lahav' fullname='E. Hammer-Lahav'><organization /></author>
<date year='2010' month='April' />
<abstract><t>This memo defines a path prefix for &quot;well-known locations&quot;, &quot;/.well-known/&quot;, in selected Uniform Resource Identifier (URI) schemes.   [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='5785'/>
<seriesInfo name='DOI' value='10.17487/RFC5785'/>
</reference>



<reference  anchor="RFC7258" target='https://www.rfc-editor.org/info/rfc7258'>
<front>
<title>Pervasive Monitoring Is an Attack</title>
<author initials='S.' surname='Farrell' fullname='S. Farrell'><organization /></author>
<author initials='H.' surname='Tschofenig' fullname='H. Tschofenig'><organization /></author>
<date year='2014' month='May' />
<abstract><t>Pervasive monitoring is a technical attack that should be mitigated in the design of IETF protocols, where possible.</t></abstract>
</front>
<seriesInfo name='BCP' value='188'/>
<seriesInfo name='RFC' value='7258'/>
<seriesInfo name='DOI' value='10.17487/RFC7258'/>
</reference>



<reference  anchor="RFC6454" target='https://www.rfc-editor.org/info/rfc6454'>
<front>
<title>The Web Origin Concept</title>
<author initials='A.' surname='Barth' fullname='A. Barth'><organization /></author>
<date year='2011' month='December' />
<abstract><t>This document defines the concept of an &quot;origin&quot;, 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 &quot;Origin&quot;, 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="RFC6265" target='https://www.rfc-editor.org/info/rfc6265'>
<front>
<title>HTTP State Management Mechanism</title>
<author initials='A.' surname='Barth' fullname='A. Barth'><organization /></author>
<date year='2011' month='April' />
<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="W3C.CR-secure-contexts-20160915"
           target='https://www.w3.org/TR/2016/CR-secure-contexts-20160915'>
<front>
<title>Secure Contexts</title>

<author initials='M.' surname='West' fullname='Mike West'>
    <organization />
</author>

<date month='September' day='15' year='2016' />
</front>

<seriesInfo name='World Wide Web Consortium CR' value='CR-secure-contexts-20160915' />
<format type='HTML' target='https://www.w3.org/TR/2016/CR-secure-contexts-20160915' />
</reference>



<reference  anchor="RFC7595" target='https://www.rfc-editor.org/info/rfc7595'>
<front>
<title>Guidelines and Registration Procedures for URI Schemes</title>
<author initials='D.' surname='Thaler' fullname='D. Thaler' role='editor'><organization /></author>
<author initials='T.' surname='Hansen' fullname='T. Hansen'><organization /></author>
<author initials='T.' surname='Hardie' fullname='T. Hardie'><organization /></author>
<date year='2015' month='June' />
<abstract><t>This document updates the guidelines and recommendations, as well as the IANA registration processes, for the definition of Uniform Resource Identifier (URI) schemes.  It obsoletes RFC 4395.</t></abstract>
</front>
<seriesInfo name='BCP' value='35'/>
<seriesInfo name='RFC' value='7595'/>
<seriesInfo name='DOI' value='10.17487/RFC7595'/>
</reference>



<reference  anchor="RFC7605" target='https://www.rfc-editor.org/info/rfc7605'>
<front>
<title>Recommendations on Using Assigned Transport Port Numbers</title>
<author initials='J.' surname='Touch' fullname='J. Touch'><organization /></author>
<date year='2015' month='August' />
<abstract><t>This document provides recommendations to designers of application and service protocols on how to use the transport protocol port number space and when to request a port assignment from IANA.  It provides designer guidance to requesters or users of port numbers on how to interact with IANA using the processes defined in RFC 6335; thus, this document complements (but does not update) that document.</t></abstract>
</front>
<seriesInfo name='BCP' value='165'/>
<seriesInfo name='RFC' value='7605'/>
<seriesInfo name='DOI' value='10.17487/RFC7605'/>
</reference>



<reference  anchor="RFC4791" target='https://www.rfc-editor.org/info/rfc4791'>
<front>
<title>Calendaring Extensions to WebDAV (CalDAV)</title>
<author initials='C.' surname='Daboo' fullname='C. Daboo'><organization /></author>
<author initials='B.' surname='Desruisseaux' fullname='B. Desruisseaux'><organization /></author>
<author initials='L.' surname='Dusseault' fullname='L. Dusseault'><organization /></author>
<date year='2007' month='March' />
<abstract><t>This document defines extensions to the Web Distributed Authoring and Versioning (WebDAV) protocol to specify a standard way of accessing, managing, and sharing calendaring and scheduling information based on the iCalendar format.  This document defines the &quot;calendar-access&quot; feature of CalDAV.  [STANDARDS-TRACK]</t></abstract>
</front>
<seriesInfo name='RFC' value='4791'/>
<seriesInfo name='DOI' value='10.17487/RFC4791'/>
</reference>



<reference  anchor="RFC7617" target='https://www.rfc-editor.org/info/rfc7617'>
<front>
<title>The 'Basic' HTTP Authentication Scheme</title>
<author initials='J.' surname='Reschke' fullname='J. Reschke'><organization /></author>
<date year='2015' month='September' />
<abstract><t>This document defines the &quot;Basic&quot; Hypertext Transfer Protocol (HTTP) authentication scheme, which transmits credentials as user-id/ password pairs, encoded using Base64.</t></abstract>
</front>
<seriesInfo name='RFC' value='7617'/>
<seriesInfo name='DOI' value='10.17487/RFC7617'/>
</reference>




    </references>


<section anchor="changes-from-rfc3205" title="Changes from RFC3205">

<t>RFC3205 captured the Best Current Practice in the early 2000’s, based on the concerns facing
protocol designers at the time. Use of HTTP has changed considerably since then, and as a result
this document is substantially different. As a result, the changes are too numerous to list
individually.</t>

</section>


  </back>

<!-- ##markdown-source:
H4sIABnFMFoAA8VcW3PbSHZ+x69A6AdbG5K62PJNqZ3VyPZaiS+KJWdqK5Wy
m0RTxAoEuGhANOPyf8/5zjndaEC0ZmsrqcyDRyQbfTnX71wak8kkafKmsC/T
j2XaLG3aOptWi/Tt1dVFalxq0st25praNDbJqnlpVjQ0q82imeS2WUyWTbOe
5W4ym6+Pn+KPg4Mko8Ev06ODw2fJnP68rurty5QGJNXMVYVtrHuZPj46OE6S
fF2/TJu6dc3RwcGLg6PE1Na8TE/X6yKnR/OqpB2UWfrJmmJyla9ssqnqm+u6
atcveYvJjd3SV9nL9LxsbF3aZvIKm+u+74/6zc66Dy6cLHENLfPFFFVJO99a
l6zzl+l/NtV8nNI/eZnZshmnrqqb2i4c/bVd6R9Nnc/pp3m1Whv9Y0WD6ae8
LPLS/leSmLZZVvXLJJ0kKf2Xl3T+99P0Q9U0eXm9NCv+Wkj73tQ3w1+q+tqU
+X8zPV7yN3Zl8uJluiqr5k/4Z0oH5x/amvYNnriX+/ubzWbqf90nYpeLql7R
LLcWs7y9ev/uWKZrTH1tm+7BZbMqpm5t59PN0jSb6yntQAaKqODRdJK+y29p
l+klaGfqjEeEs+I/OW84862p86p14Us58fBbWov49Pb06rc/83edNE0OXkyO
jujLN6+vzt7u3vrCNvPlfXt/gwH/f5tPkslkkhoWvHmTJKxnuSOVa2wJ5ctE
64JspsS0tCLNrFPTqUW6risSzKpw0/RqSc+TbraQuxRHzxe5denMuiZZY5l8
Th8xD01D6h2efRhr+1T3RgJjv3zAP031hRQvs7X7kiSvcjdvncPa9EDDa0LT
iAM3NPu6MHOaSmwIHwqaCgqztqYQWHwqctekyaNgOyab6z9tHoNJe+N0s8yJ
NzSzqedLElOiRZP+i2ctHnVTGbx/KiPc/kU7I6LsxxPu/5HO8psu/2dePsg+
7XBuSqIN0aMtuwVY6ps1yct13izb2TSv9v94Qhrf1nSueZVZNkS5cy2dFltJ
hKCBDjunxb51QjIMugT/b2K/EcdBT7dfmJkt3L63odg+OLHKs6wg4/QAxq2u
snaO/avMfP/+T5/enD07enzw48f/hgCxDJUy2iSQa9tswWqyyI42CXs2L9qM
aPoySf6QLsyKOErDaNRsm+ardWEhgCQt4yCE+Ntkq7zMeS8VPmf21hbVmn5j
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
Q6u3tH7IyNeo5mPkr1ofOR82P3x/oKWTH/zAqVw5OZOelyR5T36iLvvFpNCE
Ija4u07jTQe310v/HGd14xsCHAN2CeG9RDr/sWiXJecJjNxgHHfmktPRkqK2
3O7SNtuRBznckWP0inYf9UmWzpte+w2IJeXbWz7v7O8zDYpyCje7/kKyIkh/
kt2YzClURNLzycHh4VO2KZyB3HGNJ+6dvWSufn8gUvK73lBf8Naw5d+Vyubt
ad9CV3hSZMq1I73O3cFaf1YV3FauOGm1yInZjsKAXit8WKrrhv79A0hFqUeX
JM64n2hndPqrcbS/QW5e068+rXj4TF4QKVcw8qZnXVguQpT+ECnuh1EOV0JH
m3OwjTq+L9H33ntBqqhIqxdAUSzkr5LprYNheRPnSDjtoSLmYKxwA0toXg3q
muqwYValIUSK9WY1Eyb6S6R7Y765WuXS85d43z1N30sFXW8giBf3DlUZOom8
BTrc43Kb9EKVIQQVpurtEX6zSz/DO3y7ngZuPSu30JfCIMv7s0xxknRmMpMX
sfpmsJCDlmME2Y+LyHrR3mNkUG1IMkm36r0Gx/chPKWmvLo0PPzwe3e9ujUL
jmPJ0ao0N0BxPkj2qRLQSZjcivUdDcl9HQ33d9Cwb5HXO8kveXlbccJbugdU
K3ZfXlz0Gmj4aHJ/rjvb8P2SfAfMcA43XGnW5CtNWOfuBu9ZEvdMMj0MtdMR
TXozCi+IRM7LMFre9VqkcZeiDQBU36kRkt2Jvr6vd1eLC+Za29RXAnrRQt8N
YauVvpmUzDKdlfFKu3aoPq30/bMIlCCUZ/LeJZkYmJDf3a1/QEPlrggbJPRP
n+lbIy+iC9jcLYSsX3p0cHDwEF2H3P1WhVQSwQOUXMycX7TVvbWS63h16OND
/D+N7zmxUkmhU6veUJsZrJEPWPXii+ncXdJ/7x9f6ZmBnZpVDTHMwEnyXpUc
cn2mQmsLIYSWkzb8YmB0597mGQN/tg3/AytQdb1mXQAA

-->

</rfc>

