Keystroke dynamics, aka typing biometrics, is the study of recognizing a person by the way they type. One important use case is recognizing which user is logging in using a given credential, for example, who is logging in as root? Another use case is recognizing when a different user has typed a sequence of keystrokes. In this recipe, we'll show how to use a machine learning-based keystroke dynamics algorithm.
Keystroke dynamics
Getting ready
This recipe will require a Linux virtual or real machine. In preparation, do the following:
- Install git on your device.
In a Terminal, run the following command:
sudo apt install git
- Clone the git repository containing the code for the keystroke dynamics algorithm:
git clone...