Re: List all the passwords cleartext in a comprehensive way

2018-05-25 Thread Kjetil Torgrim Homme
Den 24. mai 2018 14:10, skreiv commentsab...@riseup.net: > I have been using pass for years, my password stores contains over 500 > passwords and I would like to review them (I know that some of them are > weak and/or old). > > Is there an efficient way to do it? "pass grep ." will do the trick,

Re: List all the passwords cleartext in a comprehensive way

2018-05-24 Thread Danylo Hlynskyi
Maybe this should help for review cd ~/.password-store find . -name "*.gpg" | sed -e 's|\./\(.*\).gpg|\1|' | while read x; do echo "$x: $(pass show $x)"; done | less 2018-05-24 15:10 GMT+03:00 : > Hello, > > I have been using pass for years, my password stores contains

Re: List all the passwords cleartext in a comprehensive way

2018-05-24 Thread Tobias Girstmair
You can't do that directly, but a simple shell script[0] 'll do the trick. There's also pass-audit[1], which might be better suited. It checks your password-store against haveibeenpwned.com's password list and also evaluates the complexity using Dropbox' zxcvbn password strength estimator. (I've

List all the passwords cleartext in a comprehensive way

2018-05-24 Thread commentsabout
Hello, I have been using pass for years, my password stores contains over 500 passwords and I would like to review them (I know that some of them are weak and/or old). Is there an efficient way to do it? Considering the following store: Password Store ├── foo │   ├── bar │   ├── baz │   └──