Skip to content

das-group/rba-algorithm

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 

Repository files navigation

Basic Algorithm for Risk-Based Authentication

Basic implementation of the Risk-Based Authentication (RBA) algorithm by Freeman et al. (2016) in Python 3. Optimized for performance and edge cases.

Table of Contents

About

Background

Risk-Based Authentication (RBA) is an approach to improve account security on websites without forcing users to use Two-Factor Authentication (2FA). Users consider RBA more usable than comparable 2FA methods. This technology is getting more and more important, as it is recommended by the NIST (USA), NCSC (UK), and ACSC (AU), and is also subject of an executive order by President Biden. Also, big online services like Google, Amazon, Facebook, and LinkedIn use RBA.

During login, RBA estimates a risk score based on features describing the login behavior. On a low risk (e.g., same device as always), the website grants access. On a medium risk (e.g., unknown device), the website asks for additional information to prove the claimed identity.

Repository

This repository provides a Jupyter Notebook containing an algorithm to calculate the RBA risk score. The algorithm was originally proposed in Freeman et al. (2016). We further optimized it for performance on large distributed systems like a supercomputer (high-performance computing, HPC). We also considered some edge cases that were not described in the original publication.

The implementation was used in the following publications to analyze RBA characteristics in practice:

Getting Started

The following steps should help you to set up the environment to open the Jupyter Notebook and run the algorithm.

Installing

To run this notebook, you need JupyterLab or compatible software, together with Python 3 and pandas.

We recommend to install Anaconda. The Anaconda installer should install JupyterLab and Python3 with pandas automatically in a new environment, so you're ready to go.

Open Project

  1. Open Anaconda Navigator and launch JupyterLab.
  2. Open rba-algorithm.ipynb and save it as a copy, so that JupyterLab trusts the notebook.
  3. Run the code or edit it on your own.

Contributing

Feel free to submit your pull request to this repository. Please follow the contribution guide to do so.

Authors

  • Stephan Wiefling

License

© 2022 Stephan Wiefling / Data and Application Security Group

The code in this repository is licensed under the MIT License (LICENSE).

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published