WordPass – Hate passwords, love passphrases
wordpass.io
WordPass – Hate passwords, love passphrases
1–10 of 52 posts
Re: WordPass – Hate passwords, love passphrases
#2Re: WordPass – Hate passwords, love passphrases
#3[1] Off the top of my head: cryptsetup with plain dm-crypt recommends a random English sentence of > 135 characters length (i.e. a passphrase of 27 words at 5 characters per word).
Re: WordPass – Hate passwords, love passphrases
#4Re: WordPass – Hate passwords, love passphrases
#5 echo "l($(wc -l /usr/share/dict/american-english|cut -d' ' -f1)^4)/l(2)"|bc -l
67.44701327930010565796
So we get a better power of 2 and a more accurate estimate. Granted one could filter the word list down to words that people actually know (which exceptional people normally know about 75,000 but most people know only 50,000[1]). echo "l(75000^4)/l(2)"|bc -l
64.77841190063187168389 echo "l(50000^4)/l(2)"|bc -l
62.43856189774724695805So I guess it's still better but it seems like a pretty big oversimplification to assume a length of word (especially a uniform one) and it shouldn't be that much harder to calculate the actual value. Maybe I did something wrong, I don't know.
Re: WordPass – Hate passwords, love passphrases
#6"People shouldn't use passwords that have been generated by a remote service unless they have very very good reasons to trust the tool and the transmission of the data." [0]
Passphrases are generated server-side, and this mines at the heart the security of the system. Are password saved? Yes? No? Who knows?
And you can trust a pair of dice more than an unknown website. Look up diceware on the web and see what I mean.
--
[0] http://discussions.agilebits.com/discussion/10684/password-w...
Re: WordPass – Hate passwords, love passphrases
#7I would suggest increasing the maximum length from 5. Many applications that don't use iterated hashing schemes like PBKDF2 recommend much longer passphrases for security against brute-force [1]. [1] Off the top of my head: cryptsetup with plain dm-crypt recommends a random English sentence of > 135 characters length (i.e. a passphrase of 27 words at 5 characters per word).
Re: WordPass – Hate passwords, love passphrases
#8While I applaud the nifty tool, we should be trying to get away from single-factor authentication wherever practical. It's also possible that the use of phrases could incur the same mis-use as passwords (common phrases, common words, reusing the same phrase on multiple sites, etc). Passwords just aren't a good idea anymore. (Side note: a lot of password fields i've seen limit you to something like 12 characters; how…
Re: WordPass – Hate passwords, love passphrases
#9While I applaud the nifty tool, we should be trying to get away from single-factor authentication wherever practical. It's also possible that the use of phrases could incur the same mis-use as passwords (common phrases, common words, reusing the same phrase on multiple sites, etc). Passwords just aren't a good idea anymore. (Side note: a lot of password fields i've seen limit you to something like 12 characters; how…
Re: WordPass – Hate passwords, love passphrases
#10I have always had a problem with this xkcd because most sites would disable your password after a number of bad guesses (making it not really matter that much), and additionally I don't see where 2^44 comes from. Taking the average word length selected and then computing the entropy using the average word length 4 times? Why not use the number of potential dictionary words and raise that to the 4th? echo "l($(wc -l /…