Random Characters? Passphrases? High Ascii?
cat /dev/urandom | strings
|
Random Characters? Passphrases? High Ascii? cat /dev/urandom | strings | ||||
|
feedback
|
|
I manually generate pretty hard-to-remember strings of symbols, numbers, and upper and lower case letters that usually look like leetspeak. Example:
Then I store them as an email draft I can access from anywhere via web mail. | ||||
|
feedback
|
|
Jeff Atwood has suggested we all switch to pass phrases rather than passwords: | ||||
|
feedback
|
|
makepasswd generates true random passwords by using the /dev/random feature of Linux, with the emphasis on security over pronounceability. It can also encrypt plaintext passwords given on the command line. Most notable options are --crypt-md5 Produce encrypted passwords using the MD5 digest algorithm --string STRING Use the characters in STRING to generate random passwords The former could be used to automatically generate /etc/passwd, /etc/cvspasswd, etc. entries. The latter is useful to add punctuation characters into your passwords, (by default generated password contains alphanumeric chars only). makepasswd was originally part of the mkircconf program used to centrally administer the Linux Internet Support Cooperative IRC network. | ||||
|
feedback
|
|
If you want to generate passwords that are easier for users to remember, take a look at Markov chains. http://en.wikipedia.org/wiki/Markov_chain This algorithm can produce nonsense words that can be pronounced, so they also become easier to remember and to relay over the phone. A little Google-fu can get you some code samples in just about any language. You would need to also obtain a good dictionary to filter out any passwords that come out as actual words. Of course, these are not going to be high-strength passwords, but are really good when you need some basic access control on something and you don't want to burden your users with hard to remember passwords. | ||||
|
feedback
|
|
I usually use password safe to generate random passwords. For passwords I actually want to be able to remember without password safe, I usually take a word, and a number, and interleave the characters So you take a word. baseball and a number 24681357 and you get a password of b2a4s6e8b1a3l5l7 It looks pretty random, and would probalby be hard to brute force. Also it's quite easy to type most of the time. You just type the word, and then move your cursor back to the second character, and type the number, and between each character press the right cursor key. Not only does this make it easier to type, it also makes it harder for key loggers to record what you are actually typing. | ||||
|
feedback
|
|
This Perl one-liner helps sometimes (
An example output:
| ||||
|
feedback
|
|
For fairly important stuff I like to use combinations of letters and numbers, like "xme7UpOK". These can be generated with this one-liner:
For less important stuff I like to have passwords that are easy to type, pronounce and remember, something like "loskubov" or "gobdafol". These can be generated like this:
where "10110101" is the pattern for vowels and consonants. | ||||
|
feedback
|
Quite inefficient, but it works. | ||||
|
feedback
|
|
Having read and tried out some of the great answers here, I was still in search of a generation technique that would be easy to tweak and used very common Linux utils and resources. I really liked the I found this gem after some further searching
| ||||
|
feedback
|
| ||||
|
feedback
|