Clever uses of pass, the Unix password manager
61–70 of 154 posts
Re: Clever uses of pass, the Unix password manager
#62Recently used pass to share passwords between colleagues (3 in total). Files are encrypted against three different GPG public keys and shared via Git. Works well enough for us.
Re: Clever uses of pass, the Unix password manager
#63Re: Clever uses of pass, the Unix password manager
#64Just setup isync yesterday. So close to having freedom to move from Google whenever I want
Re: Clever uses of pass, the Unix password manager
#65With chezmoi you can use pass to store secrets in your dotfiles, for example if you want to set a secret API token in your ~/.bashrc you can use: export SECRET_API_TOKEN={{ pass "api/token" | quote }} For more info see https://github.com/twpayne/chezmoi/blob/master/docs/HOWTO.md... and https://github.com/twpayne/chezmoi/blob/master/README.md .
What is the `quote` command that example pipes to? Seems handy but unsurprisingly hard to search for.
https://askubuntu.com/questions/354915/quote-command-in-the-...
Re: Clever uses of pass, the Unix password manager
#66Earlier quoted context omitted.
It means password generation takes variable time; this: • opens you up to timing attacks on your PRNG (unlikely to be a problem in real life, but you never know) • might run forever
It has probability 0 of running forever
Re: Clever uses of pass, the Unix password manager
#67Earlier quoted context omitted.
As much as I love Jason Donenfeld's work, I tried to use pass and the gpg requirement just rubbed me the wrong way. It's basically just gpg-encrpyting a text file and unlocking that along with some wrappers for basic password manager functionality (I guess most important is clipboard functionality and clearing it automatically after some seconds), but somehow that seems like a weak point to me. It's a whole lot of re…
A few pass-related projects are working on an age[1] backend in addition to gpg. I think gopass already has support for it. [1]: https://age-encryption.org/
Re: Clever uses of pass, the Unix password manager
#68Using single file for single password entry is very good idea. It's far better than any tools that opens the whole password database at once (KeePass, LastPass, Bitwarden etc). Reason is that you can use e.g. YubiKey to unlock individual entries on touch , this means that you can't lose whole password database on ransomware attack, (unless the ransomware has been there for a very long time). Filippo Valsorda wrote ab…
Re: Clever uses of pass, the Unix password manager
#69Recently used pass to share passwords between colleagues (3 in total). Files are encrypted against three different GPG public keys and shared via Git. Works well enough for us.
Hardware U2F to unlock would make this my dream.
Re: Clever uses of pass, the Unix password manager
#70Recently used pass to share passwords between colleagues (3 in total). Files are encrypted against three different GPG public keys and shared via Git. Works well enough for us.
Hardware U2F to unlock would make this my dream.