Ask HN: What is your password management solution?
171–180 of 320 posts
Re: Ask HN: What is your password management solution?
#172Re: Ask HN: What is your password management solution?
#173Earlier quoted context omitted.
That's what the incrementing variable is for. Of course, you have to then remember how many times you've changed your password for any given site.
How does incrementing a counter address some sites requiring special characters while others reject them?
Re: Ask HN: What is your password management solution?
#174Enpass all the way. Free and works with dropbox
Re: Ask HN: What is your password management solution?
#175`pass` is a nice command line tool that stores gpg2 encrypted password files. It's simple, super handy and doesn't require you to trust any third party with what you're storing. website: https://www.passwordstore.org/ man page: https://git.zx2c4.com/password-store/about/
Re: Ask HN: What is your password management solution?
#176`pass` is a nice command line tool that stores gpg2 encrypted password files. It's simple, super handy and doesn't require you to trust any third party with what you're storing. website: https://www.passwordstore.org/ man page: https://git.zx2c4.com/password-store/about/
Re: Ask HN: What is your password management solution?
#177This is my password manager. password = b64encode(hashlib.pbkdf2_hmac( 'sha256', (master_password + '/' + domain).encode(), b'', 100000 + n )).decode()[0:16] + 'Aa$1' master_password = some master password that you never write or store anywhere domain = domain name for the service in question, e.g. 'facebook.com' n = the nth password being generated for the domain (typically 0) The 'Aa$1' is to ensure satisfaction of…
Before reading this I was convinced that stateless deterministic approaches like these was the ideal. But some arguments in that post changed my mind.
Re: Ask HN: What is your password management solution?
#178Earlier quoted context omitted.
It's hardly "out there" though. A hacker would still need to hack dropbox before they could access your keepass db and begin brute forcing. What makes your own private server more secure than dropbox's network?
You're trusting them to not have issues like this: https://blogs.dropbox.com/dropbox/2011/06/yesterdays-authent... I don't trust the servers (Dropbox or my), and thus I want it encrypted on my computer prior to sending it out on the Internet.
Re: Ask HN: What is your password management solution?
#179Enpass all the way. Free and works with dropbox
I would be much more eager to use Enpass if they made the code available to people who pay.
Re: Ask HN: What is your password management solution?
#180Works great as long as you can resist the urge to tell other people about your system!