pam-duress
A Pluggable Authentication Module (PAM) which allows the establishment of alternate passwords that can be used to perform actions to clear sensitive data, notify IT/Security staff, close off sensitive network connections, etc if a user is coerced into giving a threat actor a password.
File Explorer
Download Latest Version (.zip)- build.yml
- Pushover.md
- diagram.png
- ArchLinux.md
- Contributing.md
- RHLinux.md
- duress.c
- duress.h
- duress_sign.c
- pam_test.c
- util.c
- util.h
- version.h
- .gitignore
- CHANGELOG.md
- LICENSE
- Makefile
- README.md
- sonar-project.properties
# Installation Guide
git clone https://github.com/nuvious/pam-duress
Downloads the entire project code from GitHub to your computer.
cd pam-duress
Moves into the project folder you just downloaded.
2. Official Install Script
Easy Recommended- APT (Debian/Ubuntu κ³μ΄) Built into Debian/Ubuntu-based Linux distributions.
sudo apt-get install build-essential libpam0g-dev libssl-dev
Installs directly from the APT package repository (Debian/Ubuntu-based).
Pulled directly from this repo's README.
3. Make
Medium- Git Needed to download the project code from GitHub.
- Make Usually pre-installed on Linux/macOS. On Windows, install separately (e.g. via MSYS2 or WSL).
make
Compiles the code based on the generated build configuration to produce an executable.
make clean
Compiles the code based on the generated build configuration to produce an executable.
make debug
Compiles the code based on the generated build configuration to produce an executable.
Pulled directly from this repo's README.
