Earlier quoted context omitted.
Yes, this same thing happens on the ship I work on in the summers. There are about 300 people, and about half have to reset their password when they come on board. There is the arbitrary 8 character, at least 1 #, at least 1 special character, at least 1 capital, can't match a dictionary word, and can't be close to the previous password. Also can't contain their name. Try explaining that to 150 people over and over a…
> if we just require long passwords, no other requirement ... then I bet lots of users will choose passwords like "passwordpasswordpassword".
Write your passwords down
51–60 of 125 posts
Re: Write your passwords down
#52And then there's the whole trouble of sites that require a username that you need to remember and that is usually restricted in ridiculous ways.
Re: Write your passwords down
#53Earlier quoted context omitted.
> if we just require long passwords, no other requirement ... then I bet lots of users will choose passwords like "passwordpasswordpassword".
I'd go with passwordpasswordpasswordpassword. Just to be safe.
Re: Write your passwords down
#54> (I have a second copy of that sheet left with a friend in an envelope) I love jgc but here he's making the same mistake most people make when they speak about security: assuming all readers have the same need for security and run the same risks. They don't. There is no point for my mom to adopt this system, it's way overkilled for her. (I think there's no point for me either). One needs to explain to users two thin…
BTW Do you use the same password on your Gawker account elsewhere?
Re: Write your passwords down
#55An easy way to create your own... Copy this empty table: http://pastebin.com/tzbd7FCt Fill it with this random password generator: https://www.grc.com/passwords.htm Be sure to use a fixed-width font.
Re: Write your passwords down
#56Take for example, and this is just a sample not my own personal hash formula, the following mechanism:
key = username
1) r = rot2(key)
2) password = vowelreplace(r) [a4,e3,i1,o0,u_]
In this example, I apply a rotation of 2 letters to the input key, then replace the vowels in the result with numbers.
A sample use case might be for an amazon account.
Username: johnsmith
Password Key: johnsmith
Password Phase 1 (rot2): lqjpuokvj
Password Phase 2 (vowelreplace): lqjp_0kvj
We are quite capable of remembering simple formulas which we can use to generate our own passwords on demand. What's best is the formula exists in our heads, and can never be discovered laying around.
Re: Write your passwords down
#57So you have a paper on your wallet, which can be used to obtain every password you use, using an intricate and very specific "algorithm". Then you publish the fact itself and the algorithm in your blog(real name), which, besides, doesn't depend on a passphrase (which could turn your method in a sort of dual factor authenticator). The paper could be photocopied and returned to your wallet and you'd never know. Please,…
Why do you believe he gave you the real algorithm?
However, this being said, it is much more secure against untargeted attacks than the standard "i have an algorithms in my head" or "i use the same password" approach a lot of people use.
Re: Write your passwords down
#58Its funny I worked for a startup that got acquired by Comcast, and eventually we started having to follow the Comcast security policy which made us change domain passwords every month with requirements around using strange characters etc. I'd say about 50% of the people ended up with their current password on a post-it on their monitor or desk.
Yes, this same thing happens on the ship I work on in the summers. There are about 300 people, and about half have to reset their password when they come on board. There is the arbitrary 8 character, at least 1 #, at least 1 special character, at least 1 capital, can't match a dictionary word, and can't be close to the previous password. Also can't contain their name. Try explaining that to 150 people over and over a…
I particularly liked the suggestion (elsewhere) to set passwords to a random combination of three dictionary words. It's hard to remember 7Gw$kW_ws, but I bet I could come up with a meaning for "dog shower flange".
Re: Write your passwords down
#59The first few times I use a newly generated password, I have to look it up in a master file. It's weird how quickly semi-pronounceable nonsense + some symbols get stuck in your head though.
Re: Write your passwords down
#60echo -n "A long sentence I can recall. site_name" | sha1sum
I use the sha1sum from that as my password.
site_name may be hackernews, slashdot, home, etc. I can break them in half (20 chars) or quarters (10 chars) if the site can't accept a 40 char password. Also I can add a period on the end if the site requires special chars. These are strong passwords and unique for each site. Works great on Windows Linux and Macs. All I need to do is recall my sentence (with proper punctuation).