How To Install pass-extension-audit on Debian 12

Learn how to install pass-extension-audit on Debian 12 with this tutorial. pass-extension-audit is Pass extension for auditing your password repository

Introduction

In this tutorial we learn how to install pass-extension-audit on Debian 12.

What is pass-extension-audit

pass-extension-audit is:

pass audit is a password-store extension for auditing your passwordstore repository. Passwords will be checked against the Python implementation of Dropbox’ zxcvbn algorithm and Troy Hunt’s Have I Been Pwned Service. It supports safe breached password detection from haveibeenpwned.com using a K-anonymity method. Using this method, you do not need to (fully) trust the server that stores the breached password. You should read the security consideration section for more information.

This package installs the pass extension

There are three methods to install pass-extension-audit on Debian 12. We can use apt-get, apt and aptitude. In the following sections we will describe each method. You can choose one of them.

Install pass-extension-audit Using apt-get

Update apt database with apt-get using the following command.

sudo apt-get update

After updating apt database, We can install pass-extension-audit using apt-get by running the following command:

sudo apt-get -y install pass-extension-audit

Install pass-extension-audit Using apt

Update apt database with apt using the following command.

sudo apt update

After updating apt database, We can install pass-extension-audit using apt by running the following command:

sudo apt -y install pass-extension-audit

Install pass-extension-audit Using aptitude

If you want to follow this method, you might need to install aptitude first since aptitude is usually not installed by default on Debian. Update apt database with aptitude using the following command.

sudo aptitude update

After updating apt database, We can install pass-extension-audit using aptitude by running the following command:

sudo aptitude -y install pass-extension-audit

How To Uninstall pass-extension-audit on Debian 12

To uninstall only the pass-extension-audit package we can use the following command:

sudo apt-get remove pass-extension-audit

Uninstall pass-extension-audit And Its Dependencies

To uninstall pass-extension-audit and its dependencies that are no longer needed by Debian 12, we can use the command below:

sudo apt-get -y autoremove pass-extension-audit

Remove pass-extension-audit Configurations and Data

To remove pass-extension-audit configuration and data from Debian 12 we can use the following command:

sudo apt-get -y purge pass-extension-audit

Remove pass-extension-audit configuration, data, and all of its dependencies

We can use the following command to remove pass-extension-audit configurations, data and all of its dependencies, we can use the following command:

sudo apt-get -y autoremove --purge pass-extension-audit

Dependencies

pass-extension-audit have the following dependencies:

References

Summary

In this tutorial we learn how to install pass-extension-audit package on Debian 12 using different package management tools: apt, apt-get and aptitude.