Comments on: Generating Random Pronoucable Passwords http://www.terminally-incoherent.com/blog/2010/05/10/generating-random-pronoucable-passwords/ I will not fix your computer. Tue, 04 Aug 2020 22:34:33 +0000 hourly 1 https://wordpress.org/?v=4.7.26 By: k00pa http://www.terminally-incoherent.com/blog/2010/05/10/generating-random-pronoucable-passwords/#comment-15741 Fri, 28 May 2010 20:13:02 +0000 http://www.terminally-incoherent.com/blog/?p=5675#comment-15741

Looks like useful script…

Maybe I should update my passwords with this :P

Reply  |  Quote
]]>
By: Luke Maciak http://www.terminally-incoherent.com/blog/2010/05/10/generating-random-pronoucable-passwords/#comment-15484 Tue, 11 May 2010 19:30:20 +0000 http://www.terminally-incoherent.com/blog/?p=5675#comment-15484

@ JKjoker:

Hmm… That’s a good idea. I figured randomizing capitalization would improve password strength without making them too difficult to memorize.

@ Chris Wellons:

Thanks for digging out that Coding Horror link. I tried finding it the other day, and then gave up. :P

@ SapientIdiot:

Yes, it technically does make it more easily crackable than a completely random password. On the other hand it is probably vastly superior to using “password123” or “qwerty123” or short words vulnerable to a dictionary attack.It’s a compromise.

Reply  |  Quote
]]>
By: SapientIdiot http://www.terminally-incoherent.com/blog/2010/05/10/generating-random-pronoucable-passwords/#comment-15476 Tue, 11 May 2010 00:03:45 +0000 http://www.terminally-incoherent.com/blog/?p=5675#comment-15476

I used to generate extreamly random and long passwords, and remember them by writing them down over and over again (then burn the paper i used), but eventually i just fell back to using phrases or abbrivations of phrases i can easily remember and throwing in random symbols and capitalizations.

Wouldnt using a script like this make passwords more easily crackable if someone knew that it was this script that was used to generate the password?

Reply  |  Quote
]]>
By: Chris Wellons http://www.terminally-incoherent.com/blog/2010/05/10/generating-random-pronoucable-passwords/#comment-15471 Mon, 10 May 2010 19:15:27 +0000 http://www.terminally-incoherent.com/blog/?p=5675#comment-15471

The Debian repositories have a tool called pwgen (doesn’t seem to have a website) whose purpose is to generate pronounceable passwords. I’ve known about it for awhile but have not put it to use. I think your program does a better job than pwgen anyway.

Then there’s my personal favorite, Diceware, and its variations. I find Diceware passwords to be much easier to type, in addition to memorize. But they are much longer than usual.

I like the GUID code idea you’re using. Thanks for pointing that out.

Reply  |  Quote
]]>
By: JKjoker http://www.terminally-incoherent.com/blog/2010/05/10/generating-random-pronoucable-passwords/#comment-15470 Mon, 10 May 2010 18:22:01 +0000 http://www.terminally-incoherent.com/blog/?p=5675#comment-15470

the pronunciation might be easy to remember but the change from caps to nocaps seems too random, maybe if they had a pattern like caps only on the edges of a syllables or all caps/nocaps syllables (easier to remember than for each individual letter) or you might as well program different pattern rules and choose one randomly before generating the password (inform the pattern to the user along with the generated password)

also using rare printable symbols (those that bruteforce programs tend not to use or try last) as randomized syllable separators instead of always – would improve the strength of the passwords without affecting the pronunciation (the symbol for all separators should be the same in each password tho)

Reply  |  Quote
]]>