Ceci est une ancienne révision du document !
Pass
Pass est un outil de gestion de vos mots de passe très bien pensé. Se voulant simple d'utilisation, il vous permettra d'organiser et de retrouver vos credtz grâce à une structure de dossiers et de fichiers cryptés, car comme son nom l'indique (traduction de l'anglais: le gestionnaire de mot de passe standard unix), sous Unix tout est fichier.
pass is a very simple password store that keeps passwords inside gpg2(1) encrypted files inside a simple directory tree residing at ~/.password-store. The pass utility provides a series of commands for manipulating the password store, allowing the user to add, remove, edit, synchronize, generate, and manipulate passwords.
http://git.zx2c4.com/password-store/about/
sudo apt-get install pass
localhost:~ pass init “ZX2C4 Password Storage Key”
mkdir: création du répertoire «/home/radeff/.password-store»
pass git init
http://ifzenelse.net/fr/gerez-vos-mots-de-passe-en-ligne-de-commande-avec-pass
Installation et importation depuis keepassxc
#install soft apt-get install pass #create gpg key gpg --gen-key gpg -k #create main password, change "xxx" with your name or pseudo pass init "Fred Radeff" #go to created directory cd /home/radeff/.password-store/ #init git pass git init #change the remote for yours pass git remote add origin git@gitlab.com:yourpseudo/pass.git pass git push -u master #test pass insert Personal/testing pass git push pass git pull pass git push # install import tool wget -qO - https://pkg.pujol.io/debian/gpgkey | gpg --dearmor | sudo tee /usr/share/keyrings/pujol.io.gpg >/dev/null echo 'deb [arch=amd64 signed-by=/usr/share/keyrings/pujol.io.gpg] https://pkg.pujol.io/debian/repo all main' | sudo tee /etc/apt/sources.list.d/pkg.pujol.io.list sudo apt-get update sudo apt-get install pass-extension-import #import your passwords from keepassxc or some other safestore pass import keepassxc ~/Bureau/pass.csv