Single sign out with Azure ACS

This content is more than 3 years old. Please read this keeping its age in mind.

The problem

While an application recently I had problems with our Facebook integration, namely rule 6. This rule require us to provide an explicit logout link.

6. Your website must offer an explicit “Log Out” option that also logs the user out of Facebook

– Facebook Guidelines

However Azure ACS 2.0 doesn’t really support single sign out making the requirement a little harder to meet.

This isn’t just Facebook being difficult, it makes sense to enforce this on every identity provider that we federate with. If the user signs into your website via a large identity provider like Facebook, it is not obvious to the user that they need to explicitly visit Facebook to logout after they log out of your website.

Signing out of the identity provider as well as your website helps prevent unauthorised access by third parties. Leaving the user signed into the identity provider leaves your website (and any other federated website) open to the next person that hops on that computer.

The solution

There are a couple of solutions out there using an intermediary page with either an image tag or an iFrame to call the identity provider’s logout URL during the logout process.

They both follow the same concept where the user’s browser is asked to call the logout URL of the identity provider that they used to sign in with. This can’t be a back channel process as we need the user’s browser to pass on the cookies for the identity provider so that the identity provider knows who to log out.

We went the image tag approach as it provides an easy way to trigger the completion of the sign out process by hooking into the image tag’s onerror event.

The implementation

Here’s how we implemented the process on our MVC 3 web application.

It involves

  • a little extra code in the existing sign out action
  • a new model
  • a new view.

Step1: Create the model

public class SignOutModel
{
    public string IdentityProviderLogoutUrl { get; set; }
    public string IdentityProviderName { get; set; }
}

Step 2: Create the view

@model SignOutModel
...
<h1>Please stand by, we're currently signing you out of this website and @Model.IdentityProviderName...</h1>
<img src="@Model.IdentityProviderLogoutUrl" onerror="window.location='/';" />
...

Step 3: Update the SignOut action

//Existing logout logic to log out of current website
//ExtractClaim is a custom extension method, but all we're doing here is inspecting the current 
//user's claims and grabbing the provider one that ACS hands us to id the identity provider
var provider = User.ExtractClaim("http://schemas.microsoft.com/accesscontrolservice/2010/07/claims/identityprovider");

SignOutModel model = null;
if (provider.Contains("Google"))
{
    model = new SignOutModel{
            IdentityProviderLogoutUrl = "https://www.google.com/accounts/Logout",
            IdentityProviderName = "Google"
    };
}else if(...
    //Repeat for each provider that you support
....
return View(model);

Each identity provider has a different logout URL, here’s a couple of the common ones

The Facebook sign out URL is the only one with a special format

  • {accesstoken} is the Facebook access token that ACS returns as a claim
  • {encoded ACS url} is in the form https://{namespace}.accesscontrol.windows.net/v2/wsfederation?wa=wsignoutcleanup1.0 where {namespace} is your ACS namespace

Conclusion

ACS may not directly support single sign out but you can easily log the user out of their identity provider as well as your website using this technique.

Noticed an error or omission? Please look at submitting a pull request.