Device Match node
The Device Match node compares collected device metadata with that stored in the user’s profile.
Use this node with the Device Profile Collector node to check whether the user is authenticating with a previously saved, trusted device.
The Device Match node supports the following methods of comparison:
-
Built-in matching
The node handles the comparison and matching. You configure the acceptable variance and the maximum age for device profiles.
-
Custom matching
Create scripts to compare captured device data against trusted device profiles.
PingOne Advanced Identity Cloud includes a customizable template script. In the Advanced Identity Cloud admin UI, go to Scripts > Auth Scripts, and click Device Profile Match Template - Decision Node Script.
For a comprehensive sample script with instructions for its use and a development toolkit, go to the GitHub sample repository.
Compatibility
Product | Compatible? |
---|---|
Advanced Identity Cloud |
Yes |
PingAM (self-managed) |
Yes |
Ping Identity Platform (self-managed) |
Yes |
Inputs
This node reads the username
from the shared state to look up saved device profiles in the user’s account.
Implement a
Platform Username node
earlier in the journey to obtain the username.
This node also reads collected device metadata from the shared state. Implement a Device Profile Collector node earlier in the journey to collect metadata for the current device.
If Use Custom Matching Script is enabled, the inputs depend on the script.
Configuration
Property | Usage |
---|---|
Acceptable Variance |
The maximum number of acceptable device attribute differences for a match. Default: |
Expiration |
The maximum age in days a saved profile is valid for comparison. The node ignores older device profiles saved to the user’s account when comparing device profiles with the collected metadata. Default: |
Use Custom Matching Script |
Enable this option to use a custom script instead of built-in matching to compare the collected metadata with saved device profiles. When enabled, the node ignores the Acceptable Variance and Expiration settings. The script type must be
Default: false |
Custom Matching Script |
Select the custom script to use when Use Custom Matching Script is enabled. Only scripts of type
Default: |
Outputs
This node does not change the shared state on its own.
If the node uses a Custom Matching Script, the output is determined by the script.
Outcomes
True
-
The collected device metadata matches a saved profile within the configured variance.
False
-
The collected device metadata doesn’t match a saved profile, or another error occurred.
Unknown Device
-
The journey follows this outcome path in the following situations:
-
The user has no saved trusted device profiles.
-
The user identity hasn’t yet been established.
-
The acceptable device variance matches, but the device ID no longer matches.
The device ID is randomly generated and stored in the local browser cache. If the cache is cleared, the device ID can change.
-
Errors
This node logs the following warning messages:
script outcome error
-
The script failed to set the
outcome
field to a string. error evaluating the script
-
The script failed to complete. Refer to the logs for details.
Example
The following journey authenticates the user and checks whether the current device is trusted. If the device isn’t trusted yet, the journey requires an additional authentication factor and lets the user opt to trust the device:
-
The Page node with the Platform Username node and Platform Password node prompt the user for their credentials.
-
The Data Store Decision node confirms the user’s credentials.
-
The Device Profile Collector node collects metadata about the current device.
-
The Device Match node compares saved device profiles with the current device.
-
The Inner MFA Journey, an Inner Tree Evaluator node, requires an additional authentication factor.
-
The Message node prompts the user with an option to trust the current device.
-
The Device Profile Save node saves the current device profile.
-
The Increment Login Count node updates the number of successful authentications.
-
The Progressive Profile Journey, an Inner Tree Evaluator node, invokes a journey to collect additional profile data.