YubiKey Authentication
Yubico is a cloud-based service that enables strong, easy-to-use and affordable two-factor authentication with one-time passwords
through their flagship product, YubiKey. Once Yubico clientId
and secretKey
are obtained, then the configuration option
is available to use YubiKey devices as a primary authentication source that CAS server could use to authenticate users.
To configure YubiKey accounts and obtain API keys, refer to the documentation.
YubiKey authentication components are enabled by including the following dependencies in the WAR overlay:
1
2
3
4
5
<dependency>
<groupId>org.apereo.cas</groupId>
<artifactId>cas-server-support-yubikey</artifactId>
<version>${cas.version}</version>
</dependency>
Configuration
To see the relevant list of CAS properties, please review this guide.
By default, all YubiKey accounts for users are allowed to authenticate. Devices that need to be authorized for authentication need to have followed an out-of-band registration process where the record for them is found in one of the following storage backends. Upon authentication, CAS will begin to search the configured registration database for matching record for the authenticated user and device in order to allow for a successful authentication event.
JSON
Registration records may be tracked inside a JSON file, provided the file path is specified in CAS settings. See review this guide for more info.
The JSON structure is a simple map of user id to yubikey public id representing any particular device:
1
2
3
4
{
"uid1": "yubikeyPublicId1",
"uid2": "yubikeyPublicId2"
}
Whitelist
Registration records may be specificied statically via CAS settings in form of a map that links registered usernames with the public id of the YubiKey device. See review this guide for more info.
JPA
Support is enabled by including the following dependencies in the WAR overlay:
1
2
3
4
5
<dependency>
<groupId>org.apereo.cas</groupId>
<artifactId>cas-server-support-yubikey-jpa</artifactId>
<version>${cas.version}</version>
</dependency>
The expected database schema that is automatically created and configured by CAS contains a single table as YubiKeyAccount
with the following fields:
Field | Description |
---|---|
id |
Unique record identifier, acting as the primary key. |
publicId |
The public identifier/key of the device used for authentication. |
username |
The username whose device is registered. |
MongoDb
Support is enabled by including the following dependencies in the WAR overlay:
1
2
3
4
5
<dependency>
<groupId>org.apereo.cas</groupId>
<artifactId>cas-server-support-yubikey-mongo</artifactId>
<version>${cas.version}</version>
</dependency>
The registration records are kept inside a single MongoDb collection of your choosing that will be auto-created by CAS. The structure of this collection is as follows:
Field | Description |
---|---|
id |
Unique record identifier, acting as the primary key. |
publicId |
The public identifier/key of the device used for authentication. |
username |
The username whose device is registered. |
Custom
If you wish to plug in a custom registry implementation that would determine
which users are allowed to use their YubiKey accounts for authentication, you may plug in a custom implementation of the YubiKeyAccountRegistry
that allows you to provide a mapping between usernames and YubiKey public keys.
1
2
3
4
5
6
7
8
9
10
11
package org.apereo.cas.support.yubikey;
@Configuration("myYubiKeyConfiguration")
@EnableConfigurationProperties(CasConfigurationProperties.class)
public class MyYubiKeyConfiguration {
@Bean
public YubiKeyAccountRegistry yubiKeyAccountRegistry() {
...
}
}
Device Registrations
In the event that a new YubiKey should be registered, it may be desirable to execute additional validation processes before the account is registered with the underlying store. By default, the device registration step only verifies the device token. If you wish to extend this behavior, you can design your own validator that cross-checks the account against alternative sources and databases for validity and authorization:
1
2
3
4
5
6
7
8
9
10
11
package org.apereo.cas.support.yubikey;
@Configuration("myYubiKeyConfiguration")
@EnableConfigurationProperties(CasConfigurationProperties.class)
public class MyYubiKeyConfiguration {
@Bean
public YubiKeyAccountValidator yubiKeyAccountValidator() {
...
}
}
See this guide to learn more about how to register configurations into the CAS runtime.