Kerberos OAuth2 Grant
Kerberos is a security protocol that has support built into various operating systems and open-source distributions (e.g., Ubuntu, Windows, RedHat, Open Solaris, etc). In addition, a majority of browsers support some Kerberos functions as well. As WSO2 API Manager uses the OAuth 2.0 protocol, the Kerberos OAuth2 grant type allows organizations to exchange a Kerberos ticket for an OAuth 2.0 token. Thereby, allowing organizations to re-use their existing Kerberos infrastructure, while easier adopting OAuth 2.0 within these organizations.
Kerberos OAuth2 grant flow
The following section describes the flow involved in exchanging a Kerberos ticket for an OAuth2 token.
- The Kerberos client requests the Kerberos Service Ticket from the Kerberos Key Distribution Center (KDC) to invoke the service.
The Kerberos Key Distribution Center can be any Kerberos Server. - The Kerberos Key Distribution Center sends a response with the Kerberos Service Ticket.
If the client and the requested service is valid, the Key Distribution Center (KDC) sends a Kerberos ticket encrypted with the service owners private key. The API handles the exchanging of the Ticket Granting Ticket (TGT), Service Granting Ticket (SGT), and all other low-level Kerberos details. The Kerberos client requests the OAuth2 token.
The message format of the OAuth2 token request should be as follows:The Kerberos client receives the OAuth2 token.
The Kerberos Grant validates the received token with the provided Identity Provider (IDP) credentials and if it is a valid token, it issues an OAuth2 token to the client.Example{ "access_token":"636ce45f-c7f6-3a95-907f-d1f8aca28403", "refresh_token":"831271d9-16ba-3bad-af18-b9f6592a8677", "scope":"my_scope", "token_type":"Bearer", "expires_in":521 }
Configuring Kerberos Grant with API Manager
Follow the instructions below to configure Kerberos Grant with WSO2 API Manager:
Download the kerberos_grant_1.0.0.jar
from here. Copy it to the <API-M_HOME>/repository/components/lib
folder.
Add following entry under
<SupportedGrantTypes>
in the<API-M_HOME>/repository/conf/identity/identity.xml
file.<SupportedGrantType> <GrantTypeName>kerberos</GrantTypeName> <GrantTypeHandlerImplClass>org.wso2.carbon.identity.oauth2.grant.kerberos.ExtendedKerberosGrant</GrantTypeHandlerImplClass> <GrantTypeValidatorImplClass>org.wso2.carbon.identity.oauth2.grant.kerberos.KerberosGrantValidator</GrantTypeValidatorImplClass> </SupportedGrantType>
Create a file named
jaas.conf
in the<API-M_HOME>/repository/conf/identity
directory with the following content.Server { com.sun.security.auth.module.Krb5LoginModule required useKeyTab=tfalse storeKey=true useTicketCache=false isInitiator=false; }; Client { com.sun.security.auth.module.Krb5LoginModule required useTicketCache=false; };
- Copy the following JARs into the
<API-M_HOME>/repository/components/dropins
directory. Configure OAuth2 for your client application with the Kerberos grant type.
Start the WSO2 API-M server by navigating to the
<API-M_HOME>/bin
directory in your console and running one of the following scripts based on your OS.On Windows:
wso2server.bat --run
On Linux/Mac OS:
sh wso2server.sh
Sign into the API Store.
https://<hostname>:9443/store
Click Applications and click on the name of the application that you want to configure the OAuth2 with the Kerberos grant type.
Generate the Production Keys.
Click Production Keys.
Click on the Kerberos checkbox as shown in the screenshot.
- Click Generate Keys to generate the keys.
Generate the Sandbox Keys.
Click Sandbox Keys.
Click on the Kerberos checkbox.
Click Generate Keys to generate the keys.
Configure the Service Principal Name (
SPNName)
and Service Principal Password (SPNPassword)
.A service principal name (SPN) is a unique identifier of a service instance. SPNs are used by Kerberos authentication to associate a service instance with a service logon account. This allows a client application to request that the service authenticate an account even if the client does not have the account name.
Sign in to the WSO2 API-M Management Console.
https://<Server-Host>:9443/carbon
Navigate to the Main menu, click Add under the Identity Provider menu.
Add a new Identity Provider (IDP).
The IDP name should be the name of the realm. Based on this example, it should be
example.com
). An identity provider is needed here to manage the KDC Service. It provides access to an identity stored in a Kerberos authentication server.Identity Provider Name: example.com
- Alias: https://192.168.53.12:9443/oauth2/token
- Server Principal Name: HTTP/idp.example.com@EXAMPLE.COM
Generate the Kerberos token.
Let's follow the instructions below to generate the Kerberos token using the
KerbClientProject
sample client.Git clone the
KerbClientProject
.git clone https://github.com/erandacr/KerbClientProject
Run
KerbClient.cs
using an IDE.You can run it using Visual Studio by downloading and installing the following required libraries and programs.
You can use any other IDE to run this project.
Visual Studio sdk (.NET Core 2.1)
Microsoft Visual Studio (Professional Edition)
Install
System.Net.Http.dll
and define the path in theKerbClientProject.csproj
file.
Configure the following parameters in the project according to your setup.
// Service Name goes here static string serviceName = "HTTP/apimserver.example.com@EXAMPLE.COM"; // Token endpoint URL static string URI = "https://idp.example.com:9443/oauth2/token"; // Client ID static string username = "1ouL2fO6SxlfD2LDw125cTo0vQka"; // Client Secret static string password = "uUEtm89tY6QZuZUmqZfL92BDFeAa"; // Kerberos realm name static string realm_Name = "example.com";
Run the project.
Select the Start without Debugging option in the Visual Studio editor to run the project.The latter mentioned action will also invoke the token endpoint using the message format that was discussed in step 3.
This project generates a Kerberos ticket. Thereafter it generates the Kerberos token using the Kerberos ticket, and finally, it passes the Kerberos token to generate the OAuth token.
For the users to be counted in the Registered Application Users statistics, which considers the number of users that are shared across each application, they should generate access tokens using the Password Grant type.