vote up 3 vote down star
2

What is the correct way to log out of HTTP authentication protected folder?

There are workarounds that can achieve this, but they are potentially dangerous because they can be buggy or don't work in certain situations / browsers. That is why I am looking for correct and clean solution.

flag

63% accept rate
Please specify the purpose for your logout. Should this be a forced logout (user-deactivation)? Simple logout function for the user? Anything else? – Karsten Jan 16 at 9:38
I don't understand why this matters, but it is both cases: deactivation based on internal conditions in application as well as typical logout button. Please explain why it is important, I will edit it directly into the question. – Josef Sábl Jan 16 at 13:02

6 Answers

vote up 7 vote down check

This is a problem that comes from the HTTP specification (section 15.6):

Existing HTTP clients and user agents typically retain authentication information indefinitely. HTTP/1.1. does not provide a method for a server to direct clients to discard these cached credentials.

On the other hand, section 10.4.2 says:

If the request already included Authorization credentials, then the 401 response indicates that authorization has been refused for those credentials. If the 401 response contains the same challenge as the prior response, and the user agent has already attempted authentication at least once, then the user SHOULD be presented the entity that was given in the response, since that entity might include relevant diagnostic information.

In other words, you may be able to show the login box again (as @Karsten says), but the browser doesn't have to honor your request - so don't depend on this (mis)feature too much.

link|flag
vote up 0 vote down

The best solution I found so far is (it is sort of pseudo-code, the $isLoggedIn is pseudo variable for http auth):

At the time of "logout" just store some info to the session saying that user is actually logged out.

function logout()
{
  //$isLoggedIn = false; //This does not work (point of this question)
  $_SESSION['logout'] = true;
}

In the place where I check for authentication I expand the condition:

function isLoggedIn()
{
  return $isLoggedIn && !$_SESSION['logout'];
}

Session is somewhat linked to the state of http authentication so user stays logged out as long as he keeps the browser open and as long as http authentication persists in the browser.

link|flag
vote up 1 vote down

Method that works nicely in Safari. Also works in Firefox and Opera, but with a warning.

Location: http://logout:byebye@yourserver.example.com/

This tells browser to open URL with new username and password, overriding previous one.

link|flag
vote up 2 vote down

Workaround (not a clean and nice solution):

Disable his credentials one time.

You can move your HTTP authentication logic to PHP by sending the appropriate headers (if not logged in):

Header('WWW-Authenticate: Basic realm="protected area"');
Header('HTTP/1.0 401 Unauthorized');

And parsing the input with:

$_SERVER['PHP_AUTH_USER'] // httpauth-user
$_SERVER['PHP_AUTH_PW']   // httpauth-password

So disabling his credentials one time should be trivial.

link|flag
The problem with this solution is that: You let IE to know that credentials are not Ok. It displays login dialog with empty fields (not showing values stored in password manager). But when you click cancel and refresh the page, it sends stored credentials, thus logging in again. – Josef Sábl Jan 19 at 9:38
vote up 2 vote down

AFAIK, there's no clean way to implement a "logout" function when using htaccess (i.e. HTTP-based) authentication.

This is because such authentication uses the HTTP error code '401' to tell the browser that credentials are required, at which point the browser prompts the user for the details. From then on, until the browser is closed, it will always send the credentials without further prompting.

link|flag
vote up 1 vote down

Typically, once a browser has asked the user for credentials and supplied them to a particular web site, it will continue to do so without further prompting. Unlike the various ways you can clear cookies on the client side, I don't know of a similar way to ask the browser to forget its supplied authentication credentials.

link|flag
I believe there's an option to delete authenticated sessions when you select "Delete private data" in Firefox – Kristian J. Jan 16 at 9:02
Also Web Developer Toolbar extension for Firefox offers feature to delete HTTP Authentications. But this is out of question as we really can't ask our users to download FF extensions or run cryptic browser commands :-) – Josef Sábl Mar 3 at 21:28

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.