12. Applications and Machines or Services

privacyIDEA supports authentication schemes, that happen on other machines or services with special applications.

privacyIDEA lets you define Machine Resolvers to connect to existing machine stores. The idea is for users to be able to authenticate on those client machines. Not in all cases an online authentication request is possible, so that authentication items can be passed to those client machines.

In addition you need to define, which application or service on the client machine the user should authenticate to. Different application require different authentication items.

Therefore privacyIDEA can define application types. At the moment privacyIDEA knows the application luks, offline and ssh. You can write your own application class, which is defined in Application class.

You need to attach a token via an application to a client machine or service. Each application type can work with certain token types and each application type can use additional parameters.

Note

Not all token types work well with all applications!

12.1. SSH

Currently working token types: SSH

Parameters:

user (optional, default=root)

service_id (required)

When the SSH token type is assigned to a client, the user specified in the user parameter can login with the private key of the SSH token.

The service_id identifies the SSH servers or group of SSH servers, where the login is allowed to occur. Read more about Service IDs.

12.1.1. authorized keys command

To facilitate this, the SSH server fetches the managed SSH keys from the privacyIDEA server on demand. The SSH server uses the AuthorizedKeysCommand in the sshd_config to do this.

There is an Python script privacyidea-authorizedkey in the privacyideaadm repository. Note, that this script currently does not support the service_id. The tools/ directory of the privacyIDEA Server ships a shell script privacyidea-authorizedkeys that supports the service_id.

In the sshd_config file you need to configure the AuthorizedKeysCommand accordingly. Set it to e.g.:

privacyidea-authorizedkeys

This will fetch the SSH public keys for the requesting machine and the given user.

If you are using the shell script you need to configure the privacyIDEA Server and the service account at the top of the script.

The Python script however expects a configuration file /etc/privacyidea/authorizedkeyscommand which looks like this:

[Default]
url=https://localhost
admin=admin
password=test
nosslcheck=False
service_id=webservers

In this example the SSH keys that are attached to the service_id “webservers” are fetched from the privacyIDEA server.

12.1.2. Managing in the WebUI

The administrator can view all SSH keys attached to service in the WebUI at Tokens -> Token Applications. There the administrator can filter for service_ids., to find all SSH keys that are attached e.g. to webservers.

Note

To disable a SSH key for all servers, you simply can disable the distinct SSH token in privacyIDEA.

Warning

In a productive environment you should not set nosslcheck to true, otherwise you are vulnerable to man in the middle attacks.

12.2. LUKS

Currently working token types: Yubikey Challenge Response

Parameters:

slot The slot to which the authentication information should be written

partition The encrypted partition (usually /dev/sda3 or /dev/sda5)

These authentication items need to be pulled on the client machine from the privacyIDEA server.

Thus, the following script need to be executed with root rights (able to write to LUKS) on the client machine:

privacyidea-luks-assign @secrets.txt --clearslot --name salt-minion

For more information please see the man page of this tool.

12.3. Offline

Currently working token types: HOTP, WebAuthn/Passkey.

Parameters:

user The local user, who should authenticate. (Only needed when calling machine/get_auth_items)

count The number of OTP values passed to the client. This is specific to HOTP token.

The offline application triggers when the client calls a /validate/check. If the user authenticates successfully with the correct token (serial number) and this very token is attached to the machine with an offline application, the response to validate/check is extended with a “auth_items” object.

12.3.1. HOTP

For HOTP token that is a list containing the hashes of the next OTP values. The number of values is defined by the “count” parameter.

Warning

Once these values are returned by the server, the counter of the token on the server side is increased by the number of values returned, which effectively makes the token unusable for online authentication.

The client that receives these values should store them locally and is then able to verify OTP values with that list. An entry looks like this:

4:'$pbkdf2-sha512$6549$uDeGMMYYw5jTWg$5Sp.vdpfOw2PMEr.r5PxA/DD4A8QZNs0hPslY.yHt8DgW2BXuEfrOfPjs1na4iNUoSixvkl.2YTsZMCLNEwL3A'

It represents the OTP of the HOTP token with counter 4. The hash is stored in the format of the passlib library. The format has 4 parts: the algorithm, the number of iterations, the salt and the hash, each separated by a $. After a successful verification, clients should remove all values from the list between the first counter and the one that matches the input.

12.3.2. WebAuthn/Passkey

For WebAuthn/Passkey token, the auth_items object contains the parameters rpId, pubKey and credentialId. These can be used by a client to verify a FIDO2 assertion locally. Because WebAuthn/Passkey token can have their credentials offline on multiple machines, the client has to identify itself via the UserAgent in the headers. By default, the UserAgent is checked for the following keys (in order): [“ComputerName”, “Hostname”, “MachineName”, “Windows”, “Linux”, “Mac”]. If the UserAgent does not contain any of these keys, there will be no offline data returned! The list of keys to check can be extended by setting OFFLINE_MACHINE_KEYS = [“key1”, “key2”, …] in pi.cfg. These keys will appended to the default list and will be checked after them, the order is preserved.

12.3.3. Refill

If a client with offline HOTP values runs out of OTP values, it can request a refill of the list. This is done using POST /validate/offlinerefill

If that endpoints returns an error, it indicates that the token has been unmarked for offline use, or the refilltoken is out of sync. Therefore, clients managing WebAuthn/Passkey offline data should also call this endpoint regularly.

12.3.4. Managing in the WebUI

The administrator can view all offline tokens in the WebUI at Tokens -> Token Applications.