blog/content/software/pass.md

39 lines
2.1 KiB
Markdown
Raw Normal View History

2019-04-22 15:15:51 +00:00
---
Title: Manage your passwords with pass
Date: 2019-04-22 19:00
2019-04-23 09:00:07 +00:00
Modified: 2019-04-23 14:24
2019-04-22 15:15:51 +00:00
Author: Fabrice
Category: software
2019-04-22 17:47:58 +00:00
Tags: pass, git
2019-04-22 15:15:51 +00:00
Slug: password-store
2019-04-23 15:23:53 +00:00
Header_Cover: images/covers/clovers.jpg
2019-04-23 09:00:07 +00:00
Summary: A simple password manager that relies on gpg, and synchronized with git.
2019-04-23 18:04:46 +00:00
Lang: en
2019-04-22 15:15:51 +00:00
---
As security breaches are discovered regularly, and so leakage happens, it is recommended to have a different password on each account.
However, this task is obviously a pain to maintain by hand. I did use a notebook back in 2003, which I lost within a month, given that I'm a very organized person.
Hopefully, many password managers exist, with similar features: cross-platform (especially smartphone support), password generation,browser integration…
I'm not here to compare them, if you want to give a look, [wikipedia](https://en.wikipedia.org) provides a nice comparison table [**there**](https://en.wikipedia.org/wiki/List_of_password_managers).
However, thanks to [moviuro](https://try.popho.be), my choice is [pass](https://www.passwordstore.org/) along with [pass-otp](https://github.com/tadfisher/pass-otp#readme) (and [passmenu](https://git.zx2c4.com/password-store/tree/contrib/dmenu)).
I don't intend either to make a comprehensive guide, as those already populate the internet, for example [**here**](https://medium.com/@chasinglogic/the-definitive-guide-to-password-store-c337a8f023a1).
To make it short, pass is a bash scripts using [git](https://git-scm.com/), [gpg](https://www.gnupg.org/) written by [zx2c4](https://www.zx2c4.com/).
2019-04-22 16:30:44 +00:00
Here are just some commands I often use.
2019-04-22 15:15:51 +00:00
```sh
pass generate -i <pass-name>
```
2019-04-24 16:39:24 +00:00
To regenerate a password, the `-i` is important to avoid overwritting the whole file and having to rely on [dirty git]({filename}/cheat-sheets/git.md) to withdraw your mistake (`pass <cmd>` will automatically commit your change)… I sometimes forget it, so let's put it here as a reminder.
2019-04-22 15:15:51 +00:00
```sh
pass git <whatever you want>
```
To do whatever you want with git, especially *dirty git* 😉
2022-07-26 09:41:54 +00:00
And finally, I'm using [password-store](https://f-droid.org/en/packages/dev.msfjarvis.aps/) on my android phone.