Content deleted Content added
No edit summary |
Blackmeyer (talk | contribs) No edit summary Tag: Reverted |
||
Line 1:
{{Short description|Access control method for the HTTP network communication protocol}}
In the context of an [[HTTP]] transaction, '''basic access authentication''' is a method for an [[User agent|HTTP user agent]] (e.g., a [[web browser]]) to provide a [[
It was originally implemented by [[Ari
It is specified in {{IETF RFC|7617}} from 2015, which obsoletes {{IETF RFC|2617}} from 1999
== Features ==
Line 13:
Because the BA field has to be sent in the header of each HTTP request, the web browser needs to [[Cache (computing)|cache]] credentials for a reasonable period of time to avoid constantly prompting the user for their username and password. Caching policy differs between browsers.
HTTP does not provide a method for a web server to instruct the client to
<syntaxhighlight lang="html">
Line 19:
</syntaxhighlight>
In modern browsers, cached credentials for basic authentication are typically cleared when clearing browsing history. Most browsers allow users to specifically clear only credentials, though the option may be hard to find, and typically clears credentials for all visited sites.<ref>{{
Brute forcing credentials is not actively prevented or detected (unless a server-side mechanism is used).
Line 26:
=== Server side ===
When the server wants the user agent to authenticate itself towards the server after receiving an unauthenticated request, it must send a response with a ''HTTP 401 Unauthorized'' status line<ref>{{cite web|title=RFC 1945 Section 11. Access Authentication|
The ''WWW-Authenticate'' header field for basic authentication is constructed as the following:
<code>
Line 34:
</code>
The server may choose to include the ''
<code>
Line 45:
When the user agent wants to send authentication credentials to the server, it may use the ''Authorization'' header field.
The ''Authorization'' header field is constructed as follows:<ref name="RFC7617">{{cite web|
# The username and password are combined with a single colon
# The resulting string is encoded into an octet sequence. The character set to use for this encoding is by default unspecified, as long as it is compatible with US-ASCII, but the server may suggest use of UTF-8 by sending the ''
# The resulting string is encoded using a variant of Base64 (+/ and with padding).
# The authorization method and a space character (e.g.,
For example, if the browser uses ''Aladdin'' as the username and ''open sesame'' as the password, then the field's value is the Base64 encoding of ''Aladdin:open sesame'', or ''QWxhZGRpbjpvcGVuIHNlc2FtZQ==''. Then the ''Authorization'' header field will appear as:
Line 67:
==External links==
*{{cite web|title=RFC 7235
[[Category:Hypertext Transfer Protocol]].
[[Category:Computer access control protocols]]
[[
|