Skip to content

Configuring WS-Trust Security Token Service

WSO2 Identity Server uses the security token service (STS) as the WS-Trust implementation.

The STS is capable of issuing SAML 1.1 and 2.0 security tokens and has a SOAP/XML API for token issuance.

Download the STS connector

WS-Trust authentication is no longer supported by default from IS 5.11.0 upwards and has been introduced as a connector. In order to use WS-Trust authentication, first, you should download the connector from the WSO2 Connector Store.

To download and install the WS-Trust connector:

  1. Download the WS-Trust Authenticator from the WSO2 connector store.
  2. Copy and past the downloaded .zip file to the home directory of the Identity Server and extract the .zip.
  3. Navigate to the home of the extracted directory and execute the following commands.
    chmod u+r+x setup_sts.sh
    ./setup_sts.sh 
  4. The connector is successfully installed. Now you can delete the extracted directory.

Securing the Security Token Service

According to the trust brokering model defined in the WS-Trust specification, the users should authenticate themselves to the STS before obtaining a token. STS may use this authentication information when constructing the security token.

For example, STS may populate the required claims based on the username provided by the user. Therefore, the STS service needs to be secured.

To secure the Security Token Service:

  1. On the Management console, go to Identity Providers > Resident.

  2. Enter the required values as given below.

    Field Description Sample Value
    Home Realm Identifier This is the domain name of the identity provider. If you do not enter a value here, the user will be prompted to specify a domain, when an authentication request comes to WSO2 Identity Server. You can enter multiple identifiers as a comma-separated list. localhost
    Idle Session Time Out This is the duration in minutes for which an SSO session can be idle. If WSO2 Identity Server receives no SSO authentication requests for the given duration, a session time-out occurs. The default value is 15 . 15
    Remember Me Period

    This is the duration in weeks for which WSO2 Identity Server should remember an SSO session given that the Remember Me option is selected in the WSO2 Identity Server login screen.

    The default value is 2 weeks.

    2

  3. Expand Inbound Authentication Configuration > Security Token Service Configuration and click Apply Security Policy. security-token-service-config

  4. Select Yes from the Enable Security? list and select a pre-configured security scenario according to your requirements. We will be using UsernameToken under the Basic Scenarios section for this tutorial.
    enable-security

    Note

    You can find further details about security policy scenarios from the view scenario option. security-policy-scenarios

  5. Click Next.

    Info

    The next steps may vary according to the security scenario you have chosen under point (5) above. Below is for the UsernameToken scenario.

  6. Provide the required details as follows:

    1. Select ALL-USER-STORE-DOMAINS as the domain.
    2. Select the role you created to grant permission to access a secured service. In this example, the admin role is used.

      Note

      The Select Domain drop-down lists many domains. The listed User Groups can vary depending on the domain selected. select-domain

  7. Click Finish.

  8. Click Ok on the confirmation dialog window that appears.
  9. Click Update to save and complete the process.

Now STS is configured and secured with a username and password. Only users with the Admin role can consume the service.

The next step is to add a service provider to consume the STS.

Configure the service provider

The steps in this section should be followed if you are using a Holder of Key subject confirmation method.

For more information, see Configuring STS for Obtaining Tokens with Holder-Of-Key Subject Confirmation.

Info

The Subject confirmation methods define how a relying party (RP), which is the end service can make sure a particular security token issued by an STS is brought by the legitimate subject. If this is not done, a third party can take the token from the wire and send any request it wants including that token. The RP trusts that illegitimate party.

Before you begin

You must first register a service provider.

  1. On the Management console, go to Service Providers > List and select your service provider.
  2. Expand Inbound Authentication Configuration > WS-Trust Security Token Service Configuration and click Configure.

  3. Enter the required details as given below.

    Field Description Sample Value
    Endpoint Address
    Enter the trusted relying party's endpoint address, which is the endpoint address of the Security Token Service. For more information, see Broker Trust Relationship with WSO2 Identity Server.

    The endpoint must be used as the service URL to which the token gets delivered by the STS client. Then select the public certificate imported. Tokens issued are encrypted using the public certificate of the trusted relying party. Therefore, the consumer who obtains this token, to invoke the RP service, will not be able to see the token.

    Note

    Make sure to upload the certificate of the relying party to the truststore. For instructions, see Adding CA-signed certificates to keystores.

    https://localhost:9444/services/echo
    Certificate Alias This is the alias of the certificate. wso2carbon

    add-new-trusted-service

  4. Click Update to save your changes.

Related Topics

Run the STS client after configuring the service provider. For instructions on trying out a sample STS client, see Running an STS Client.

Top