Slashdot Mirror


Crappy Passwords Very Common

KeatonMill writes "CNN released this story about passwords. Apparently, a group of UK psychologists did a study about password selection, and found that many passwords can be guessed if access to the subject's desk is allowed (the article gives an example of sports memoribilia representing sports-related passwords). According to the study, 50 percent of people use names of family members or pets as passwords."

422 comments

  1. Number Theory by ffatTony · · Score: 3, Interesting

    I've had good luck guessing passwords using the method of adding a number to the user's name: e.g. someGuy's password is probably someguy[0-9]+[0-9]*

    1. Re:Number Theory by Anonymous Coward · · Score: 0

      What would be even better, is if you changed the slashdot title to "Crap Very Common". LOL. LOLOLOL.

    2. Re:Number Theory by Xero · · Score: 1

      Your theory seems to pass both my tests! Both my father's and my stepmother's passwords are such. I know them because I have configured their computers for years and the passwords never have changed.

  2. Biometrics... by MosesJones · · Score: 3, Interesting


    What this is saying is that if you know something of the person you can work out what they will say. This is always going to be the case until it is something actually unique for the person (fingerprint, iris etc). While we all _know_ that we should have passwords like "sdf987*(&^JJHASBDjkasdjkh231*()&as" and every account should have a different one it tends to be simpler to use something you can remember easily.

    So this isn't a suprise, and its what the Biometrics people have been saying for years.

    --
    An Eye for an Eye will make the whole world blind - Gandhi
    1. Re:Biometrics... by oo7tushar · · Score: 2

      Actually the example you give may not be the best passwords. Many people use brute force and almost all of them use a dictionary. There are a few that don't (they go through each an every possibility) and those ones pose a problem.
      Sequential password generate (aaa, aab, aac, aad...) pose problems as the generated password may occur much sooner than thought. The time taken decreases exponentially if the first few characters (either direction) are closer to the beginning of the alphabet.

    2. Re:Biometrics... by Account+10 · · Score: 1

      If "sdf987*(&^JJHASBDjkasdjkh231*()&as" is an easy password to bruteforce then we're all screwed.

      34 characters from an alphabet of 70 or so is a lot of permutations.

    3. Re:Biometrics... by oo7tushar · · Score: 2

      not that password specifically :P
      yes there are a lot of permutations, but the point is that the average person has trouble remembering how to double click on the IE logo (hence one click web types)

    4. Re:Biometrics... by QuMa · · Score: 1

      And thus it's wise to choose passwords starting with letters above m, and thus it's wiser to crack in inverse alphabetic order, and thus you should start using the first chars alphabetically low.. Unless you're very sure about what software your attacker will use you just can't say. And scanning in random-letter order is trivial and causes an almost negligable speed decrease too, so all in all, the entire thing is moot.

    5. Re:Biometrics... by CProgrammer98 · · Score: 1

      Rats! You guessed my password!

      --
      And the people shall be oppressed, every one by another, and every one by his neighbour Isaiah 3:5
    6. Re:Biometrics... by BeBoxer · · Score: 5, Insightful

      The problem with biometrics as passwords is that they can still be obtained via other methods such as password sniffing and they can't be changed. So by themselves, they are even worse than regular passwords.

      Let's look at the "obvious" method of using say fingerprints as passwords. A print scanner on your keyboard scans your print into some sort of unique id. When you want to log in to some service, the keyboard sends your username along with your print id in lieu of a regular password. The service checks your username and print in it's database and decides whether or not to grant access. The problem with this type of setup is that every service you use has the ability to impersonate you to every other service you use. Not a good idea at all. This is the same fundamental flaw credit cards have. Every vendor you do business with has the ability to impersonate you to every other vendor who accepts your type of credit card. Hence all the fraud. But at least with credit cards you can get a new number if someone starts abusing it.

      Really, the only way to do authentication that doesn't suffer from this flaw is to ue a public-key based method. It's absolute insanity to start sending your fingerprint everywhere and using it as an ID. Absolutely the dumbest way of doing authentication online I can think of. Which is not to say that biometrics don't have their place at all. It can be used in very limited means inside of closed systems and provide a reasonable increase in security. I think where this will end up is that we will each have a small portable hardware device which can do secure public-key based authentication for us. A fingerprint can be used to authenticate us to our hardware token. Since the fingerprint never has to leave the token, it isn't nearly as vulnerable to being stolen. Imagine an ATM card which has a small number pad on it. You type the amount you want to withdraw into your ATM card which scans your prints as you type the amount in. Then, you insert the card into the ATM machine and the card securely authorizes a withdrawal in the amount you entered. This authorization protocol can be public and standardized without any loss of security. Your fingerprint never leaves the card so isn't vulnerable to theft.

      Note that there are companies now selling the keyboard-style scanners. In my opinion, these are nothing but snake oil. From looking thru the descriptions of the available products, all of the ones I've found appear to be transmitting a fingerprint 'hash' to an authentication database. It's not hard to imagine software hacks which can record the fingerprint info as it comes in off the USB or parallel port and later replay that information to spoof users. While some hackers might still be guessing passwords, a lot are now using software to grab passwords either off the network or off the keyboard. Fingerprint scanners do nothing to prevent this type of hack except make it impossible to change the password after it's been stolen. So not only are you still vulnerable, your options for correcting the problem after the hack are drastically reduced.

      Inside of a corporate environment where all hardware and software installations are tightly controlled, there might be some value. But it's not a general purpose authentication technique. Every terminal you use will gain the ability to impersonate you, and every server you log into will gain the ability to impersonate you. Which is the case now, but I don't use the same password for Slashdot that I use for my shell accounts. And I don't log into my shell accounts from computers I have no reason to trust (such as at a cyber cafe.) If everyone is using biometrics, then the services you trust least (like Slashdot say) has the information they need to impersonate you to the places you trust most (your bank, your shell accounts at work, etc.) When I say 'trust', I'm probably using the wrong word. What I mean is I don't really care very much if someone steals my Slashdot password. It's not a big deal. I do care of someone steals my work passwords, or online banking passwords. I would never use the same password both places which is exactly what biometrics force me to do.

    7. Re:Biometrics... by nil_null · · Score: 0

      By the time someone sequentially brute forces even an 8 character password (assuming its relatively complicated), I doubt the account will still be in existance. Unless they have serious computing power, but the typical cracker doesn't usually have such resources available and won't use them to crack something trivial. Its more the crackers who don't do password guessing, but use other methods to compromise systems, that are something to worry about.

    8. Re:Biometrics... by Anonymous Coward · · Score: 0

      No, they're just lazy.

    9. Re:Biometrics... by Anonymous Coward · · Score: 1, Funny

      Here are some handy eight-letter passwords for those who don't have a random string generator: wqIL8xye, LYYQ4eH9, HpEyQA8H, VAljYih1, DoJJu8aq, Kdigic7E, maXMef5F, AQZEZ4pi. If you need some more, just let me know.

    10. Re:Biometrics... by cosyne · · Score: 2

      One approach I think would be interesting is sort of a biological challenge-response, where the system would provide some "input" to the user's body (ok, bear with me here), and examine the body's reaction. A very impractical but perhaps illustrative example might be an immunological response: the system injects the user with vaccine-level doses of certian pathogens, and examines some blood samples to see what kinds of antibodies are produced and how fast. If i've had that particular flu strain (or a vaccine for it), my body will generate a good antibody very quickly, vs someone who hasn't. Granted, the database has to be updated as to what vaccines and diseases i've had (including those i was exposed to in previous challenge-response access situations), but it should be difficult to fake this kind of response. Surely, i wouldn't tolerate this kind of authentication for my email account, but a military computer which controls a bunch of nukes might be a different story (better than "Joshua", at least...)

      My guess is there are a number of other, less invasive measurements which could be taken, like how fast your pupil responds to a bright flash or comparing the interference patterns from an iris scan to a laser hologram (ok, i know that's a stretch, but laser holograms do hold a _lot_ of information, and in an optical computing system it might be possible to implement something like this using an uncopyable (ie non-digital) film).

      Either way, there's still the problem the authenticating server knowing enough about you to evaluate the response, but someone who got a copy of that respons couldn't use it again without getting the exact same challenge, or intercepting enough of them to build a physiological model to predict responses.

    11. Re:Biometrics... by NoOneInParticular · · Score: 1

      At some point our uni beowulf got cracked together with the 200+ of computers for the students. It took a couple of weeks for someone to figure out that this happened and that the entire batch of machines was doing nothing else but password cracking. It was figured out that the crackers got access through brute-forcing one of our passwords (through some other universities resources? who knows) So yes, crackers can and do have access to the computing power to brute-force passwords. The more successfull they are, the more successfull they get.

    12. Re:Biometrics... by Alexis+Morissette · · Score: 0

      Everyone has a random string generator. It's called a "brain".

      --
      This is a special excite .sig
      This
    13. Re:Biometrics... by Anonymous Coward · · Score: 0

      What about using different bodyparts for different access-levels?
      For example the right-thumb could be access-level 5 (highest) while the pinky had the access-level 1. You could use the pinky-print on slashdot and thumb for you banking accounts. err, perhaps not.

  3. In other news... by bwulf · · Score: 5, Funny

    ... water found to be wet[1], sky found to be blue, Earth found to be round[2] and CNN found to be obvious.

    [1] at certain temperatures
    [2] well, almost

    1. Re:In other news... by Dinosaur+Neil · · Score: 2, Funny

      Back in '91 and '92, I was a junior sysprog on a mainframe system running two different OS's. The security systems (at the time) didn't talk to each other, but the users wanted to have a single password for everything. The result was an ugly kludge (that I got to maintain since I was most junior) and this allowed me to see the day's before/after password change file. 750 or so users, and there were at least a 200 or so that referenced John Elway and/or the Broncos (this was in Denver), another 100 or so that went path of least resistance (AAAAAA1, AAAAAA2, etc.), a couple dozen that used NCC1701, NCC1701A, etc. etc.

      Not only is this story obvious, it's seriously dated. Stupid/obvious passwords have probably been around as long as there have been passwords...

      --
      "I'm a scientist! I don't think, I observe!" - Dr. Clayton Forrester
    2. Re:In other news... by gotan · · Score: 2

      In a place where i worked i tested a really minimal password-cracker program just to find out if it really would find someone. It really only used the commentary field (5th) and username in etc/passwd to extract the users name, and try different versions (upper/lower/alternating case, only 1st in upper case, backwards) of name/surname/username. I found that about 3-5% (don't remember exactly now) really only used a part of their name as password, and that they wouldn't do anything as 'sophisticated' as writing it backwards or alternating upper/lower case either. I never made any use of that fact and didn't even inform anyone (it would probably have costed me my job there for being an evil hacker when all i wanted was playing around with 'crypt' a little). That was some years ago and i really hope that most users there have clued up a little by now. But i think there are still some who simply don't care, and also that there are such people everywhere. Their "argument" is: "well, who'd be interested in my stuff anyway?". What they don't get is, that once someone gets into their account it's far easier to get access to other users data or do something really malicious (or something they consider as a 'prank' like printing thousands of garbeled pages).

      One problem is, that there's no security-seminar the people have to take part in. In some places you have to go to a security course to learn what to consider when doing physical work, even when you will never even do any of that, but the IT security policy is just put on some letter you
      receive your password with which most people don't even read once.

      --
      "By the way if anyone here is in advertising or marketing... kill yourself." -- Bill Hicks
    3. Re:In other news... by Jucius+Maximus · · Score: 1
      So True.

      Working as a computer consultant part time, I can tell you that most every one of my customers used their cat's name (or dog, fish, etc) as a password for their ISP dialup. Or sometimes a combination of their childrens' and/or partner's names.

      The thing that scared me the most was when I was signing up for online bank account access. The rep on the phone actually suggested that I use the name of a pet!!!! I had a talk with her about that...

      And one of the things that continually surprised me was how stupid some people could be with their passwords. There was this one person my friend and I liked making fun of. And my friend guessed his network password something like 8 times in a row (each time the other guy changed it.)

      I suspect that people will only start using good passwords if:
      - Someone gets into their account, starts a DDOS attack / empties their bank account and the account owner gets a visit from the FBI (or similar)
      - There is a major Hollywood motion picture that becomes incredibly popular involving crackers and how easy most peoples' passwords are to crack
      - Some major cracking incident occurs and the media jump all over how it was done by people using insecure passwords.

    4. Re:In other news... by Chanc_Gorkon · · Score: 2

      I don't think it would ever say that it was done because they used insecure passwords. They'd say it was those EVIL HACKERS that did it nevermind that the user was stupid.

      --

      Gorkman

    5. Re:In other news... by drachenstern · · Score: 1
      There is a major Hollywood motion picture that becomes incredibly popular involving crackers and how easy most peoples' passwords are to crack

      in other words, the movies Hackers and SwordFish , to name just two movies where someone hacked into a "secure" system with absolutely no problem at all.

      oh wait, you say that's not what you meant, because people know it's not real life?

      well then, pray tell, how would they fix that? maybe a pbs special? (now there's an idea for a poll, which is your favorite channel, wonder if it's been done already ???)

      not to just bash the heck out of ya, even tho i just did, the odds of most people realizing that they actually have to care about privacy before they try to whine about it isnt very easy. and explaining to them why they're whining just pisses em off.

      sorry guy, guess them's the breaks.

      drach out

      --
      2^3 * 31 * 647
  4. Best password ever by Apreche · · Score: 3, Interesting

    The best password ever is one my friend has. He took the name of a family pet, just like an idiot would. But then he encrypted it with 4096 RSA PGP and the passphrase was his favorite saying. The 15th through 23rd characters where his password. And after he told me this, he changed it. Because he changes his PGP keys every week.

    If you are one of these people who has a stupid password, you deserve what you get.

    I'm going to get the book of petnames now and write a brute force hack into paypal, wee! My money problems are solved. I don't do stuff like that, but someone should. Send all the money to me that is.

    --
    The GeekNights podcast is going strong. Listen!
    1. Re:Best password ever by Anonymous Coward · · Score: 0

      Heh, it isn't so good now, now is it?

    2. Re:Best password ever by Anonymous Coward · · Score: 0

      I have my own encryption. Lets say my password was "Slashdot".. I'd encrypt it to "TodhSals"

      Can you crack it?
      Of you could also change the letters to the number equiv

    3. Re:Best password ever by Anonymous Coward · · Score: 0

      When I was figuring out what my password would be, I used the combination of the last letter of a simpsons character and their last name.....i cant tell you the character, but I will just refer to them as L. Simpson....actually, Lisa S. would work better.

    4. Re:Best password ever by madenosine · · Score: 1

      Your friend has way too much time

    5. Re:Best password ever by ergo98 · · Score: 5, Interesting

      He took the name of a family pet, just like an idiot would. But then he encrypted it with 4096 RSA PGP and the passphrase was his favorite saying. The 15th through 23rd characters where his password

      That sounds like an interesting way of making a password a failsafe (i.e. you would be able to recover it if you forgot the special sequence of characters, and the password becomes not only the code sequence but also the process. i.e. A prehashing of hashing. An interesting scenario would be to say "my password is always WEAKPASSWORD but for each service I'll hash it through SHA1 with the service name, and I'll use characters 10-15 in hex form as my password"). I use strong passwords (bogus words, numbers and punctuations), yet one way in which my passwords are weak is that I don't prescribe to best practices for changing passwords regularly. Why? Because I've forgotten so many passwords that I'm cynical about the reality of password changing best practices...recently I was thankful that my FreeBSD box has the single user local mode (without physical security there is no security) that lets you supercede the security systems because it'd gone unmanaged for so long that I'd forgotten among the hundreds of passwords out there. I truly believe that if users are forced to regularly change passwords then they a) write it down, b) use weak passwords so they don't forget for the short period that they have to use it, c) they use the same password on many different services. I believe that c is very common, and if you analyzed people's ICQ, Hotmail, Slashdot, computer, domain, etc passwords you would find some pretty common correlations.

      And after he told me this, he changed it. Because he changes his PGP keys every week.

      He changes PGP keys every week? How do people that have to keep importing his public key feel about this? (Personally I'd have long refused to both importing a new key each week).

    6. Re:Best password ever by AndyChrist · · Score: 2

      "I'm going to get the book of petnames now and write a brute force hack into paypal, wee! "

      Okay, now we're getting into people coming up with stupid names for their pets.

      The other dogs aren't going to pick on your dog for having a silly name, ya know.

    7. Re:Best password ever by Apreche · · Score: 2

      we keep our public keys in a shared network folder. So when you want to encrypt something you go to the folder to get the most current key.

      --
      The GeekNights podcast is going strong. Listen!
    8. Re:Best password ever by dsb3 · · Score: 2


      If he thinks it necessary to change his PGP key every week, I might imagine he hasn't heard of (or simply doesn't understand) the PGP Web of Trust.

      Oh, and the main property of a good password is randomness and non-predictability. It doesn't really matter *how* securely he thinks he generated it, but if the output happens to be coincidentally weak you've not gained anything.

      Oh? My password? It's five digits from pi, starting with the 49702th digit.

      --

      Slashdot? Oh, I just read it for the articles.
    9. Re:Best password ever by dsb3 · · Score: 2

      No! Wait wait! I changed my password. It's now the seven digits of pi, starting with the 9470344th.

      Go on, look it up.

      --

      Slashdot? Oh, I just read it for the articles.
    10. Re:Best password ever by ruvreve · · Score: 2, Insightful
      If you are one of these people who has a stupid password, you deserve what you get.

      The problem is that most of the people that have 'easy' passwords are not the ones that are affected. In a corporate environment if somebody hacks into the system using an easy password its the IT departments fault and problem. HOW COULD THEY LET THIS HAPPEN! I don't care if the person wrote the password on the screen in white-out you should have stopped this hacker. You are FIRED! Meanwhile the bonehead who did it continues to do it. That is why the circle was invented, to graphically illustrate this very example :)

    11. Re:Best password ever by Anonymous Coward · · Score: 0

      so, I all I have to do is replace his key with the key of my choosing?

    12. Re:Best password ever by Darth_Burrito · · Score: 1

      Because I've forgotten so many passwords that I'm cynical about the reality of password changing best practices...

      Heh, at one pace I worked we had to change our NT passwords every month, I knew some people that'd just kill 30 minutes entering *new* passwords until NT finally let them go back to the original.

    13. Re:Best password ever by ergo98 · · Score: 1

      And the saddest thing is that that is entirely typical: It goes against human nature to force someone to remember something (all the while saying that it's a critical piece of information and they'll be flogged if they forget it, but at the same time they should never write it down), and the discard it and remember something new a week later. Hell, my bank doesn't force me to change my PIN number on my bank card (hell, I don't even know the process to change it if I wanted to) every month, so why should I have to do it at a workplace?

      I'm entirely of the belief that those who draw up password best practices are generally morons: Anyone who would recommend that people change their password anymore frequently than once every 6 months (or if suspicious activity is detected) is ignoring some basics of human personality, and by doing so they are making the systems significantly more vulnerable rather than more secure.

    14. Re:Best password ever by Cuthalion · · Score: 1

      Never minding any possible semantic problems with your sig, you should switch all colons an double colons for that to represent a properly formed analogy.

      --
      Trees can't go dancing
      So do them a big favor
      Pretend dancing stinks!
    15. Re:Best password ever by madenosine · · Score: 1

      You're right! damn it!

      The sig doesnt really mean anything tho

    16. Re:Best password ever by leviramsey · · Score: 1

      The assertion that you should never write passwords down is not necessarily a good one. When deciding whether to write the password down, determine two things: 1) what damage is done if someone steals my password 2) what damage is done if I forget the password. In most cases of personal encryption, writing it down does little harm.

      From the Diceware FAQ:

      Should I write down my passphrase?
      This is a very important question. Most experts say never write down your passphrase under any circumstances. This approach comes from military doctrine, but military crypto systems are designed in such a way that one person forgetting a passphrase is not a calamity.
      I believe most people are more afraid of forgetting their own passphrase than they are of having it stolen. As a result they tend to pick passphrases that are far too weak. I actually did a small survey on this question and the results support my view. See http://world.std.com/~reinhold/passphrase.survey.a sc
      Also many people need multiple passphrases for different programs and needs. Remembering them all can be difficult, particularly those that are used infrequently. For most people it is better to pick strong passphrases, write them down and keep them in a very safe place. There may be legal advantages to memorizing your key, however.

      I use a Diceware password for my PGP (slightly obfuscated). The password is written unobfuscated in my wallet. I had no difficulty memorizing it, but I might forget it in the future, so I have some insurance.

      To anybody and everybody out there with insecure passphrases: Use DiceWare.

    17. Re:Best password ever by Anonymous Coward · · Score: 0

      1234567

    18. Re:Best password ever by President+Chimp+Toe · · Score: 1

      if you analyzed people's ICQ, Hotmail, Slashdot, computer, domain, etc passwords you would find some pretty common correlations

      There is some good advice to get round this problem: Have 2 or 3 passwords.

      The 1st password is something weak and easy to remember. Use this for slashdot, websites logins etc. Most people really arent that bothered if their /. account gets cracked.

      Use a more secure password for ICQ/hotmail etc.

      Have an "uncrackable" password for your computer login. I dont have a problem with writing down passwords, as long as you store it in a safe!

      This method means that if someon cracks your more simple passwords, they dont have access to more important stuff.

    19. Re:Best password ever by zzyzx · · Score: 4, Funny

      My PIN is pi... The last 4 digits.

    20. Re:Best password ever by TyZone · · Score: 1

      Wow! That's the same combination I have on my luggage!

      --
      TyZone
    21. Re:Best password ever by ryanvm · · Score: 3, Funny

      Because he [my friend] changes his PGP keys every week.

      Wow - every week, huh? Does your friend wear a tinfoil hat and worry about Major League Baseball spying on him with a satellite, too?

    22. Re:Best password ever by Procrasti · · Score: 1

      My PIN is pi... The last 4 digits.
      That's funny, but if you have a memory like mine, that means your using 3141 ;)

    23. Re:Best password ever by kubrick · · Score: 2

      I chose the middle 4 digits of pi myself :)

      --
      deus does not exist but if he does
    24. Re:Best password ever by Stephen+Williams · · Score: 2, Funny

      Okay, now we're getting into people coming up with stupid names for their pets.

      If I ever get a cat, I'm calling it "4tRv/qJ:"

      -Stephen

    25. Re:Best password ever by Loligo · · Score: 1

      >Have 2 or 3 passwords

      I typically go along with this... one password for chat systems / slashdot-like websites, one for stuff a little more secure, and one serious password for things that could cost me money in some way.

      Further, each password has several iterations that are rotated through over time, typically an incrementing number in place of a letter in a word in the weakest case (b0b becomes b1b, b2b, etc) so even a long-unused account that fits one of these styles can be quickly "hacked" back into.

      One of my first passwords was the model number of the monitor I used. It was a nice alphanumeric sequence, long enough that most places wouldn't fight it (well, this was 1985ish), and if I ever forgot it, it was always only a few inches away, but inconspicuous enough that nobody noticed (ie, it wasn't a post-it with "CM-1482" scrawled on it).

      If it's something that needs to be changed REALLY often, use the last 10 channels (number + call letters) you watched on super-extended-digital-mega-cable. With a short attention span, you could be resetting every 2 or 3 seconds.

      -l

    26. Re:Best password ever by Teknogeek · · Score: 0

      Mod this guy up, fast. That Diceware thing is great for passwords...I just swapped out my online game and e-mail passwords for Diceware-created ones.

      --
      I mod down anyone who uses M$ in their posts. I like to live on the edge.
    27. Re:Best password ever by trumpetplayer · · Score: 1

      So a friend of yours has a good password and you reveal it to everybody in the world!! What kind of friend are you!!

    28. Re:Best password ever by Anonymous Coward · · Score: 0

      Why bother with the pet's name and pgp? Just use some cryptographic RNG.

  5. Guessing seldom needed by TandyMasterControl · · Score: 4, Interesting
    If you have access to a person's desk like the study stipulates, you have probably a 1 in 3 chance of finding the password written down somewhere.

    --
    Johnny Quest has two Daddies.
    1. Re:Guessing seldom needed by Anonymous Coward · · Score: 0

      Or you can just install a hardware or software keystroke logger and have a near certainty of getting their password the next time they log in (except for those using S/Key, Opie, etc).

    2. Re:Guessing seldom needed by President+Chimp+Toe · · Score: 1
      Yeah. The same people who keep their car keys above their sunguard have the password on a post-it under the keyboard. Someone in my office even has theirs posted on the monitor! And if they dont have to write down the password, it must be easy to remember.

      Saying that, if you have access to the desk, their is probably easier ways to access their filesystem than guessing passwords. Like a boot disk or whatever. Kind of makes the whole article a bit irrelevent really....



      As a side note, i recently had a nice incident which illustrated most people's attitude to passwords.

      A good friend told me he allways used his dog's name for a password. I told him he was dumb and should choose something more cryptic.

      "But who would want to hack me?" He said.

      A couple of weeks later, his girlfriend was suspicous of him having an affair. She guessed his email password first time, and read his email. She is a bit of a dumb bitch, and seeing all the "Britney spears naked" spam, decided that her boyfriend was some kind of pervert. They nearly broke up over it....

      My friend learnt his lesson about weak passwords.

    3. Re:Guessing seldom needed by Anonymous Coward · · Score: 0

      yeah. my girlfriend guessed my password too. and i DID have an affair. outch.

      well, i learned my lesson, too.

    4. Re:Guessing seldom needed by Anonymous Coward · · Score: 0

      If you have access to a person's desk like the study stipulates, you have probably a 1 in 3 chance of finding the password written down somewhere.

      Look under the keyboard... 7 out of 10 chances it is written on a little slip of paper underneath... at least that what my stupid users tend to do. Till I throw away the paper and change the password! :)

      On another note, if I walk in and find someone's computer runnning and email opened and logged in, I send a nasty note to our Admin about why that user seems to think he doesn't deserve a computer and would like it removed from the office asap. :) That usually gets their attention too...

  6. Why need a team of specialists to do a survey? by pinkpineapple · · Score: 2

    It's written in all the study books I have been reading about. Most people will use their first name, the name of their pet or their birthdate in the password field. Only recently, you start to see smart software that refuses to accept this type of entries. What would be neat is a global password database where all the passwords that have been entered are stored as MD5, and each new password entered is checked agains the digest form to see if it matches, and if it does is refused. The dictionary words and common words should all be part of this database as a starter.

    PPA, the girl next door.

    --
    -- I feel better now. Thanks for asking.
    1. Re:Why need a team of specialists to do a survey? by blibbleblobble · · Score: 1

      I've used such a system, and it's -really- annoying!

      Try it, and see how your tech support like the hundreds of "what the 4893's my password?!?" phone calls they get per day...

    2. Re:Why need a team of specialists to do a survey? by Paradoxish · · Score: 1

      The problem with that is how easy it would be to bring the world to its knees by stealing that one huge database. Once you've got it you just make a simple program that reads in the contents of the whole database and then use that program from computers around the world to hit major websites and servers. Before you know it, every single ebay, amazon, and paypal account has been comprimised and trillions of dollars are being used without permission. Credit card companies are swamped with complaints, the big websites fail because every damn user account was cracked, etc. etc. etc. No, I think it's a bad idea to have all the passwords in one big database. :)

      --
      If you need to interpret my post, then you don't get it.
  7. 123456!?! by Anonymous Coward · · Score: 0

    damn, now i gotta go change the combination on my luggage!

  8. Hardly new! by ucblockhead · · Score: 2

    A cracker friend of mine noted this way back in 1983. Another interesting tidbit: back then, at least, a fairly high percentage of admins used "god" for the root password.

    --
    The cake is a pie
    1. Re:Hardly new! by bje2 · · Score: 1

      like the movie "Hackers"...it says that 3 most common password are (were) "Sex", "Love", and "God"...

      --

      "Facts are meaningless. You could use facts to prove anything that's even remotely true." - Homer Simpson
    2. Re:Hardly new! by phriedom · · Score: 1

      Well, if it was in a movie, then it must be true.

      --
      Don't moderate flamebait as Troll. Know the difference or you will be Meta-moderated.
    3. Re:Hardly new! by beer_maker · · Score: 1
      So the rest of them used what, foo?

      --
      Hmmm. Your ideas are intriguing to me and I wish to subscribe to your newsletter.
  9. My desk... by Evangelion · · Score: 2, Funny


    ... is usually a fucking nightmare. Good luck trying to guess anything by it.

    [ note to self -- 3mptyC0k3C4n is not a good enough password anymore ]

    1. Re:My desk... by Anonymous Coward · · Score: 0

      Now. How many people, like me, are going to change at least one of their primary passwords to '3mptyC0k3C4n'? :)

      - employee #31337
      bank of america

  10. Has to be crappy. by Account+10 · · Score: 5, Insightful

    The password policy where I work is 10 characters, mix of upper and lowercase, at least 1 non-alphabetic, expires every 6 weeks. So of course I write it down (indirectly) or put it in "logon.bat".
    Because of Windows' stupid caching, I already have to phone the helpdesk every 6 weeks to get my account unlocked when windows somewhere decides to try my old password 5 times in succession.

    1. Re:Has to be crappy. by BrookHarty · · Score: 2

      Actually its not windows using your old password, its a good way for someone to lock your account out and make you call IT and waste a few hours.

      Try this on your boss every day, make them hate IT as much as you. (-;

    2. Re:Has to be crappy. by Account+10 · · Score: 1

      It's no bother to me really ... my helpdesk request reads something like

      To : HelpDesk
      CC : My Boss
      Subject : Locked again.

      My account is locked *again*. Phone me when it is sorted, I'll be at Starbucks

    3. Re:Has to be crappy. by Anonymous Coward · · Score: 0
      From: Your Boss
      To: You
      Subject: Re: Locked again

      While your account on the development machine is locked, profit from the occasion to write some documentation (long overdue anyways)...

    4. Re:Has to be crappy. by Anonymous Coward · · Score: 0

      From: You
      To: Your Boss
      Subject: Re: Locked again
      > While your account on the development machine
      > is locked, profit from the occasion to write
      > some documentation (long overdue anyways)...

      Since (development machine == desktop PC == machine used to write docs)

      Your suggestion is not helpful, but thanks anyway.

      I repeat, page me when the ONE MACNINE is available again.

    5. Re:Has to be crappy. by Anonymous Coward · · Score: 2, Funny

      From: Your Boss
      To: You
      Subject: Re: Locked again

      >Since (development machine == desktop PC == machine used to write docs)
      >Your suggestion is not helpful, but thanks anyway.
      >I repeat, page me when the ONE MACNINE is available again.

      Then where are you sending this email from?

      Oh yeah, a reminder -- employee reviews tommorow at 9:00. See you there.

    6. Re:Has to be crappy. by beer_maker · · Score: 3, Insightful
      Try this on your boss every day, make them hate IT as much as you. (-;

      /RANT ON

      Make them hate IT as much as [they hate] you? You can't even remember your password and now you want to get the poor IT staff in trouble? Thanks a lot.

      I LOVE folks like you. You're the one with the 30 GB of mp3s on the server, the collection of screensavers on your desktop machine, and the Zip disk you swore would be used "only for work files, really."

      You, Sir or Madam, put the "L" in user!

      /RANT OFF

      Whew, that felt good. Who needs Karma, anyway ...

      --
      Hmmm. Your ideas are intriguing to me and I wish to subscribe to your newsletter.
    7. Re:Has to be crappy. by Anonymous Coward · · Score: 0

      From: You
      To: Your Boss
      Subject: Re: Locked again

      >Then where are you sending this email from?

      I'm using the SMS2mail gateway. Last email took 20 minutes to write.

      >Oh yeah, a reminder -- employee reviews tommorow at 9:00. See you there.

      OK

  11. Crappy Passwords by Anonymous Coward · · Score: 0

    This is news?? Hello!! Any sysadmin already knows this...

  12. Best way to get someone's password by asmithmd1 · · Score: 1
    Call them up and tell them you are a British psychologist doing a study on what passwords people use. But seriously, how did they actually do this? The article does not say

  13. Passwords by Anonymous Coward · · Score: 0

    What do you mean?
    I use pats for my username for everything and I just use pats75 for my password.. you know username with an extra character and then year of birth ... like on alot of systmes like oh I don't know the one I take care of at www.lockhavenonline.com

  14. My password is... by jwinter1 · · Score: 3, Funny

    My password is and always has been newline, newline, newline.

    Gets me logged in quick, and noone seems to be able to guess those last two characters.

    --
    Anything you can do, I can do meta.
    1. Re:My password is... by Anonymous Coward · · Score: 0

      Don't get it.
      My bad.

    2. Re:My password is... by Economist · · Score: 1

      They probably will not be able to guess the first two characters, since they will always end their tries with a newline... :-)

  15. People don't get password security by defile · · Score: 5, Funny

    I went to my bank the other day to assign a PIN to my ATM card. For this you need to sit down with a bank person at their desk. Just to be a pain in the ass, I asked her how many numbers I could enter (it's 7). She said 4. I entered 7 and it took.

    Then she went "How do you remember 7 numbers?" and I said "The same way I'd remember 4 numbers. It's not like remembering yet another set of numbers is going to be hard--I've memorized the passwords of at least 20 other services".

    To which the lady at the bank said "See, the best way is to just use the same password for EVERYTHING. This way you only need to remember one!"

    1. Re:People don't get password security by oo7tushar · · Score: 4, Funny

      The reason you want to enter 4 is because a lot of old systems only supported 4. They were trying to make you backwards compatible.
      But you raise an interesting point, passwords used to be the domain of the l33t (5, 10 years ago), but now everybody uses computers and they aren't as proficient. They can type, they can message but they don't understand computer security, for them the net is still their computer and the most secure box on the planet, why? because it's in their home.

    2. Re:People don't get password security by defile · · Score: 2

      The reason you want to enter 4 is because a lot of old systems only supported 4. They were trying to make you backwards compatible.

      If I plan on travelling to Europe I'll change it. It hasn't affected me otherwise.

    3. Re:People don't get password security by praedor · · Score: 2

      And as it turns out, research shows that 7 is the max number of digits easily remembered by subjects in studies of short-term memory. Short-term memory is, of course, the pathway one generally needs to traverse to produce long-term memories.


      As for passwords, I have a handful of nondictionary "words" that I recycle with variations (replacing this or that letter with special characters or numbers). Thus, though I have a base of perhaps 5 passwords, with the variations it becomes more along the lines of 15 to 20. The main problem I have is that most of my passwords have to be replaced once a month. It IS easy for people to forget passwords when they have to be long, contain "weird" characters, and change every 30 days or so. I don't know what the best answer to this is but it is a difficulty people have. I see MANY coworkers writing their new password on sticky notes which then go somewhere in or on their desks (mine goes in my fanny pack which never leaves my side - until I get the password down cold, then it is trashed).

      --
      In Bushworld, they struggle to keep church and state separate in Iraq as they increasingly merge the two in America.
    4. Re:People don't get password security by Anonymous Coward · · Score: 0

      What's to get? A password grants access...everybody understands that.

      What people doubt is that anybody will ever put in a significant effort to get their password, and obviously in most cases there is no significant effort. I'm not saying that a good password is not important, but there is a semi-valid reason that people do not put much effort into it

    5. Re:People don't get password security by Wells2k · · Score: 1

      Then she went "How do you remember 7 numbers?"


      To which my response would have been, "How do you remember phone numbers?"

      Granted, I am assuming that this took place in the United States in the latter half of the twentieth century/beginning of the the twenty-first, as not all countries have seven digit phone numbers. Heck, we remember area codes as well. And our social security numbers (nine digits), drivers license numbers (mine is 13 alphanumeric digits), etc.

      What was she, a complete idiot?

    6. Re:People don't get password security by defile · · Score: 2

      And as it turns out, research shows that 7 is the max number of digits easily remembered by subjects in studies of short-term memory. Short-term memory is, of course, the pathway one generally needs to traverse to produce long-term memories.

      Telephone numbers are seven digits. But they used to be only six digits, which means that the telephone company probably didn't do this study to figure out how many digits to use.

      I bet if we used 8 digit phone numbers for 30 years they'd be able to remember 8 digits without problem. :)

    7. Re:People don't get password security by MaufTarkie · · Score: 1
      Telephone numbers are seven digits.

      Not in all places. Here, it's 10 -- we have two area codes that overlap. I'm still slowly getting used to dialing at least 10 digits whenever I make a call...

      --
      Without you I'm one step closer to happiness without violence.
    8. Re:People don't get password security by Pussy+Is+Money · · Score: 1

      Heh :) You are just so cool ;) :D >)

      --
      Pushin' 'n dealin', shovin' 'n stealin'
    9. Re:People don't get password security by AndyChrist · · Score: 2

      If you don't think about the digits as separate numbers, you can easily remember more than 7. Groups of two are easiest, I think (probably due to all the practice most people get through combination locks), unless there is an easy-to-remember pattern in the digits.

    10. Re:People don't get password security by Anonymous Coward · · Score: 1, Interesting

      Some interesting number crunching...

      Assuming you run 1,000 attempts a minute to crack a password, and a dictionary of 60,000 words (i.e. 'joke' and 'joking' are 2 different words).

      Time to exhaustivly run throug the entire set...

      1 word - 60 minutes
      2 words catenated - 6.8 years
      2 words catenated or possibly seperated by digit - 75.34 years
      2 words catenated or possibly seperated by digit or non-alpha (i.e. '/', '+', etc.) - 137 years
      1 word followed by up to 5 digits - 12.68 years

      Brut Force
      ---------
      case senstive alpha or 0-9 digit
      # of characters
      1 - 0.06 minutes
      2 - 3.91 minutes
      3 - 242.23 minutes
      4 - 10.43 days
      5 - 646.63 days
      6 - 110 Years
      7 - 6,810 years
      8 - 422,221 years
      9 - 26,177,713 years
      10- 1,623,018,211 years

    11. Re:People don't get password security by Anonymous Coward · · Score: 0

      France has ten digits (2 digits of area code + 8 for the number itself). Luxembourg, (a small country of only 300.000 people) used to have 6, but is now slowly moving to 8. Blame it on poor planning of the liberalization of the telecom's market (basically, the first couple of digits chose provider, and each provider needs to plan as if the whole country joined him => thus huge wastage of number space)

    12. Re:People don't get password security by Anonymous Coward · · Score: 0

      Did the system actually accept and use all 7 chars, or just accept the first 4 and ignore the rest? You might actually have a weaker password than you think..

    13. Re:People don't get password security by prizzznecious · · Score: 1

      Groups of three are ideal, actually.

      --

      visit the hwky website for a lyrical genius infusion.
    14. Re:People don't get password security by blibbleblobble · · Score: 2

      okay then:

      (a) How many passwords per second can you try? If it's crypto (pdf, doc etc) then it's probably a lot more than 1000 (elcomsoft.com)

      (b) How many guesses are you allowed? On a networked system typically 3. On a *nix system it's a 3-second wait if you type the wrong one. On my dad's car, it's 3 seconds first time, 10 minutes second time, and 24 hours the third time

    15. Re:People don't get password security by Anonymous Coward · · Score: 0

      Assuming you run 1,000 attempts a minute
      ... snip ...
      Brut Force

      Your premise smells just like Brut Force. Any system that lets you log 1,000 attempts a minute (or more than 3-10 attempts before locking the account) is poorly designed and should be rooted by one of those l33t h4x0rs to teach the sysadmin a lesson.

    16. Re:People don't get password security by Anonymous Coward · · Score: 0

      Shutar! Beware the kenny rogers jackass!

    17. Re:People don't get password security by Galvatron · · Score: 1

      I know that Bank of Boston only accepts 4 (I know because they didn't tell me, so I chose a 6 digit number, which the atm then wouldn't accept). Not sure if their ATMs can accept pins for non Bank of Boston customers with more than 4 digits.

      --
      "The question of whether a computer can think is no more interesting than that of whether a submarine can swim" -EWD
    18. Re:People don't get password security by alec314159 · · Score: 0
      To which the lady at the bank said "See, the best way is to just use the same password for EVERYTHING. This way you only need to remember one!"

      I heard the same silly advice on TV

    19. Re:People don't get password security by Dzifa · · Score: 2
      The reason you want to enter 4 is because a lot of old systems only supported 4. They were trying to make you backwards compatible.
      If I plan on travelling to Europe I'll change it. It hasn't affected me otherwise.

      Or if you need to use an E-Trade ATM. They cut you off at 4 as well. Idiots.
    20. Re:People don't get password security by flink · · Score: 1

      I've had a BayBank^H^H^H^H^H^H^H Bank Boston ^H^H^H^H^H^H^H^H^H^H^H Fleet account for 10 years and I've never had a problem with my pin, which is 6 digits. You may have just been using a brain damaged ATM.

    21. Re:People don't get password security by defile · · Score: 2

      Not in all places. Here, it's 10 -- we have two area codes that overlap. I'm still slowly getting used to dialing at least 10 digits whenever I make a call...

      Oh, never claimed otherwise. I didn't qualify it with "In the US..." because Slashdot is an American (TM) site though. It's in the FAQ. ;)

    22. Re:People don't get password security by tmcmsail · · Score: 1

      as per the sig file, I resemble that remark, but of course since I have a liberal arts degree, the "...and would you like fries with that" is already in my background ;-)

      Tim McMichael
      MCSE (but my other computer is a Linux box).

      --

      What OS do you want to abuse today?

    23. Re:People don't get password security by Lord+Vipor+Scorpion · · Score: 1

      Based on what? Just curious. I find four numbers easier to remember, especially with the combined use of tens + hundreds (eg. fifteen hundred, 23 hundred and 35). Or are you just joking?

    24. Re:People don't get password security by Lord+Vipor+Scorpion · · Score: 1
      "If at first you don't suck seed, keep on sucking till you do suck seed." - Curley

      Curley was a homo?

  16. Passwords.. by bje2 · · Score: 5, Insightful

    you know what my problem is??? i have dozens and dozens of passwords to remember...i have my work computer, my work e-mail, my home computer, my 2 home e-mail accounts, eBay, Slashdot, IM, etc...it's just too many passwords to remember...

    because of that, i've fallen into a bad rut for my passwords, i only have like three that i use on a regular basis, and i just reuse them whenever i register for a new account...don't get me wrong, i know that's a terrible thing to do...but i just can't bother myself to rememeber more and more passwords...god forbid someone found one out...

    does anyone have any tips for things they do, or products they use to keep track of their dozens and dozens of passwords...?

    ...that said, i think i'll go change my slashdot password...
    --

    "Facts are meaningless. You could use facts to prove anything that's even remotely true." - Homer Simpson
    1. Re:Passwords.. by reaper20 · · Score: 2

      I do the same I thing I do with email addresses, one for 'serious' things, and one that I can throw away on worthless websites, etc. etc.

      My banking, insurance, and other important stuff I use the serious password, and everything else gets the lame one, which I never change.

    2. Re:Passwords.. by Anonymous Coward · · Score: 0

      I use a program on my Palm IIIx called YAPS (Yet Another Password Safe). It stores all my password details in an encrypted database, I only have to remember one password, and that's the one I need to get into YAPS.

    3. Re:Passwords.. by uebernewby · · Score: 2

      I do the same thing, at least for internet services I don't really care to much about. I'll use the same, really stupid, password for things like audiogalaxy and other services where I don't really care if my 'account' gets 'hacked'. To log into my provider's network, however, I have a fairly decent password.

      I don't think this is a terribly stupid thing to do, just convenient is all.

      --

      News and bla for computer musicians: http://lomechanik.net/
    4. Re:Passwords.. by Mr+Windows · · Score: 1
      One way to keep track of too-many-passwords-to-remember is to keep them in a file and use strong encryption and a healthy dose of paranoia. Changing passwords frequently would be a good idea too.

      The really paranoid would use the Cryptonomicon approach; keep the passwords strongly encrypted, don't make it obvious that you're entering the password, and use something like the blinking of a status LED to report the password (to help prevent shoulder-surfing).

      Even these wouldn't be entirely risk-free (see the story about modem status lights giving away secrets), but it'd be safer than having the same password for everything. Until the DNA computers can factor huge primes, that is...

    5. Re:Passwords.. by Remus · · Score: 3, Insightful

      I was in the same situation and decided that neither using only a few passwords nor trying to memorize >= 10 passwords is a really good idea. So I started using Keyring for PalmOS on my Palm. It even generates random passwords for me (useful for all those web accounts) and I only have to remember one master password.

      Passwords that I use regularly stick after a while anyway.

      Remus

    6. Re:Passwords.. by Crispy+Critters · · Score: 2
      A friend of mine has a clever technique for generating unique passwords to sign on to various online services.

      Hence, his passwords are "AOLsucks", "EBAYsucks",...

    7. Re:Passwords.. by miracle69 · · Score: 2

      If you carry a Palm device, like me, I've discovered a really neat program.

      Keyring.

      It's a program that is password protected and allows you to keep track of your passwords on your palm...

      --
      Linux - Because Mommy taught me to Share.
    8. Re:Passwords.. by Anonymous Coward · · Score: 0

      SLASHDOT sucks.

    9. Re:Passwords.. by cos(0) · · Score: 1

      There is an interesting solution to this problem, because many people (including myself) suffer from this.

      Go to www.toolsforselling.com and download their KEYMAKER. It's for Windows only, but pretty effective.

      It allows you to memorize just ONE master password, then for every separate service, you enter your master password plus the name of the service and optionally the username.

      It will then calculate the appropriate password based on all your input. Quite interesting. Try it!

    10. Re:Passwords.. by blibbleblobble · · Score: 2

      Damn good idea. For anyone with PGP6.0, you get an encrypted disk for free. Now on that disk (with a 3-word+2 digit password) you keep a file with all your passwords, usernames, etc. in it.

      Encrypted disks are great for so many things... too bad they're not easy to find anymore (not on latest PGP, not on GPG, and scramdisk's become commercial)

    11. Re:Passwords.. by blibbleblobble · · Score: 2

      Now if you could do morse-code on the shift key... that wouldn't show up on keyloggers

      You don't even need that: morse-code on any key would work. The keylogger would just record kkkkkkkkkkk and have no idea how long between each one.

      Nice idea. Can I patent it?

    12. Re:Passwords.. by steve_l · · Score: 1

      passsafe by Bruce Schneir's Counterpane group is pretty secure because (a) Bruce wrote it, he knows about strongly encrypting stuff on your HDD (it uses blowfish, I believe), and (b) the source is on sourceforge for you to check.

      it is currently windows only, but being on sforge now the core could be ported to anything with C++ to hand.

    13. Re:Passwords.. by dunkelfalke · · Score: 2, Insightful

      well it won't help you in case of brute force but it will help you in case of dictionary searching:

      use a password in a different language than your main one. the target language should be much different. for example if you mother tongue is english, use a password in russian, japanese or turkish. it should be a long sentence you can memorize easily, like fuckyoudamnscriptkiddie, translate it into the target language, memorize it.

      it works surprisingly well

      --
      "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
    14. Re:Passwords.. by nil_null · · Score: 0

      Crackers use dictionaries from other languages as well. Of course its not typical. Spanish being one of the more commonly used. Now if you use more than one language in the same password, that might be a good idea.

    15. Re:Passwords.. by dunkelfalke · · Score: 1

      as i said... the language must be radically different. even better if the language has a different character (cyrillic, hirugana) so you must use unproper latin characters.

      also nice if you use really nasty words (they are seldom written in dictionaries)

      --
      "It's such a fine line between stupid and clever" -- David St. Hubbins, Spinal Tap
    16. Re:Passwords.. by pacc · · Score: 1

      Any language isn't good enough,

      my rule is an excerpt of a good poem or a paragraph in a book, using only the initials of the words and replacing them randomly by uppercase characters or similar digits.

      even though I take great care of the password to my bank account, every other password has to be compromised by being recycled in other services with no inherited crediability.

      My worries isn't in predictable passwords but in how my passwords from one site can be compromised and used successfully somewhere else.

      I just hope that my habits never get that predictable.

    17. Re:Passwords.. by zbuffered · · Score: 3, Funny

      does anyone have any tips for things they do, or products they use to keep track of their dozens and dozens of passwords...?

      Use Microsoft(R) Passport(tm).

      --
      Synergy is your friend
    18. Re:Passwords.. by Anonymous Coward · · Score: 0

      Banging on your keyboard can make wonderfully random passwords. Just cut randomly to a desired length. See, this CAN be solved with a hardware solution...;-)

    19. Re:Passwords.. by Anonymous Coward · · Score: 0

      And you have time to post on something you say you really hate? Wow, your LIFE must suck!

      Get to fixing the real problem.

    20. Re:Passwords.. by ph117 · · Score: 1

      I've used PasswordSafe from Counterpane Systems (think Bruce Schneier) for a long time now. Every time I need a new password/login for a site I fire it up, add a new entry and generate a random 8 character password. It's very quick, stable, secure and free (possibly in both senses of the word - there was some talk about making it open source some time ago).

      http://www.counterpane.com/passsafe.html

    21. Re:Passwords.. by mogezoq · · Score: 1
      Passwordsafe is an excellent password management app. I currently have somewhere around 30 passwords I need to use, most of them infrequently, so I'd never be able to remember them all without something like this. It will generate random passwords for you as well (8 character, alpha/numeric).


      I keep it on a USB flash drive that fits on my keychain, along with the Cygwin version of the OpenSSH clients (ssh, scp). Very, very handy.

    22. Re:Passwords.. by Anonymous Coward · · Score: 0

      >Until the DNA computers can factor huge primes, that is...

      I'd like to see you factor ANY prime ;-)

    23. Re:Passwords.. by Anonymous Coward · · Score: 0

      When I had a palm pilot, keyring was one of my most useful applications... I had dozens of passwords stored in it.

      Unfortunately, there still is no comparable, simple solution like this for the PocketPC. And it's not worth carrying around a palm pilot just for that.

  17. No s**t, Sherlock by seldolivaw · · Score: 4, Funny

    I realised this the moment the team leader of our software development project -- a woman who is about to graduate with a *degree* in *computer science* revealed that her password for nearly everything was her name, spelt backwards. *D'oh!*

    1. Re:No s**t, Sherlock by Anonymous Coward · · Score: 0

      You shouldn't be so harsh. A degree in computer science does not automagically make someone a clueful/responsible/gifted sysdamin, coder, network security specialist etc etc. For proof of this statement, just look at the posts from the majority of people here at Slashdot. Some folk think that a passing knowledge of C or Linux makes them a wizard or guru.

    2. Re:No s**t, Sherlock by Anonymous Coward · · Score: 0

      Please call it "GNU/Linux". And by the way, a degree in computer science is not required to be a sysadmin.

    3. Re:No s**t, Sherlock by themassiah · · Score: 1

      *quietly changes passwords, looking around non-chalantly and whistling*

      --
      - Sometimes you're the pidgeon, sometimes you're the statue.
    4. Re:No s**t, Sherlock by Zarquon · · Score: 1

      HELMET So the combination is one, two, three, four, five. (lifts mask) That's the stupidest combination I've ever heard in my life. That's the kinda thing an idiot would have on his luggage.

      [fast forward] [Fast Forwarding, Sir!]

      SKROOB Great. Now we can take every last breath fresh air from planet Druidia. What's the combination?

      SANDURZ One, two, three, four, five.

      SKROOB One, two, three, four, five?

      SANDURZ That's amazing. I've got the same combination on my luggage. Prepare Spaceball 1 for immediate departure.

      SANDURZ Yes, sir.

      SKROOB, SANDURZ, and HELMET start walking out the door.

      SKROOB And change the combination on my luggage.

      --
      "'Tis great confidence in a friend to tell him your faults, greater to tell him his." --Poor Richard's Almanac
    5. Re:No s**t, Sherlock by Gabey · · Score: 2, Funny

      Was her name anna?

  18. headline by mattdm · · Score: 2

    Hey, the Brunching Shuttlecocks just published an article relevant to this one: The Twelve Least Surprising AP Headlines.

  19. so what? by Sh4dowM4ge · · Score: 1

    I don't care if most users passwords are easy to guess. They only got User access anyway.
    Being an Admin or root however, you have a responsibility of having good passwords...

    Most people's info or access rights are not important anyway, so why not let them use easy passwords. You get less calls to the Helpdesks that way...

    1. Re:so what? by MoneyT · · Score: 2, Insightful

      What?! Are you moronic? Having a user account is the first step in getting administrator accounts. Much information about people can be gleaned from a user account. Couple with some social engineering and a little bit of luck and you have access to an admin account.

      Of course, if someone has accesss to your dest, you've got bigger problems thatn just access to your compter account.

      --
      T Money
      World Domination with a plastic spoon since 1984
    2. Re:so what? by rmitz · · Score: 1

      It's pretty safe to assume that there's *some* local root exploit the admin has missed. Even the best can miss them, and new ones are found all the time.

    3. Re:so what? by Account+10 · · Score: 1

      Who needs admin access?

      You get user access to my PC and you get all the sourcecode for the project I'm working on, all the documentation, all my email etc.

      That should be enough to keep you going.

    4. Re:so what? by Sh4dowM4ge · · Score: 1

      Building a secure network is not all about users passwords. It's about fighting on all levels to prevent major damage to the systems or company you work for. As a sysadmin, we don't care about black hats. If they want info really bad, they will get it anyway. Securing a network is about taking simple measures to reduce the damage taken:
      Virusses are more of a threat in a Windows environment then bad passwords, so keep data files updated
      Taking backups and know how to restore them is a simple and effective measure to prevent data loss
      Keep your firewall updated, and the servers who listen on port 80

      Don't loose time training the users to choose hard to guess passwords... It is a waste of time.

    5. Re:so what? by blibbleblobble · · Score: 2

      Like the obvious? If they have access to your desk, they have access to your diary, your wallet, and your credit card ;-)

    6. Re:so what? by Anonymous Coward · · Score: 0

      Yeah, why get ALL THE COMPANY'S DATA when you could have access to the sysadmin's important Emacs install.

    7. Re:so what? by Penis · · Score: 1

      Hey, where do you admin at?
      IP address or doamin, please.

      31337 P3nis

  20. Better than arbitrary, complex passwords. by jonathanjo · · Score: 2, Interesting

    From Jakob Neilsen's UseIt column on usability and the Internet, comes this column on Security and Human Factors. His summary:

    A big lie of computer security is that security improves as password complexity increases. In reality, users simply write down difficult passwords, leaving the system vulnerable. Security is better increased by designing for how people actually behave.


    Sysadmins are fond of forcing users to use complex passwords. What happens then is that the user writes the password on a yellow adhesive note and sticks it on the monitor. Better to let the user use the first password that comes to mind, with possible gentle restrictions like no dictionary words, so that the user can hold the password in his or her head without writing it down -- or putting it in a "Passwords" file on the hard drive. How many theives really look up biographical information on computer users and find out all the names of their family members?
    1. Re:Better than arbitrary, complex passwords. by blibbleblobble · · Score: 2

      even non-dictionary words can be in a "dictionary-attack" dictionary.

      My wordlist-dictionary has things like tuxuser, bsd, and pr0ns1te in it - I'm guessing there are many things not in a dictionary but worth guessing passwords for.

      How many slashdot accounts do you think I could get with the "MicrosoftSux" password, for example?

    2. Re:Better than arbitrary, complex passwords. by leviramsey · · Score: 1

      The injunctions against writing passwords down are taken from military doctrine and do not apply to the personal case. In the military, if someone forgets a password, there is not a significant loss? Why? Because a call can go up the chain and the password can be entered.

      The problem is that personal users, fearful of losing data because they forget the password, choose an easy to guess password. Ultimately, writing the passphrase down in a safe place is acceptable practice, imho.

      F'rinstance, my passphrase is written in my wallet, but the actual phrase is an obfuscation of that phrase. The odds of someone stealing my wallet and knowing which accounts I use this passphrase on are slim enough for me to take this risk.

      Granted, if you write your passphrase down, you might make it easier for Three Letter Agencies to snag your message traffic if they search you.

    3. Re:Better than arbitrary, complex passwords. by WeedMonkey · · Score: 1

      Knowing /., probably not as many as you would using Micro$oftSux :-)

  21. I absolutely agree by shoemakc · · Score: 1


    Compaq Tru64 UNIX V5.1 (Rev. 732) (idol.union.edu) (pts/7)

    login: root
    Password: CmdrTaco

    --
    --an unbreakable toy is useful for breaking other toys--
    1. Re:I absolutely agree by Anonymous Coward · · Score: 0

      doesnt work.

  22. Be a nerd: Use random passwords! by billsf · · Score: 1

    Why not use PGP to generate your next passwd? I find if i take a random 'coredump' (say BINARY for Windoze users) and encrypt it, I can randomly pick out a section of characters and have a typable password. This is particularly handy if you travel alot and must deal with unusual keybds. PGP allways generates typable text.

    It may be very boring for psycholigists, but it is quite safe as most modern Unices use very strong encryption. If it is known this method is used, the limited keyspace could allow 'bruteforce' attacks. Windoze users, never mind -- your systems are so insecure you don't need passwords!

    1. Re:Be a nerd: Use random passwords! by Anonymous Coward · · Score: 0

      HAHAHAHA! Windoze indeed. You, sir, are a comedy genius.

  23. Passwords ... by NWT · · Score: 1

    oh man, I can see every 2nd slashdot reader change his password due to this article :-)

    --
    Life sucks.
    1. Re:Passwords ... by Anonymous Coward · · Score: 0

      I fool everybody by keeping my old password, because that's what hackers will not be expecting after this article.

  24. How to pick a good password by EricKrout.com · · Score: 4, Informative

    The best way to think of a password is to conjure up a phrase that's random, but easy to memorize. Then, just use the first letter of each word as your password.

    For example, if you're told to pick a password with at least six characters, you could randomly come up with: Dubya Doesn't Know A Goddamn Thing

    Then, you'll have a good, random password (ddkagt) and you'll remember it, too.

    If there are other restrictions (you need numbers, mix of upper/lower cases), just adjust your random phrase to coincide.

    m o n o l i n u x :: Imagine There's No Windows(tm). It's Easy If You Try.

    1. Re:How to pick a good password by Tony+Hoyle · · Score: 5, Funny

      MY boss does this using nursery rhymes. Sometimes when he's on holiday we have to get into his machine... you end up with half a dozen geeks reciting nursery rhymes to each other until the correct permutation is reached.

    2. Re:How to pick a good password by reaper20 · · Score: 2

      I do this all the time, its a great method.

      I tried this with some of my users, one particulary bright one ended up saying "so now I have to remember a whole phrase instead of one word!"

      I felt like Major Quimby in that Bear Patrol episode - "Is it me, or are these people getting stupider every year?"

    3. Re:How to pick a good password by masqer8 · · Score: 0

      as long as the phrase you come up with is not something like

      "real americans never do oral masturbation"
      or
      "paul and susie surely will obfuscate random datagrams"

      scnr,
      m8

      --
      this .sig -and all of the above- is false.
    4. Re:How to pick a good password by mocm · · Score: 1

      Or even better. Get a random string and memorize a word for every character. Then make up a picture in your mind and of the word and link all words together using the pictures.
      Take e.g. %g5$mka1
      I already have words for numbers, because I read "The memory book", so 1 is "tie" and 5 is "law".
      Which would be a tie and lady justice as a picture.
      Now % could be anything you would associate with that or just a huge % sign. $ is easy, just think of money. For the letters you can make up standard words and pictures, so that you have the alphabet covered. Like "gold", "mule", "kite" and "ape".
      Now you have a huge percent sign, made of gold.
      You have to remember that as your starting picture. Next is the golden justicia, after that
      justicia is drowned in a lake of money (dollar bills maybe). Then you could have a mule laden with bags of money. Then a mule flying a kite, followed by an ape doing the same thing. And the last one is easy. The ape wears a tie.
      Now you have those 8 ridiculous images and can connect them in a series. With practice you can remember all your passwords and other stuff as well.
      It is easier to remember images and even easier to remember unusual images. Using the technique, which is described in the aforementioned book, I could learn the 50 states in alphabetical order in about 30min (and I am not even an american nor do I live in the US).

      --
      ***Quis custodiet ipsos custodes***
    5. Re:How to pick a good password by Anonymous Coward · · Score: 0

      LOL!

    6. Re:How to pick a good password by archen · · Score: 1

      Actually I encourage users on the systems I admin to use a pass phrase instead of just a word. Although I tell them to make an entire sentance with each word separated by a number - preferably with the last letter of each word capitalized. Not TOO hard to remember, and secure enough...

    7. Re:How to pick a good password by jcsehak · · Score: 2, Funny

      My favorite method is to take the first three characters of the title of your favorite opera and combine them with the last one. So if you're a fan of "Fidelio", then

      oh, crap... nevermind.

      --

      c-hack.com |
    8. Re:How to pick a good password by Anonymous Coward · · Score: 0

      Yes, you are right. It would be much better to pick a random password.

    9. Re:How to pick a good password by Spunk · · Score: 1

      Good policy. For an added step, I try to dissociate them from anything about me. Applying this to your example,

      Dubya Doesn't Know A Goddamn Thing,

      would be a good phrase for someone who is pro-Bush, as crackers wouldn't be expecting it :)

      Other choices are bands you don't like, movies you haven't seen, etc.

  25. What else is new? by Deanasc · · Score: 2

    Back in '94 when I took over as network admin for the stockbrokerage I worked for the only joy I found in the job was guessing passwords. I could usually do it on the first guess. A tip here is if it's not in the roledex under "password" then it's in the pictures on the desk. This is especially true if the only picture on the desk is the guy's sailboat.

    --
    I've hit Karma 50 and gotten a Score:5, Troll... I win!
  26. The fallacy of their argument by Walter+Bell · · Score: 5, Insightful
    ...is that, although biometrics will generate a nice password like "sdf987*(&^JJHASBDjkasdjkh231*()&as" that nobody could ever guess, the problem of a replay attack is undeniable. That is, once somebody can obtain your biometric hash through the use of a rogue thumbprint scanner, there's no way (by definition) that you'll ever be able to change it to something different and make it secure again. And that is why putting biometric scanners on personal PCs with insecure Micro$oft operating systems opens the door quite wide to identity theft.

    The best authentication schemes involve something you know (a PIN or password) and something you have (a smartcard, RSA key fob, or some other device that implements a challenge/response system to authentication queries).

    ~wally

    1. Re:The fallacy of their argument by Anonymous Coward · · Score: 0

      What about "random" passwords created by the user that have no meaning and are 15+-20+ characters? (I'm not talking about anything that contains dictionary words--although they might be in there occasionally for the purpose of being truly random.) There is no key, there is nothing recorded, there is no set number of characters generated so a brute force attack would have to check everything from 1 character passwords up to 100+ character passwords. That is quite a long attack, and if you're reading the logs you'll have some idea of what is going on and have some time to track the person down, block them from accessing, or block the point at which they are attempting to access. The problem with brute force attempts is that they stand out rather obviously for anyone who is even half aware.

    2. Re:The fallacy of their argument by rfredell · · Score: 2, Interesting
      Why does the OS make a difference? Would your favorite be OS immune to rogue thumbprint scanners? And why would putting a biometric scanner on an OS that is already wide open to identity theft (e.g. Win9x) make a difference?

      I wholly agree that two-factor authentication (something you have & know) is the way to go, but some of the hardware used can be vulnerable as well. Say for instance that you have an RSA key on a smartcard that has its own encryption. Now say that someone figures out how to sniff the key from the card via RF emissions. Poof. You are now vulnerable to having your identity stolen. ISTR reading a research paper that indicated hardware tokens were not as secure as advertised, although at the end of the day two-factor authetication is still better than one.

    3. Re:The fallacy of their argument by LadyLucky · · Score: 2
      Windows stores passwords in a one-way hashed form, and cannot be recovered. They are, as i recall, base 64 encoded when transmitted when you logon, if logging on remotely. But other than that tokens are passed between the computers to continue your authentication within the domain.

      I dont know if it uses a nonce, however, and if that nonce is unique to the computer.

      --
      dominionrd.blogspot.com - Restaurants on
    4. Re:The fallacy of their argument by Anonymous Coward · · Score: 0
      Yeah, that would be a great idea, if you can train all of your Windows newbies to memorize 15-character random passwords without writing them down and sticking them in their desk.

      And that, of course, is why so many lusers choose crappy passwords.

    5. Re:The fallacy of their argument by Anonymous Coward · · Score: 0
      Defeating one-factor authentication needs an IE bug + one copy of Back Orifice.

      Defeating two-factor cryptographic authentication needs an IE bug, one copy of Back Orifice, and one van parked outside your apartment with expensive RF sniffing equipment in it.

      I'm just as paranoid as the next guy, but I don't really expect to be the subject of the latter attack. It's just not worth it.

    6. Re:The fallacy of their argument by blibbleblobble · · Score: 2

      I have a crappy password, but don't consider myself a luser. I use it for my yahoo account because I don't trust yahoo with my real password.

      I have an even crappier password for throwaway sites like NYTimes, where I really don't care if someone uses my password.

      The idea being, yahoo can't just use the password I supplied for their account to open my PGP key. I'm sure if you had the list of NYTimes' passwords and people's email addresses, you could just go to each email provider in turn and type in the person's NYT password.

      The problem isn't just with crappy passwords, it's with the way that even secure passwords get kept for years.

      "I use my dog's name as a password. Fetch, qloaah292!"

    7. Re:The fallacy of their argument by tuffy · · Score: 1

      I hope Windows passwords aren't base64 encoded. My binary email attachments arrive base64 encoded, and pine decodes them just fine. Some sort of one-way hash would make a lot more sense...

      --

      Ita erat quando hic adveni.

    8. Re:The fallacy of their argument by Anonymous Coward · · Score: 0
      This is true for static biometrics: thumbprint, retinal scan, facial geometry, hand geometry, etc. Not all biometrics are static; some are disposable.

      Check out BioPassword. They were at the RSA show last month, and really are a cool technology. For those of you who don't feel like clicking through, they use a keyboard typematic biometric. That is, for all values of "you," how you type a specific word follows a discernable, repeatable pattern that's difficult to imitate.

      KT biometrics are just as capturable/replayable as all other biometrics, but they're also disposable. How I type "foobar" tells an attacker nothing about how I type "bletch." But they can be changed should the need arise, just like a traditional password.

      BioPassword is probably going to eclipse other biometrics, because it is ADA compliant (ever try taking a fingerprint from someone without a hand?), relies on a generally accepted UI (a non-trivial percentage of the population will refuse a retinal scanner), and needs no additional hardware.

      Disposable biometrics have all the drawbacks of standard biometrics except the "once compromised, always compromised" issue, and they have the privacy advantage of not being linkable between discrete systems where different disposable biometrics are used. Once we get past the 1:1 idea of biometrics (a person has exactly one right thumbprint) into a many:1 relationship (one person has many unique characterizations, but each characterization is substantially unique to that person), you begin to see how cool the idea really is.

    9. Re:The fallacy of their argument by LadyLucky · · Score: 2
      It hashes to store them, yes. Base64 for transmission... like challenge-response over HTTP.

      Quite right about the base64, wholly inadequate.

      Note that once authenticated, the password is never transmitted, as the computer doesnt know it anymore.

      --
      dominionrd.blogspot.com - Restaurants on
    10. Re:The fallacy of their argument by abernathy · · Score: 1
      "BioPassword is probably going to eclipse other biometrics, because it is ADA compliant (ever try taking a fingerprint from someone without a hand?)"

      Nope. but it sounds kind of fun, in a cruel sort of way.

      So if the ADA is a problem for fingerprint biometrics (hey, some people might not have hands!), how is a keystroke-based biometric like BioPassword going to be any different? Having no hands cuts into your typing speed as well.

    11. Re:The fallacy of their argument by Anonymous Coward · · Score: 0
      Having no hands cuts into your typing speed as well.

      Ahh, that's the magic. BioPassword will even work with those look-screen keyboard input devices that completely paralyzed people use. It doesn't have to be a "traditional" keyboard. It just has to provide keyboard input in a consistent fashion. You might have to tweak it to get it to work for severely handicapped people, but even they have unique typing patterns that are not easily reproduced!

    12. Re:The fallacy of their argument by Anonymous Coward · · Score: 0

      actually 99% of modern biometrics systems have simple defenses build in to defeat the "replay attack." when a user enrolls, it is true, a hash of a template is stored that represents data points acquired from the biometric sample. and as you probably already know, authorizations, are a process of comparing subsequent samples against the template sample and ascertaining similarity via a (hopefully) configurable algo. however, you are NEVER going to get the same, let say, fingerprint sample, twice in a row in realistic situations. the finger approaches the detection device at an infinite number of angles, there are conditions such as sweat, dirt, and fingerpad wear and tear... thus the software better be able to compare the sample with the template and make a good reccomendation as to whether its the same person. HOWEVER, any system worth its weight in marshmallow peeps knows that an identical sample sumbitted twice is an attempt at fraud, and will disallow it. that's BASIC "see spot go" security...

    13. Re:The fallacy of their argument by Anonymous Coward · · Score: 0

      have you ever TRIED biopassword? the system has about the *highest* FAR (false acceptance rate) of any biometric system i've ever tried. if you watch someone submit their sample and get a general guage of their typing speed, you can get into their account with about a 40-50% success ratio after about 5 minutes of trying. and forget about it for people who cant type. yet another example of "computer" people trying to design a system that will work on the whole world based on their limited experiences. have you ever seen someone who has never typed before try to sumbit 10 samples of a sentence long typing submission. 90% of those people would just walk and say screw your new security system buddy. and we're not even mentioning the FRR (false rejection rate) which is ridiculous. you come in the office and for some reason you're not typing like you did on submission day or you have a hangnail on your middle finger so you dont want to pound on it like you usually do, all the sudden you're pulling the system administrator away from his donuts and coffee to let you in so you can spend the rest of the day on kazaa and aol instant messenger. its a mess.

    14. Re:The fallacy of their argument by Moonshadow · · Score: 2

      Why not hash it to transmit, and then compare the two hashes...?

  27. Common Passwords by ath0mic · · Score: 1

    PHREAK
    Alright, what are the three most commonly used passwords? JOEY
    Love, secret, and uh, sex. But not in that order, necessarily, right?
    CEREAL
    Yeah but don't forget God. System operators love to use God. It's that whole male ego thing.

    1. Re:Common Passwords by defile · · Score: 2

      They forgot to mention 'password'

      When working an ISP, that was the most common password. Never really got the other 3 so much, probably because people don't want to say 'SEX' over the phone.

    2. Re:Common Passwords by Anonymous Coward · · Score: 0

      I agree. I work in a tech support job, and all the computers we setup have password as default pass.... many people are too lazy to change this default.

    3. Re:Common Passwords by Anonymous Coward · · Score: 0

      Which ISP did you say that was again?

    4. Re:Common Passwords by blibbleblobble · · Score: 2


      Please type your password:
      "your password"

  28. I'm not surprised by Sits · · Score: 2, Informative

    Passwords often have to be at least 6 characters long which is just about the largest thing that people will be able to memorise. Often, drachonian admins force people to change their passwords every few months forcing users to commit yet another password to memory so they end up using things that they already know well as passwords. At least the people wern't writing them down on post it notes (even if they were doing the next worst thing). Jakob Nielsen wrote a bit about this in Security and Human Factors.

    I remember reading about how one of the most popular passwords in the 80s was fred because it was easy to remember and all four keys were close together.

    1. Re:I'm not surprised by Maserati · · Score: 2

      heh, eTrade uses a six-character maximum password. Right, SIX is the MAX. They're a brokerage for chrissake !

      --
      Veteran, Bermuda Triangle Expeditionary Force, 1992-1951
    2. Re:I'm not surprised by Anonymous Coward · · Score: 0

      Or how about a rather large Internet financial institution that requires a 6 digit password? No longer, no shorter, exactly six characters..

  29. If you can get at their desk... by wedg · · Score: 1

    ...can't you just look over their shoulder? I mean really. If they aren't paranoid enough to pick a good password, then they won't care if you're standing right behind them.

    --
    Jake
    Dating: while( 1 ){ call_girl(); get_rejected(); drink_40(); } return 0;
    1. Re:If you can get at their desk... by blibbleblobble · · Score: 3, Interesting

      I think even people with crap passwords (especially people with crap passwords) will either shield their typing or give you an evil stare until you look away when they're typing it.

      That's the other advantage of keeping the same password for years... you can type it in a blur of fingers, and nobody'll ever see it.

    2. Re:If you can get at their desk... by wedg · · Score: 1

      The easiest way to fool a shoulder surfer is to move your fingers one key to the left or right whenever you type your password. Makes it very difficult to follow the movements.

      --
      Jake
      Dating: while( 1 ){ call_girl(); get_rejected(); drink_40(); } return 0;
  30. this research.. by monkey_jam · · Score: 1

    ..was conducted in the university I go to. In face, Helen Petrie is my lecturer for the HCI module.

    i see this research is as useful as the module thats taught...

  31. 12345 you putz -nt- by MoneyT · · Score: 1

    I said no text

    --
    T Money
    World Domination with a plastic spoon since 1984
  32. Passwords can be easily guessed... by CraigoFL · · Score: 2

    ...or they can be handed over to you voluentarily, if you say you're doing research on passwords. :-P

    1. Re:Passwords can be easily guessed... by Cro+Magnon · · Score: 1

      A co-worker once tried to guess my password. He came close, but my girlfriend spells her name funny, so he missed.

      --
      Slow down, cowboy! It has been 4 hours since you last posted. You must wait another few hours.
  33. Typical linux geek answers by Anonymous Coward · · Score: 2, Interesting

    This is the typical crap about passwords that gets handed around. PGP encoding and changing passwords weekly. As if. Looking at the number of sites I have passwords to, it numbers something like 60. People want usable computers not sophisticated mnemonics.

    Not that I always agree with him but this article is ideal:

    http://www.asktog.com/columns/026Security.html

    Time to accept that this is the reality of existence. You will never get people to memorize hundreds of passwords. I've seen businesses lose tons of money because they require cryptic passwords and the user moves on to the competitor.

    BTW the password nightmare is currently handing M$ a big victory in Passport. God knows I would love to have a single password...

    1. Re:Typical linux geek answers by Trevelyan · · Score: 1

      god know we would love u to have only one password too >:P

  34. Computer Science education is stupid! by greenrd · · Score: 1
    This is ridiculous. They teach you how to do pointless things that 99.9% of people will never need to do, like manually implement a parser (when parser generators are available to do it for you!), but don't teach you how to do the things that everyone needs to do, like a picking a good password! The words "stuck", "past" and "in the" spring to mind.

    When I complete my PhD and become a lecturer, I'm going to try and cut the crap and focus on what's important.

    1. Re:Computer Science education is stupid! by PurpleBob · · Score: 2

      They'll let you complete a PhD with that stance?

      Compare this to mathematics. Why would anyone need to know how to prove the Pythagorean theorem? It was already proven thousands of years ago! Stuck in the past indeed...

      --
      Win dain a lotica, en vai tu ri silota
    2. Re:Computer Science education is stupid! by bogado · · Score: 2

      Shure and supose they didn't teach you about parsers, just because there is already plenty of parser ready to use. no fast forward 50/100 years. Everyone uses the parsers that were already made in the last century, and some one found a security flaw in one of those ancient parses, but no one living has any idea on how to make a parser, after all there were parsers already made...

      Seriously you NEED to teach people how stuff is build and how they work. It's not enougth to simply step up to the next level of abstraction (that is suposed to be simpler). Following the same reasoning I could rant about how CS schools is teaching "C" when there is already "visual basic" witch is simpler and it is probably what you would need in the future.

      --
      []'s Victor Bogado da Silva Lins

      ^[:wq

    3. Re:Computer Science education is stupid! by shayera · · Score: 1

      Actually, and this is much to my horror, there are some 'business schools' teaching a wayward variant of CS, involving VB and Java, claiming these are the only languages needed for the savvy CS student in the business environment..
      Needless to say I tend to giggle a lot when certain aquaintances try to poke fun at me for delving into the inner workings of C code

      --
      Venlig Hilsen / Regards
      John Hinge - shayera / .sPOOn.
      "Buffy I love you... Please God No!" S
    4. Re:Computer Science education is stupid! by greenrd · · Score: 1

      Big difference. To be a professional mathematician you need to be able to prove theorems. To be a professional computer scientist, you do not necessarily need to know parser theory. Since professional computer scientists are only a tiny fraction of the output of undergraduate programs anyway, this makes the case for it even weaker. Yes MIT and Cambridge et. al. should still teach it, that's the kind of stuff they do and it has its place, but the average university should focus slightly more on practically useful material.p.

  35. Sports team passwords by AndyChrist · · Score: 2

    In high school, a friend of mine has "hoyas" as his password for the school network. Another friend guessed this easily when we were talking outside the computer lab one day. He looked the guy up and down. Then he bolted into the lab and the idiot ran into the lab after him, both of them racing to change his password.

    Of course, my retarded friend was wearing a Georgetown hat, and a georgetown Tshirt.

    Duh.

    And with regard to pets....whenever someone asked what they should set their password to, I would always tell them, "use the name of a DEAD pet." Much harder to guess than a living one. Especially if it's long dead.

    1. Re:Sports team passwords by stevey · · Score: 1

      Noooooo ... I only have one pet, and he's going to live forever......

    2. Re:Sports team passwords by AndyChrist · · Score: 1

      Typically, I was telling college students, many in their 30s and 40s, this. Most of them will have learned life's painful lesson, that puppies do not live forever.

    3. Re:Sports team passwords by shayera · · Score: 1

      Just having seen Josie and the Pussycats, I'm siding with Tara Reid on this.. Puppys live forever and never grow up into large doggies that are gonna die.. no way !

      --
      Venlig Hilsen / Regards
      John Hinge - shayera / .sPOOn.
      "Buffy I love you... Please God No!" S
  36. Even non-techies know by asv108 · · Score: 2
    I have a bunch of friends from college, who got hotmail accounts after they graduated when the university cancelled their e-mail accounts. Their favorite net activity is cracking in to a hotmail account of someone we know and impersonating them. Hotmail has a security question which asks questions that only the specific user would know such as "What is the name of my CAT?" This is great for attackers who don't know you personally but what about the perspective intruders who do know you personally?

    My solution is not to use hotmail although there is no reason for me to use hotmail in the first place, but I have so many non-techie friends who love hotmail and will never switch.

    1. Re:Even non-techies know by clone304 · · Score: 1


      Uhh, the Answer to the personal question doesn't have to be correct. That'll take care of the personal friends AND the hackers that do their homework.

      .

    2. Re:Even non-techies know by Mr.Spaz · · Score: 1

      I've done this for years. For a while the "Name of my dog" question was answered with "Dinner."

      Well, I thought it was funny.

  37. The Problem with Passwords by samael · · Score: 2

    I'm currently running a network for about 60 people.

    I constantly bump into people whose passwords are "Password", "Password2", the name of the company, their own name, etc.

    Part of me wants to force them to use complex passwords. And part of me knows that if I did, I'd spend my whole time resetting passwords for people.

    When we got the new printer/copiers in, they had protection on them, so everyone got a 4 digit user id, and a 4 digit password, to retrieve their prints when they got to the printer. They were told that printing would be monitored and charged to their departments, and that they should keep their passwords secret.

    I wandered around a week later, and over half of them had little yellow post-its on their monitors, with their id/passwords on them. Because, for some reason, people can't remember an 8 digit number unless it's a phone number.

    1. Re:The Problem with Passwords by Anonymous Coward · · Score: 0

      9 digits are better and "will ensure even greater privacy" - your SSN...

  38. This is nothing new by MO! · · Score: 1
    A women I worked with 8 years ago had called to report a problem with her PC. She had gone into a quick meeting before I got to her desk. When she came out, I had already logged onto her PC as her and fixed the problem. She couldn't believe I figured out her password and asked how I did it. I pulled the picture of her cat off the cubicle wall and turned it over. The cat's name was there - and the first guess at her password worked! She was shocked!

    --
    I AM, therefore I THINK!
  39. So? Only allow 'trusted' devices... by jerdenn · · Score: 2

    So, why can't individual biometric devices also have a key, and only 'trusted' scanners are allowed to communicate?

    Doesn't that solve your 'replay attack' scenario?

    -Jerdenn

  40. The more things change... by jonesvery · · Score: 2

    In Cliff Stoll's book "The Cuckoo's Egg" (it's about his experience as an astronomer/sysadmin chasing a cracker in the mid 80s), you get an entertaining window back into a very different era in computer security...and yet perhaps it wasn't all that different. At one point Stoll mentions changing the root password on a machine to something like "basilisk", because no one would ever think of trying the name of a mythological creature as a system password. =)

    My own favorite piece of password advice came from the "Unix Handbook" that my university passed out to incoming students...a line in big, bold text:

    Do not choose a password that is even remotely related to Star Trek of Monty Python.

    --

    * * *
    It is a dada story -- it has no moral.

  41. Epasswd by jhunsake · · Score: 4, Insightful

    Enforce password conventions the way NASA does... Epasswd

    1. Re:Epasswd by pmc · · Score: 3, Interesting

      Enforce password conventions the way NASA does

      Hmm - not too bad an application. Users will write them down if they are too complex; that is the difference between strong and effective.

      The policy I came up with at my last company was minimum of 6 characters, not like your name, must start and end with a letter, and must contain a non-letter. This got the success rate of lophtcrack with multilingual dictionaries down from 80%+ to about 4% on hybrid scan. This was enforced by Password policy enforcer (a company I have no connection with except as a satisfied customer), which has slightly better functionality than epasswd.

    2. Re:Epasswd by Rogerborg · · Score: 2
      • Enforce password conventions the way NASA does... "Epasswd differs from the vendor's password programs in that it enforces strict password construction requirements which include a minimum number of numeric, special, lower, and upper case characters as well as the min and max password length. [...] Passwords that have been changed using epasswd have withstood processing by the Crack 5.0 release which is a publicly available password cracking application"

      Unless you've got physical access to the machine, in which case you can just find it on the PostIt note stuck to the monitor.

      Honest to god, who actually runs dictionary attacks on passwords for hostile purposes in the real world? Really, who? Examples?

      My own experience with my company is that requiring a mixed alphanumeric, timing it out, and disallowing the previous 9 passwords just leads to me using "[usualpassword]0-9". Combine that with Window's lovely trick of expiring your network passwords on the server because you haven't logged your machine out for two weeks (no, really), and you get a royal pain in the ass for both users and tech support, and zero extra security, because it's an intranet password, and anybody who's in a position to enter it could just pick up my machine instead.

      --
      If you were blocking sigs, you wouldn't have to read this.
    3. Re:Epasswd by jhunsake · · Score: 1

      disallowing the previous 9 passwords just leads to me using "[usualpassword]0-9"

      This can be prevented with Epasswd by restricting the number of overlapping characters from previous passwords. It should be noted that Epasswd has more options than are posted on its webpage.

    4. Re:Epasswd by generic-man · · Score: 1

      On my Yahoo! Mail account, I had a dictionary word as my password for years. A few months ago, I noticed that instead of spam, my inbox was getting filled with weird "Message undeliverable" and "Message returned to sender" messages, along with a few that just said "remove." After a little investigating, it turns out that someone had cracked my simple mail password and was using my account to send spam out en masse. Once I changed my password to something harder to crack, the flow of messages stopped.

      And before you ask, yes, I am.

      --
      For more information, click here.
  42. "Passwords?" by Serocki's+Stricture · · Score: 1

    If it isn't insulated and encrypted then this matters. The mass of the human race is still left with a cacophony of microsoft products. Anyone for a viewsonic/panasonic biometric 21'LCD. ;)

  43. Ideas by RainbowSix · · Score: 2

    A good password is not necessarily one that is random characters. In my experience, an easy to remember one that is difficult to crack involves building one from common terms.

    Let's take for example a Hitchiker's Guide to the Galaxy theme.
    Take a 2 syllable word, say "zaphod"
    Take a number, of course "42"
    Put the number between the syllables word: zaph42od. It is still pronouncable, and you know where it came from, but now it is a common word that has numbers not at the end, but inside it, so even cracking programs will have a significantly more difficult time randomly generating it.

    The other technique I use is to also hit the last key twice: zaph42odd. It ofuscates it further but at the same time has a minimal cost to you for remembering it.

    So, even if you're a lamer whose password is "password," changing it to pass43wordd makes it significantly harder to crack but just as easy to remember.

    --
    --------
    It's OK to be social, just don't tell anyone about it.
    1. Re:Ideas by Mr+Windows · · Score: 1
      That's a reasonable idea, but if this is for an important password, you'd probably want to make it a bit stronger (mix case, bung in some non-alphanumeric characters, that kind of thing). It's not necessarily a good idea to have a well-known way of generating your password; if it's mentioned a few times in public places (eg /.), cracking tools may well get extra features to cope with it. I wouldn't be surprised if some tools guessed things like "2bon2b" along with dictionary words.

      There are some interesting links at Matt's Unix Security Page, particularly a paper by Daniel Klein on how password crackers could work, though it's bit dated now.

    2. Re:Ideas by Anonymous Coward · · Score: 0

      Sucks, "zaphod" and "42" are exactly the two parts of my use-for-all password..

      Reminds me of the time some friends were playing Resident Evil, and the secret combination they needed was exactly my PINumber.

      I better change it anyway, it's too weak since Audiogalaxy/Slashdot has it in plain-text URLs, but I use it for my Yahoo, Amazon and eBay accounts too.

  44. What about the inverse? by dsb3 · · Score: 5, Funny

    I once named a pet (it was a fish, in fact) after one of my passwords. Shame it wasn't one of the more pronounceable ones.

    --

    Slashdot? Oh, I just read it for the articles.
  45. Here's a passphrase generation web page by phr2 · · Score: 2
    It's secure because you can provide your own entropy and the conversion to a passphrase is done with client side javascript. It also supplies some server side entropy by SSL, in case the entropy you supply isn't good. You'll have to click yes to accept the selfsigned SSL certificate since I haven't gotten around to renewing my commercial certificate. It uses the diceware word list and a similar algorithm to generate the phrases.

    To run the script, click here.

  46. 20/20 hindsight by cluening · · Score: 2

    You know, this sounds a lot like the 20/20 hindsight problem: Things become obvious after you know about them. If you know my passwords, it would be very easy for you to figure out how I came up with them. However, there are thousands upon thousands of ways I could come up with my
    passwords, so the chance that somebody will come up with what one of them is at the right time on the right computer is rather low. For example, I
    might have a slinky sitting on my desk, but that doesn't mean somebody will immediately think of my password as being "metalSlinky" or "51inky"
    or "rollsdownstairs". They will be even more confused when they find out my password is actually created from the name of my dog. Since I might have a picture of my dog on my desk, they could then say "Oh, yeah, I knew that," but we both know they were really focusing on my slinky.

    Of course, at the same time I would never underestimate the ability of people to come up with really, really bad passwords...

    "The combination is: 1. 2. 3. 4. 5."
    ...
    "Remind me to change the combination on my luggage."

    --
    Posted from the wireless couch.
  47. 50% use family names by mnordstr · · Score: 1

    According to the study, 50 percent of people use names of family members or pets as passwords.

    The other 50% just have really weird pet names.

  48. Password O.D. by Tablizer · · Score: 1

    I agree. One guy assigned case-sensative passwords like "gHi#5o0!$!@". I think I got Carpal Tunnel Syndrom logging in every morning.

    And then there is the systems that require one to change their password every few weeks.

    If it is a system that I don't use much, then either I must write it down *somewhere*, or I have to harass the admins when I forget.

    Somewhere is a middle-ground between "fluffy" and "gHi#5o0!$!@".

    1. Re:Password O.D. by Jucius+Maximus · · Score: 1
      "If it is a system that I don't use much, then either I must write it down *somewhere*, or I have to harass the admins when I forget."

      I'm sure we're all familiar with the argument that complex passwords are bad because people will just keep them on a sticky note on their monitor or in a plaintext passwords file somewhere.

      The solution I came up to this was that for complex passwords, you write them down but write the first character last, or switch the first two characters, increment all digits by one, or something similar. And you can use the same obfustucation for all your passwords that you scribble down. This way you can use complex passwords, write them down, but only you will be able to read them.

    2. Re:Password O.D. by Anonymous Coward · · Score: 0

      You think you've got it, but I'd like to see you guess my username

  49. Re:So? Only allow 'trusted' devices... by Anonymous Coward · · Score: 0
    Why can't individual DVD players have a key, and only "trusted" DVD players are allowed to read the content?

    Oh, that's right, they do, and we all know how that story ended. The simple fact is that when readers are ubiquitous, somebody is going to figure out how to steal critical data from one of them, and after that happens it's "game over" for the security scheme.

  50. A trick I've used for decent passwords... by Ether+Trogg · · Score: 1

    One of the tricks I use to create Easy-To-Remember-Yet-Complicated (ETRYC) passwords is this: have the user select an electronic device in his/her office, or a particular part of his/her car (like the alternator) and use the first 8 to 10 alphanumeric characters of the serial number of that object as the password.

    That way, if the user forgets their password, the can easily remember "Hey! It's the serial number for my monitor!" or whatever they chose. Then they can find the serial number, and voila! They remember their password!

    So far, it's proven very effective both in creating complex passwords, and reducing helpdesk calls of "I've lost my password!"

    The users also generally like the idea, because it gives them a nice, secure password that they can easily remember. Most of my users also think it's a clever idea, which doesn't hurt my ego in the slightest. :-)

    Of course, like anything involving passwords, the security of this process is only maintained so long as the user never tells anyone "I use my monitor's serial number for a password."

    It's not fool-proof, but it's proven very effective for me.

    --
    "The dead do not shoo-bop-aloo-bah." -- Kai, 'Lexx'
  51. You will never get my password!!!!! by madenosine · · Score: 1

    get it?

    1. Re:You will never get my password!!!!! by madenosine · · Score: 1

      It's a hard joke to get, but when you get it, you will know you got it

      and no, "get it?" was not the password....think ROT??

  52. Further advice by Mr+Windows · · Score: 1

    If you go to a lot of trouble thinking up a very good password (nb: basilisk isn't good, as it's in the dictionary), it's probably not a good idea to print it in a book, especially if it's published in your own name...

  53. the more you learn about someone the easier it is by Adler · · Score: 1
    I work for a small business that provides IT support to other small businesses, and the more you learn about the person the easier it is. Sometimes you need not know them hardly at all.

    At one company everybody there uses they type of car they drive, example, Nadia drives a VW Jetta, so hers is "jetta" hell the boss who I avoid 'cos she's crazy drives a BMW, guess what? Her password is "BMW" sometimes they get creative and use a pets name, or a child's name, but it's always one of those three: car type, pets name or child's name. Whenever soemone does use their pets name or kids name, they have a picture of that person/animal right by their machine all you gotta do is ask "wWhats your cats name?" boom, your in.

    Finally something about poor security in Windows that isn't Microsoft's fault.

    --

    Everybody denies I am a genius--but nobody ever called me one!

  54. Duh. by sulli · · Score: 2

    "Good" passwords impossible to remember.

    --

    sulli
    RTFJ.
  55. Favorite passwords by Anonymous Coward · · Score: 0

    I choose two unrelated short words. Then, I add a random punctuation mark in between and apply random capitalization. Any easy way to break this?

    1. Re:Favorite passwords by posmon · · Score: 0

      yup. i'm going to snap your fingers one by one until you tell me what it is.

      --

      update comments set karma=-1, reason='offtopic' where sid=26315

  56. Passwords by Anonymous Coward · · Score: 0


    A friend of mine was given a set of instructions for a password audit... This was a policy that was approved by the CEO...

    Change all insecure passwords, inform the users what the new password is. Talk to them about the problem of weak passwords *No Exceptions*

    Repeat tiil everyone has a secure password...

    Well the CEO had an insecure password. He chagned it as per the the Audit instructions... He also went and had a talk with the CEO about the danger of insecure passwords.

    The CEO changed his password back to the SAME insecure password...

    A week later another audit was run again and the password was changed and another talk with the the CEO was in order again...

    The third audit came with the same result...
    The CEO still had the same insecure password.

    This time the talk was diffrent...

    CEO says... If I do not get to use my old password and you don't stop doing this you will find yourself on the street....

    He found another job and quit...

  57. Lyrical passwords... by Colz+Grigor · · Score: 3, Interesting

    I think my passwords are usually pretty difficult to figure out...

    I pick some lyrics to a song that I know:
    "Penny Lane is in my ears and in my eyes."
    (I usually pick more obscure songs, but this is an example...)

    I then (sometimes) swap two words...
    "Penny Ears is in my lane and in my eyes."

    Then I convert it to a lower-case acronym...
    "peiimlaime"

    Convert every other character to 'leet (sometimes starting with the first, sometimes starting with the second)...
    "p3i!m1a!m3"

    This password is too repetitive... it's got two !s, two ms, and two 3s. I unconvert some of the 'leet to help out...
    "p3iim1a!m3"

    Now I convert some of the letters to upper-case...
    "p3iIm1A!m3"

    Looking at that password and not knowing how it was derived, you might think it's pretty random. But if you were a big Beatles fan, it'd be pretty easy for you to remember this one.

    One big problem with lyrical passwords, though:
    Don't hum the tune while you're typing in the password!!!

    ::Colz Grigor

    1. Re:Lyrical passwords... by MonkeyBoy · · Score: 1

      Well, yes, that's probably the best method for creating a secure password that you can remember. Not exactly what you're saying but the gist...

      Take a phrase you enjoy or at least can remember, longer the better. Take the first letter of each word, that's the basis for your password. Now either add numbers to the middle of it or convert some letters to numbers. Then add a random couple numbers to the beginning or end.

      Some of my best passwords are literally the first half of a phrase, replace one of the words with a 4 digit number so that it makes pseudo-sense, remainder of the phrase, then another 4-digit number for the last word, again making warped sense given the phrase.

      Mixing case is a great idea, but the problem is that not every system remembers case (cough NT cough). But most "real" systems do (yes, I know, NT is case sensitive from NT clients, but it's case-insensitive from a Win9x client).

      I have several "unsecure" passwords that I use across different sites, like slashdot, etc. which are very easy to remember. I keep my "real" passwords in an encrypted database, because they're freakin' impossible to remember, if only due to the sheer number - and the fact that the most important ones ARE, literally, random.

      About all I remember are those BS passwords, my login passwords, admin passwords (personal & work), and the password to open up that encrypted database. That's about all I can stuff in my noodle.

      Of course, I've known people so moronic that their password was their first name. Even though their login was firstname + last initial. Anything more complex was literally beyond them.

      Expire the password, make it so they have to change their password 50 times before it lets them choose it again? THEY CHANGED THEIR PASSWORD 50 TIMES *JUST* TO PUT IT BACK! Seriously, they didn't know if it was even possible, they just sat there methodically changing the password until it accepted their old password, literally HOURS of wasted time. Yes, the productivity of american management is SO impressive...

      --

      Moof!

    2. Re:Lyrical passwords... by mcjulio · · Score: 1

      We used to have a pseudo-underground tool to do this on Active Directory. Took about 20 seconds to blow the password stack and reset it to your original.

      Worked great until they implemented a 24 hr wait between password changes. Doh!

    3. Re:Lyrical passwords... by MonkeyBoy · · Score: 1

      Ah, but that's a geek's way of getting around the problem.

      These space-cases actually sat there changing the passwords by hand, and since they couldn't touch-type it took time to hunt-and-peck their way through.

      --

      Moof!

  58. "Oh yeah? Well, *I* use 'bigstalk'..." by Faust7 · · Score: 1

    Pity we can't turn this into a discussion/contest of what passwords everyone here uses, unless we were to change them all immediately beforehand.

  59. People aren't always creative. by Tha_Zanthrax · · Score: 1

    I once needed access to someone's PC to update some software. The guy had a day of and nobody knew his password.

    first guess: his favorite drink > damn.
    second guess: first name of girlfriend > bingo.

    He has a big picture of her on is desk... with her name on it...

    When he noticed some things had changed on his workstation he laughed at me, he had no idea it was so easy and thought I had been trying for hours. (l)user

  60. Welcome to the Slashdot Server by Wordsmith · · Score: 4, Funny

    Welcome to the Slashdot Server

    Login: CmdrTaco
    Password: Kathleen

    "Whoohoo! I'm in!"

    1. Re:Welcome to the Slashdot Server by archen · · Score: 1

      # hostname

      BallandChain

    2. Re:Welcome to the Slashdot Server by Anonymous Coward · · Score: 0

      Is Kathleen CmdrTaco's pet or something? ;-)

    3. Re:Welcome to the Slashdot Server by Alsee · · Score: 2

      Welcome to the Slashdot Server

      Login: CmdrTaco
      Password: Melissa

      Uh oh! Somebody's in BIG trouble!

      -

      --
      - - You can't take something off the Internet! That's like trying to take pee out of a swimming pool.
  61. Re:So? Only allow 'trusted' devices... by Have+Blue · · Score: 2

    It may solve this specific problem, but it doesn't change the fact that there is no easy way to recover from a compromised biometric. You can't exactly ask your admin to change your fingerprints :P

  62. Re:In other news about passwords... by Anonymous Coward · · Score: 0

    Hohum. 99% of 100% of thieves can recover a credit card number and expiration date by looking at the credit card itself, which is invariably kept in the owner's wallet. And that wallet is then left on their dresser when they sleep at night.

  63. Princess by The+Ape+With+No+Name · · Score: 2

    Every semester we run crack on Unix passwds at my university. Number one: "Princess." Number two: "GoVols." :-) We enforce no dictionary words, etc. now and shut down the offending accounts. We also moved away from Unix based mail to IMAP with a Webmail interface running on SIMS off LDAP. They don't even get Unix accounts anymore unless they ask. Well, excuse me, your worshipfulness!!!!

    --
    Comparing it to Windows will be a moot point, since El Dorado is going to have a 40% larger code base than XP.
  64. Lotus has a cool password generator by stand · · Score: 2, Interesting

    Lotus Notes mail has a cool password generator. I converted it to Javascript once and use it for all my passwords:

    I can't post it here because it won't go past the lameness filter, but you can find it here.

    It produces nonsense passwords, but they are easy to remember because they come out like pseudo-words. e.g. jenzog72, or slocrip16. It's about the only thing useful I ever got out of Notes.

    --
    Four fifths of all our troubles in this life would disappear if we would just sit down and keep still. -C. Coolidge
    1. Re:Lotus has a cool password generator by Peyna · · Score: 2
      I prefer to come up with my own passwords using varied capitalization and messed up characters. One major thing I try to do is to vary the key position on the keyboard. This lends itself to faster typing of the password, and makes it more difficult for someone standing over your shoulder to figure out what you typed.

      Aside from that, caried capitalization and use of special characters is the best way to do it. That and don't make any words in any language out of it.

      --
      What?
  65. ah so that explains it... by Anonymous Coward · · Score: 1, Funny

    i always wondered how so many people were able to post using my "Anonymous Coward" account name.

  66. 20 minutes to administrator by Anonymous Coward · · Score: 0

    I work for a 2 billion dollar company here in the US and it's part of a much bigger world wide company.

    Our Windows network as over 8,000 users. After running a cracker (lopht), it took 20 minutes the first time thru the SAM file.

    After those 20 minutes, half of the 8k passwords were cracked, including 10 users in the admin group and even the Administrator account. Using just letters and numbers is not a secure way to protect a company.

    After the first pass of lopht, we feed the user names back into the dictionary, and cracked almost the rest of the passwords.

    On our windows domain, your password must be letters, and a symbol of some type. Most people would use passwords like Giovino3, then next month Giovino4. The head of MIS at our branch was acbdef.7, I bet it used to be abcdef.6 the month before.

    And even after telling them about their password problems, they still refuse to fix it.

  67. There is no problem with passwords by Anonymous Coward · · Score: 0
    The problem is with the authentication mechanism. Any normal word or few letters is fine for a password if the authentication mechanism uses a secure authenication mechanism that prevents dictionary attacks. As long as service can be denied after a few failed attempts then short memorable passwords can have a long lifetime. There are several of these mechanisms available including...

    SPEKE

    SRP

    PAK

    And my own public domain effort...

    SNAKE

    Maybe its time to fix the systems rather than the users?
  68. in a related story... by Infonaut · · Score: 1, Offtopic
    a recent 5-year study by scientists and researchers revealed that many people are bad drivers, and that a shocking percentage of people read books while driving.

    This conclusion brings to mind the results of earlier studies that confirmed the following:

    1) there are many people who get to the front of a long line at McDonald's and are still unable to decide what they want to eat.

    2) many people, when given a choice between listening to Tiny Tim and Blues Traveller will in fact choose Tiny Tim.

    3) a large portion of the population believes that Elvis is still alive in a bunker outside Las Vegas, and that he is in fact controlling world politics at the behest of the Area 51 aliens.

    Sometimes, there's just no accounting for people. Bash them over the head with common sense, and they'll still go the other way.

    --
    Read the EFF's Fair Use FAQ
  69. Not my passwords! by Com2Kid · · Score: 1

    Since this style of an article was last posted, I have changed my password system from CourseNameRandomNumber (choose a educational course, choose a 4-5 digit number, put the two together) to just using REALLY long strings of random words and numbers intermixed, with both upper and lower case letters being used.

    It is still not compleatly secure, since it does have actual words in it, but 10-15 character passwords are pretty damn good for something that can be remembered by a mere mortal. :)

  70. Passwords based on image recognition by Anonymous Coward · · Score: 0


    http://it.mycareer.com.au/industry/20001010/A367 25 -2000Oct6.html

    An interesting development is the use of abstract computer-generated images for passwords - they display the images on screen and have the users pick which ones comprise the password. It's easier to remember since we're better at recalling images than random text. As a bonus it's impossible for users to tell other people the password if the images appear in different positions each login.

  71. I use this by Burritos · · Score: 0

    I use the Winguides.com Random Password Generator!!

    This is how I got my password of "WrOc6eJo723od@a"

  72. This is a great argument against Passport by skunkeh · · Score: 1
    This is why I'm scared of Passport - the majority of internet users [i]can't be trusted[/i] not to use a ridiulously simple password. "But no one eould ever want to hack my account anyway" they say - but Passport means that the ridiculously simple password they chose for their unimportant hotmail account will likely one day be the password they use to acess their online banking...

    Passport forces you to have at least 8 characters in your password - in my opinion that actually makes it even LESS secure. Why? Because remembering an 8 letter password is much harder, so people are more likely to go with something easily memorable (and easy to social-engineer) or write it down somewhere. I have several highly secure, completely random 6 letter passwords but I was unable to use any of them for my hotmail account, so I ended up going for something pretty insecure.

  73. No surprise by FarHat · · Score: 1

    At my undergrad institution, a prestigious technical university, we had login names based on our student numbers, a number like n4026001 etc. A friend of mine wrote a simple script to finger all accounts in succession and then tried to log in with a password with minor variation of the individual's name. It wasn't too long before he had logged into more than 50 accts out of some 3000 or so accts.

    Even more surprising was how many people would run untrusted binaries coming from friends. A person wrote a simple script which would give how compatible would you be with a person if you typed in your name and her (almost always her)name. The only problem was it did more than that, it would email a copy of you and you crush to the creator of the binary. Before long he had a huge database of who was after whom. Even more pathetic was people trying variations of their name or the girls name when the script said they were incomaptible.

    --
    At the intersection of computation and biology.
  74. Alternative. by edunbar93 · · Score: 2

    Heh. When I *have* to write passwords down (I've got at least 20 completely different work-related passwords that I use maybe once a week if I'm lucky, and then they change in 6 weeks) I never write down the actual usernames. Now, all the really important and immediately obvious accounts are memorized because I use them a lot, so these aren't going to be easy to find accounts for.

    --
    "No problem. I have the capacity to do infinite work so long as you don't mind that my quality approaches zero."-Dilbert
    1. Re:Alternative. by CantGetAUserName · · Score: 1

      Hell, you could just write down the passwords and use some old-fashioned crypto on them. Rail ciphers are quite simple but mangle the text thoroughly (but retrievably) the one the masons use looks like a doodle...there's loads of ways of writing something down securely - they had spooks long before computers, after all...

      --
      Semper en excreta sumus solum profundum
  75. good by tstock · · Score: 1

    I read this as almost good news.

    Most people think there are only two options, good passwords and bad passwords, but in practice there is also the "no password" option. If a user has to use an unique, hard to crack password there is a good chance he will write it down or save it somewhere, opening a new can of worms. If you tell management to add hard to crack passwords to screen savers in an office they will laught at you and say 'no', or you will soon find yellow notes on monitors, but let them just use any password and you now have 'some' security in place. I'm not saying sysadmins should change all root passwords to "God", hard passwords have its place, but so do easy ones. At least these people used passwords.

  76. Why you should use multiple passwords by skunkeh · · Score: 2, Informative

    I used to get by on the net with just one password. It was very secure in that it was nice and random and not likely to appear in any cracker's dictionarys. I never really thought about security much... until a web based forum I was subscribed to was cracked. At the time I was an administrator on one of the largest online gaming forums in Europe (now sadly no longer with us), and another regular from those forums got hold of my password. Luckily he merely posted a few "hahaha I've got Skunk's password" posts and didn't do any damage, but the potentail was there.

    Since that incident I've instituted a strict policy of having at least 4 different "main" passwords, each with a different security level. I look at any site I sign up for very carefully - do es it look trustworthy? Do I trust the owner of the site (chances are my password will be stored in their database in plain text)? My "low level" passwords are used for unimportant sites while I save my "high level" ones for e-commerce and administrator functions.

    All this should have been obvious from the start, but then that's the benefit of hindsight :)

  77. Something You Know vs. Something You Have by po8 · · Score: 2

    The root cause of all this, IMHO, is the "expert" advice to "never write down your password". What nonsense! Real security experts understand that there are about 3 things that can be used as authenticators for you: something you know, something you have, something you are. The problem is that a ton of cognitive research and computing experience over twenty years has failed to demonstrate that you can know something complicated enough to serve by itself as a secure password!

    Much more sensible is to randomly generate a password (using as much of the keyspace as reasonably possible), write it down, and stick it in your wallet or purse. Now it is something you have: a perfectly good authenticator that is as secure as the keys to your home and car.

    Insufficient security? Combine it with something you know by not writing down the last four randomly-generated characters: you can probably remember those, and a hundred thousand combinations to try will at least force the person who stole your password to have a means of rapidly checking alternatives.

    Alternatively, what I do is store the passwords on my PalmOS PDA, with a free app that lets me protect them with a "master password". Again, the master password is insecure, as it needs to be memorized, but it can be fairly strong, since it is all I need to memorize, and in any case it is only the second line of defense. In a more security-serious environment, you could combine this with the previous scheme.

    Note that you will eventually memorize frequently-used randomly-generated passwords: these can then be thrown away.

    Note also that the conventional advice to "change your password often" is a contributor to the problem here: it virtually guarantees that weak passwords will be chosen or that passwords will be written in too-convenient places. If your system is reasonably secured, there is no reason to ever change a password. Finally, if you do need to change a password for some reason, the "something you have" scheme described above works much better than memorization.

  78. let me help myself by Anonymous Coward · · Score: 0

    Helpdesk: Hello.
    Jake: Hi, this is Jake in Publishing. My computer is messed up and I need domain admin to fix it.
    Helpdesk: Really, that's odd. But ok, give me a minute to set you up.
    Jake: THANKS!

  79. Re:So? Only allow 'trusted' devices... by Anonymous Coward · · Score: 0

    Why can't individual DVD players have a key, and only "trusted" DVD players are allowed to read the content?

    Because they used a ridiculously crackable number of bits for their encryption. If they had used a stronger encryption, the only DVDs which would have been cracked would be those created before that particular manufacturers decryption key was cracked.

  80. Re:Cras to be happy. by Anonymous Coward · · Score: 0

    Maybe if you weren't so retarded, you could remember something as important as your password.
    How l33t does that make you look in your department when every six weeks you lock out your machine? Bet you blame the IT dept as well, since it was them who made you forget the password.

  81. Random password?! by hornet@ch · · Score: 1

    I think one good way would be to generate a completeley random password (i.e. creating each letter as an outcome of a discrete, uniform random variable, of course each letter should be indipendent from the other one). I think the biggest problem would be to produce true random numbers (pseudo random wouldn't be good at all).

    Would it work?

  82. "play the piano" for passwords by DGolden · · Score: 2

    Want "line noise"-looking passwords ?

    I sometimes "play a tune" on the keyboard, using the old Amiga OctaMED or Protracker music software keyboard mapping (sometimes shifted to the left or right for variety's sake).

    So even I can't immediately tell what my password is, since I'm not using the "remembering words" bit of my mind. The fastest way for me to find out the password as a series of letters and numbers is to retype it in a shell window...

    Alternatively, I mentally superimpose a simple outline image of something onto the keyboard, and trace that outline, pressing keys...

    --
    Choice of masters is not freedom.
    1. Re:"play the piano" for passwords by Mulletroll · · Score: 1

      That is a good idea. Too bad that when I used to track, I would just hunt and peck until a note sounded "right"

      I never was very good at tracking.

  83. Wargames by daserver · · Score: 1

    Reminds me of the good old movie Wargames. Man I love that movie :)

  84. I use some weak passwords by quantaman · · Score: 2

    Most of the passwords I use are in fact quite weak. Why? Because I don't really care if someone hacks into my spam account and if there is no one I know who would have the patience or know how to hack into the Linux partition I have. The fact is that the vast majority people don't have the ability to crack even the simplest of passwords (with the exception of "password"), and any one who does has a lot better things to do than screw around with some of my accounts. True the important passwords I have are still strong (I don't want someone breaking into my university account) but feel free to screw around with my hotmail account.

    --
    I stole this Sig
    1. Re:I use some weak passwords by EllF · · Score: 1

      The nice part of cracking these days is that you don't really need any skill. A few downloads, and a script kiddie is you!

      Hotmail probably isn't that much of a concern, but your email isn't what people are going to go after. Your linux box is a *very* lucrative target, not because of anything that you yourself might have on the hard drive, but because further attacks can be launched from you machine. In the United States, at least, you would be liable for damages from your machine, as you failed to take proper precautions to secure it.

      Moreover, it's meaningless that you don't know anyone with the know-how or patience to compromise your system. As a former grey-hat in the industry, I can safely assert that more than 75% of the cases I dealt with weren't instances where someone known to the victim carried out the cracking.

      Take thirty minutes, read over the Security Quickstart Howto, and prevent yourself a *lot* of future hassle.

      --
      We who were living are now dying
      With a little patience
  85. Most popular one by Density_Altitude · · Score: 1

    unsafe

    --
    delete free(system.gc);
  86. What's wrong with pet's names? by felicity · · Score: 2, Funny

    "Of course my password is the same as my pet's name.
    My cat's name was Q47pY!3, but I change it every 90 days." - Roddy Vagg

  87. Password Generator by Blackknight · · Score: 1

    I actually got sick of thinking up random passwords and wrote a utility to create them automatically. Check out http://wattersm.dyndns.org and click on the password generator link.

  88. Re: Number Theory easier than RegEx Theory by chicks.net · · Score: 0

    someguy[0-9]+[0-9]* is redundant. The extra [0-9]* buys you nothing.

    --

    --
    Free software isn't free, but expensive software is expensive.

  89. password generation by hawk45 · · Score: 1

    Instead of generating a meaningless encripted password that is hard to remember: learn to type in the dvorak keyboard layout. Then, anytime you enter a password, use any normal words, but type on a standard QWERTY. Instant obfustication!

  90. Another /. story by hgh · · Score: 1

    For a little more insight on how people tend to pick passwords check out this story previously posted to slashdot.

    hgh

    "Iron rusts from disuse; stagnant water loses its purity and in cold weather becomes frozen; even so does inaction sap the vigour of the mind." -Leonardo da Vinci
  91. Simple and Secure Passwords by MikeyNg · · Score: 2

    Didn't /. already run something about secure password schemes? Anyhoo, I usually strive for easy to remember, yet hard to dictionary attack. The easiest ways are:


    l33t-speak: replace letters with numbers. So your wife's name of Kathleen becomes "K@thl33n"

    inserting numbers for syllables of a word like: "x10u8" (extenuate)

    Using directions and keyboard geometry. (For my pin number I would use something like 36987, which is a backwards L on the keypad.)

    Inserting a number sequence inside of a word. r3o1v4e1r5 = rover + pi

    Using these methods, it's pretty easy to come up with a word that's relatively secure to a dictionary attack yet is as simple to remember as a much easier word.


    (One thing: PLEASE don't use your SS# in any of these!)

    --
    Where the wind blows, the tumbleweed goes.
    1. Re:Simple and Secure Passwords by Manuka · · Score: 2

      The problem with using leet-speak now is that it's so common. If I were cracking passwords, the first thing I'd do is leetify all the common ones - I'd be willing to bet that I could get another 5%.

  92. This is news? by Dwonis · · Score: 2

    I thought it was common knowledge among sysadmins that people's passwords WILL suck.

  93. Password Scheme by Ezubaric · · Score: 2

    One of my friends had a clever way of thinking up passwords. She would take her high school class schedule, say:

    Calculus
    Physics
    Chemistry
    Band
    Literature
    Study Hall
    Biology

    She would then alternate between the floor it was on and then the first letter of the class: 5c4p2c5b3l7s2b

    It's something you did for a year of your life, so not that easy to forget, and you could always look it up.

    --

    ----------
    I am an expert in electricity. My father held the chair of applied electricity at the state prision.
  94. Use MD5 by anthony_dipierro · · Score: 2

    You can get at least a little bit more secure by using MD5. Pick a master password - a really good master password. Something relatively long, that you've never used before. Something that you'll never forget. Now, find a javascript MD5 site. here's one. Type your master password in, and then type in the name of the site (all into the "Enter your message:"). Hit "run MD5". There's your password. Use the first 8 characters, or the last 8 characters, or something like that. The two advantages of this solution is that 1) you only have to memorize one password and 2) no one has your master password except you (and anyone looking over your shoulder). I wouldn't suggest using this technique for your really important passwords, but it's good enough for the medium important ones.

    1. Re:Use MD5 by MadDog+Bob-2 · · Score: 1
      Now, find a javascript MD5 site ... Type your master password in ... and no one has your master password

      Um, yeah, no one except the random geocities site you just submitted it to. Do your crypto locally, with trusted tools on a trusted OS on trusted hardware. Always.

    2. Re:Use MD5 by anthony_dipierro · · Score: 2

      Um, yeah, no one except the random geocities site you just submitted it to.

      JAVASCRIPT

      You never submitted anything. Your crypto was done with trusted tools on a trusted OS on trusted hardware.

    3. Re:Use MD5 by MadDog+Bob-2 · · Score: 1
      You never submitted anything. Your crypto was done with trusted tools on a trusted OS on trusted hardware.

      If they're behaving themselves, you're right. But I would argue that javascript downloaded from Joe Random's geocities page is not trusted code, and could thus easily be doing other things, in addition to generating an md5 hash for you.

      So make that the random geocities site you may have unknowingly just submitted it to.

      *shrug*

    4. Re:Use MD5 by anthony_dipierro · · Score: 1

      But I would argue that javascript downloaded from Joe Random's geocities page is not trusted code

      That's what "View Source" is for, if you're really that paranoid. Then again, if you're that paranoid you haven't turned off "Warn me before submitting information to a third party site" anyway. It's easy to check and make sure nothing is being submitted. To check the algorithm, just check the output against a "trusted" md5 algorithm, or only use the javascript version to log into old sites, and create new passwords from your home computer. Personally I've copied the source onto my own private server, but that's mainly because I wanted to change the "text" field into a "password" one. I also have a copy of the javascript page on my PDA. But unlike most PDA password savers, there's nothing to lose if my batteries happen to run out, if my PDA gets stolen, or if I just happen to not have my PDA with me at the time. Because I know that I'll never lose my password, I can set my "password reminder" question/answer to gobbledygook, and eliminate that particular security hole altogether.

      Finally, remember the alternative. This person was using 3 passwords for all of his online accounts.

    5. Re:Use MD5 by Anonymous Coward · · Score: 0

      But I would argue that javascript downloaded from Joe Random's geocities page is not trusted code

      Just get a Javascript MD5 program from a trusted source, for example from here, or review an untrusted one, and put it in a web page of your own. Bonus point if your web page is hosted on a server that supports SSL. Then you'll be able to access trusted MD5 checksuming anytime you're on the web.

      Problem solved! Thanks, Anthony, for the checksuming password generation/recovery idea (which should have been modded up).

  95. We already knew this by rblancarte · · Score: 1

    Didn't you see Hackers?

    RonB

    --
    It is human nature to take shortcuts in thinking.
  96. All my passwords are.... by AlastairMurray · · Score: 0

    PASSWORD

    Lol - okay, not really.

    1. Re:All my passwords are.... by Alizarin+Erythrosin · · Score: 1

      All your passwords are belong to us

      --
      There are only 10 kinds of people in this world... those who understand binary and those who don't
  97. the first 3 will typically be the same though. by rebelcool · · Score: 2

    You only have to remember 2 (or however many area codes for the area) combinations for the first 3 digits. Thus you are really recalling 7 digits, then associating whatever area the number is in with its area code.

    --

    -

  98. for 4 years... by Ironfist_ironmined · · Score: 1

    my best friends' email, login, pr0n-service and even `planetarion.com' was `finalfantasy'.

    At least i could pre-empt his sad days... like when his pr0n servers went down...

    --
    0xC3
  99. PGP encrypted your passwords by t0ph3rus · · Score: 0

    A collegue of mine wrote a great program that uses pgp. Basically, you can create a text file that contains the password and a description of what service it is for. Then another text file that contains the key list of users that are allowed to access that particular service. Then it pgp's everything. So you can't add another user to the key list unless you are already in the key list. It is great because it allows a central safe place to distrubute passwords.

  100. Here we go again. by Phoenix · · Score: 1

    One does have to wonder how many times CNN is going to do an article on this subject. Certainly this is about the 4th I've read in the past 12 months. Someone needs to tell CNN that this isn't news anymore. We bloody well know that people are not the greatest when it comes right down to passwords.

    They never were and odds are they aren't going to improve anytime soon.

    Back in '95 when the internet really started reaching John and Jane Q. Computer user we started an ISP (truth to be told they did and I was little more than aprentace help). One day we read about a hack that would allow us t oget a copy of the password file under the current versions of Linux at the time (thankfully long since patched up) and how to use a brute method (and a large dictonary file) to decrypt the passwords. Were we in for a shock when we got 40% of the passwords. Some were the same as the username, others were simple words, still others were user: College pass: Diner for the collage diner (not a real name, just an example of the type).

    We all know that the best password is a random generated sequence of letters, numbers, and if we can get away with...characters, but that means that people have to take extra time in dealing with the passwords.

    My best solution (and the one I use to this day) is a 8 character random alpha/numeric password that I put into my little Day Timers, with a backup list at my desk at home. Should I lose one of those, I have the other to tell me what passwords I have active and what needs changing.

    Again sadly that takes more work than the average user is willing to put forth.

    We know this CNN, we've been dealing with this for many years before you even went online. It just isn't news anymore.

    --
    -- Wiccan Army, 13th Airborne Division "We will not fly silently into the night"
  101. this is abseloutly true by darthlazy · · Score: 0

    I must admit I have been using the same password for all of my accounts in the past four or five years(excluding /.).. I guess my password is just strong enough.. then again, maybe i'm not that popular.

    --

    you can pick your friends,
    you can pick your nose,
    you can't however,
    pick your friends' nose.
    1. Re:this is abseloutly true by Speed+Racer · · Score: 2, Funny

      you can pick your friends, you can pick your nose, you can't however, pick your friends' nose.

      That's the boring version. Here's my personal rendition:

      You can pick your nose and you can pick your friends but you can't roll your friends up into little balls and flick them.
      --
      Free Mac Mini. Yes, I'm
    2. Re:this is abseloutly true by ehh · · Score: 1

      You can pick your nose and you can pick your friends but you can't roll your friends up into little balls and flick them.

      You can pick your friends and you can pick your nose, but you can't wipe your friends on the sofa.

      --
      Make it idiot-proof, and someone will build a better idiot.
  102. Why not your middle name? by sjorgnsn · · Score: 1

    Easy enough - I just use a variance of my middle name - now - that being Loihika'uhane, I just add a few numbers - it already has a non-alphanumeric, and presto! Now, you might have a little trouble adapting your password scheme to fit mine, as most peoples middle names/initials aren't quite as complicated. : )

  103. I wonder who has tried this... by flogger · · Score: 1

    ftp://george_bush:spotty@whitehouse.gov
    Do you think our president would use his pet's name for a passowrd? Hell, does the president know his own pet's name?

    --
    ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~
    "First things first -- but not necessarily in that order"
    -- The Doctor, "Doctor
  104. My password is... by bief · · Score: 2, Informative

    ...bigfartingfatguy.

  105. Ask me about passwords... by Anonymous Coward · · Score: 0

    I used to work for a large company (cannot name it) but when customers phoned in for either opening or re-opening their accounts, I always confronted them with the question "And what do you want me to set as your password?". The silliest answers came. Their sons names, the name of their dog, car, their birth date, their social security numbers... anything predictable and crackable came up. I usually winded up by saying "*sigh* very well, 'Johnny' is your password then.

    Oh... I'm pretty drunk, please have me exused.

    1. Re:Ask me about passwords... by Account+10 · · Score: 1

      That is what I would do too ... and then change it. If you know my password then it isn't secure.

  106. Comment removed by account_deleted · · Score: 2

    Comment removed based on user account deletion

  107. BOB by Anonymous Coward · · Score: 0

    I use my nickname for my password, but so no one can guess it, I spell it backwards!

  108. ex-Girlfriend by sebol · · Score: 1

    generate passwd base on your eX-GF name,
    surely you wont let people know that u are still remembering your ex-Girlfriend.

    if your wife know, it may cause civil war.

    --
    -- Hasbullah bin Pit (sebol)
  109. Another Article by crisco · · Score: 2

    SecurityFocus has an article on passwords, while it has a NT focus (Lanmanager myths and such) it touches on lots of the same thoughts. Of interest is the use of high ASCII and/or Unicode in passwords.

    --

    Bleh!

  110. Strong passwords by JPriest · · Score: 2

    Not everyone uses weak passwords, I have seen some STRONG passwords at my workplace, usually on a post-it stuck to the monitor.

    --
    Saying Java is nice because it works on all OS's is like saying that anal sex is nice because it works on all genders.
  111. Sometimes I don't really mind. by SamIIs · · Score: 2

    I use the same crummy word for a lot of my passwords. If the service makes me use upper case, I capitalize the first letter. If they demand numbers, I turn the 'e' into a '3'. That's because all of these accounts are passwords that I DON'T MIND IF PEOPLE CRACK.

    You're not going to do ANY damage if you somehow managed to crack into my NewYorkTimes account.

    ICQ makes me create a password that half the clients out there don't authenticate. If you got in, you'd suddenly be able to forge messages from me. Just as you could before.

    For real accounts (root, stuff involving my credit-card, etc.) I use simple hash involving the name of the service and a secure string of letters and numbers. But there are a lot of accounts that won't bother me if they get cracked, but WILL be a pain if I forget the password.

  112. Dumb passwords ARE the law by Ektanoor · · Score: 2

    In my work as system administrator I have found that no matter one says, cries or yells, people keep using dumb passwords. First of all people do love to use the infamous "1234" password. Such password can be found in such interesting places like the main accountant network access on a commercial bank, on a door to a restricted area and, the most amazing of all on a half-forgotten sysadmin account into a backbone network (one guy just forgot a test account with such password). But that's not the worst. The worst is when your computer carries your account name, and your password is the same as your login.

    The general claim that "50% of passwords are bad" is too optimistic. I prefer to risk my reputation and claim that more than 90% of passwords are worse than bad. Most people use Windows and this system carries so many holes that is easy to catch a few password hashes just by sniffing a network. Besides, most people don't have even a basic knowledge of security so it is tremendously easy to catch an account with administrator's rights. Once you get one, you are on the free road - all depends on your knowledge and experience.

    But not only Windows is on the black road. UNIX also. Most people have a high tendency to call for trouble. Many don't even read in front of their eyes THOSE BIG WARNINGS STATING THAT IF YOU TURN ON THIS THING YOU ARE ON YOUR OWN! And so we get telnets, ftps and many other daemons running with SUIDS, root network accesses and "come in and get what you want! Bye and come again!!!" In result most netowrks are completely open to any attacks from outside. A black hat hacker needs only patience, accuracy and cold-blood to create havock. No one would even get a hint that someone is one their nets...

    Not long ago I was asked to test one network. I roam the whole thing, reaching the most holy of the net and catching tons of sysadmin info just by grabbing network packages. Some passwords were so easy to calculate/guess that it took only minutes to become sysadmin. With them I went further and started to take control of the whole net. I was a few minutes of destroying the whole network when I stopped all tests. I tested the net for a few days. All that could be detected was that one sysadmin saw a "small" problem when I mistakenly sent ssh to another location (no matter that I sent tens of provocative actions over their net to get their attention). However this was too small info to check the author of the work. Their luck was that they had a greyer hacker in their nets... A Cyberpunker would not be so humble.

    That's not the exclusion. That's the state of thousands of critical networks. That's the common denominator.

  113. As Cardinal Borusa used to say by blair1q · · Score: 2

    "There's nothing more useless than a lock with a voice imprint."

    Except maybe a password policy. The overhead on keeping people in line, especially with draconian software that enforces password selection policies and aging, is more costly than the problem for all but the crown-jewel servers.

    Security that prevents black-hats from getting cyphertext passwords in crackable codes is the only security that improves the bottom line rather than making it worse.

    --Blair

  114. D6 by bodin · · Score: 2

    Everyone should go out and buy some dice and use them.

    http://www.diceware.com/

  115. funny incident... by green1 · · Score: 2, Funny

    I remember working as a sysadmin for a company where the CEO was... a little less then brilliant... after setting up his new computer for him I set his local login password to "password" and had it force him to change it on first login so that nobody else would know the password yet it would be simple enough that even he could remember it the first time, when he came in the following conversation ensued:

    ceo: what's the password to my new computer?
    me: password
    ceo: I know that but what is it?
    me: password
    ceo: of course it is but what IS the password?
    me: the password is "password"
    ceo: would you quit that and just tell me what the password is!?!
    me: the password is "P - A - S - S - W - O - R - D"
    ceo: don't get smart with me young man! you don't want to make the person who signs your paycheques angry!!!!!
    (meanwhile in the other corner of the room the accountant and receptionist were just howling with laughter and the ceo couldn't understand why...)

    I finally led him over to the machine and made him watch the keyboard as I typed in "p - a - s - s - w - o - r - d" he suddenly changed his tune and was extremely appologetic and suitably embarrased... I didn't have quite so many run-ins with him after that... and it provided a much needed comedic break for the rest of the office.

    side note: I've since switched from that to using other simple words as initial passwords making sure to AVOID the word "password" (and after that initial password people were forced to use minimum 6 characters, not dictionary based)

  116. Common mistake by lmd · · Score: 1

    Often times when someone joins a site they see the words "Username" and "Password" next to the boxes where they are supposed to choose a username/password. Guess what username/password they chose? Yep. "Username" and "Password" (or "username" and "password") which is mentioned at the bottom of the CNN story. They chose that combination because they did not know they were supposed to pick one themselves.

    --


    Just my $0.04 (adjusted for inflation)
  117. Family names are the standard? by screwballicus · · Score: 2
    That's simple. I'll just have to name my first kid 2!abZo0zZ3uI (or 6sdKq@jP_Pp! in the case of a girl).

    (No, I'm not (that much of) an idiot and those are not my actual passwords)

  118. Poor passwords - nothing new by lscotte · · Score: 1

    This should come as no surprise to anyone who's ever done a sysadmin stint.

    I remember reading an article on this in an old DEC Ultrix-32 manual, so went digging thru my boxes of old manuals and found it in "Supplementary Documents - Volume III - Systems Manager" (First Printing, May 1984). The article itself is "Password Security: A Case History" written circa 1979 by Robert Morris and Ken Thompson. You can find it easily enough in Google, but to summarize their findings:

    3289 passwords were audited.
    15 were 1 char.
    72 were 2 chars.
    464 were 3 chars.
    477 were 4 chars.
    706 were 5 chars all upper or lower case.
    605 were 6 chars all lower case.
    492 were dictionary words.

    So, 86% of all passwords were insecure.

    Back in a previous life as a systems administrator I saw similar results in running Crack on ~600 users.

    In other words - Nothing has changed in 23 years!

    --
    This post is licensed under the Creative Commons Attribution-Noncommercial-No Derivative Works 3.0 License.
  119. keyboard pattern-based passwords by Amoeba · · Score: 2

    I've found that by using passwords based on keystroke patterns (with a random key at the beginning, end or middle) to be easily remembered *by my hands* though I couldn't tell you the actual passwords myself without some serious thought. The random non-pattern key is important since there are crack dictionaries that try things like "qwertyuiop" etc.

    One example of a pattern I've used in the past: BNGHTY%^~

    Try typing it in and see how easy it is for you to "remember" :)

    --
    Do not taunt Happy-Fun Ball
  120. Passwords are not convenient by MoogMan · · Score: 1

    I've observed the following:
    @ People hate remembering things.
    @ People think that passwords are inconvenient.

    Therefore, a normal person using a computer that requires a password will not only think of a password, but will try and make accessing that pc as easy as they can - ie the common mistakes we know of as writing the password on a post-it note and chucking it on the side of the monitor. Or if they can, getting a computer to auto-login. Why do most internet passwording systems nowadays have "remember me" and "auto-login"? Exactly - convenience.

    The core problem with passwording systems are that normal users *do not give a shit* about security. Sad, but we all know that its true. Sysadmins and people who know anything about computing will obviously use clever passwords, different passwords for each login/signin etc but the majority will not.

    And as we know, there is a lack of knowledgeable people in the it world - im thinking that only 10% of the people that use computers are the type that read /. and the type that know what they're on about. Therefore we have a big problem.

    Im not suggesting a solution to the problem, but im saying that the cause is not that users are stupid as such (well they are generally stupid but thats not the point ;), the reason is that it is awkward to login etc from the users point of view.

  121. That leads to DoS by yerricde · · Score: 2

    Any system that lets you log 1,000 attempts a minute (or more than 3-10 attempts before locking the account) is poorly designed and should be rooted by one of those l33t h4x0rs to teach the sysadmin a lesson.

    However, locking accounts after n attempts opens up a new denial of service: flooding the auth server with requests on known users but purposely invalid passwords to prevent the real user from being able to get in. Imagine what would happen if somebody tried to su with password "DoS" 20 times; the administrator would be locked out.

    --
    Will I retire or break 10K?
    1. Re:That leads to DoS by Anonymous Coward · · Score: 1, Funny

      Back in the good old days I actually did this on one of the main University servers. Just wrote a simple script to do a "who's online" and save the data to a file. Run that for a couple of days, remove the duplicates, and you have a pretty good list of students.

      Then all you had to do was loop through the names and use "bitch" as the password 20 or so times (can't remember the exact number). The account would be locked out, requiring the student to go to computing services to get the account reset.

      Do this for the list of students that you have, and you can bet... computing services stays busy all week.

      I wish I could tell you all that I had a good reason for doing such a thing... but the truth is I was young and stupid. Just because you CAN doesn't mean you SHOULD.

      Then again... it did force the university to change/improve the way they did things. :)

    2. Re:That leads to DoS by Anonymous Coward · · Score: 0

      But what happened if they choose that as a password?

      Some people like to use swear words as their password for reasons I do not pretend to fathom...

    3. Re:That leads to DoS by RainbowSix · · Score: 3, Insightful

      Perhaps a good way to implement a lockout is that once lockout occurs it will still accept passwords but it must be typed in 3 times in a row at 15 seconds apart. It would only take 45 seconds to log in (as opposed to getting locked out for x minutes) but the delay and requirement would be a buffer against a cracking program.

      --
      --------
      It's OK to be social, just don't tell anyone about it.
    4. Re:That leads to DoS by Anonymous Coward · · Score: 0

      There's no need to lock out the account completely. What is the maximum rate at which a human could brute force a password? Say 1/sec? Limit the rate to that and it takes a lot longer for a computer. While you're at it, you might as well increase the delay after each failed attempt. On top of that, you can have the delay dependant on *where* it's being enterred. With a little thought it's very easy to come up with a password system that's fairly resistant to brute forcing and DoS attacks. (although the perfect system would be a bitch to code)

    5. Re:That leads to DoS by Nau.dk · · Score: 1

      Perhaps a good way to implement a lockout is that once lockout occurs it will still accept passwords but it must be typed in 3 times in a row at 15 seconds apart. It would only take 45 seconds to log in (as opposed to getting locked out for x minutes) but the delay and requirement would be a buffer against a cracking program.

      In which way does the delay differ from a lockout that would accept the password after 45 seconds? The only extra security I see in such a system is that the cracking program should know that it had to enter the password three times. And since it would probably be needed to tell most users what was going on, the cracker would be told as well.

      So, it would undoubtedly be a big security increase to implement it on your own box, the one you're the only user on, and without telling anyone that it was any different. But if it is well known that a box is running this kind of check, it won't give any extra security, or delay compared to a normal 45 second lockout.


      Så får i ikke mere for den 25-øre...

  122. How about a password manager? by tuffy · · Score: 2
    I use FPM to generate and manage all my web site passwords, and a couple of non-word passwords for local accounts. That way I never have to remember a zillion different web site passwords, I can make them long mixed-case, alphanumeric non-words and actually entering them is trivial.

    It's not perfect, of course, but I wouldn't want one compromised web site to compromise the rest of them (the trouble with using one password for everything) and I'm reasonably sure I can keep my own box secured from attack. And it beats using sticky notes :)

    --

    Ita erat quando hic adveni.

  123. A car thief could DoS your car by yerricde · · Score: 1

    On a *nix system it's a 3-second wait if you type the wrong one. On my dad's car, it's 3 seconds first time, 10 minutes second time, and 24 hours the third time

    Which means any car thief could just put in three intentionally wrong passwords, watch dad struggle to get in his own car, and then, after everything has closed and everybody is in bed, "social engineer" a tow truck into hauling the car off to a chop shop.

    --
    Will I retire or break 10K?
    1. Re:A car thief could DoS your car by Anonymous Coward · · Score: 0

      The key opens it too. Most cars with this type of security can bypass it with the electronics in they keys. Mercury Sables have had it for a while now

    2. Re:A car thief could DoS your car by Anonymous Coward · · Score: 0

      I'd imagine that any sane car manufacturer would include a key lock that overrides the password lock, rendering the DoS useless.

    3. Re:A car thief could DoS your car by blibbleblobble · · Score: 1

      Okay, I'll clean-up the end of this thread, however old it is...

      Citroen Xantia, keypad immobiliser, is what I'm talking about.

      (1) You unlock the doors with an infrared transmitter on your key; it's very useful to be able to do this before you get to the car.

      (2) You unfold the "real" key from the key (it folds into the plastic casing, so the metal key doesn't rip holes in your pocket)

      (3) You put the key in the ignition and turn the electrics on. This means you can't "DOS" the car by typing in wrong codes, because you'd need the key to do that.

      (4) You type in the code before it'll let you start the engine. This means that someone who breaks into your house (or bag at work, or coat pocket or whatever) and gets your car-keys can't steal your car.

      (5) If you type the wrong code, wait 10 seconds. If you type the wrong code twice, wait 5 minutes, after that you get one try per hour or so.

      It's probably the best thought-out security system for vehicles that I've yet seen.

      Of course, I did know a guy with a (model withheld) car who lost his keys, fancy-immobiliser and all. He called the AA, who arrived in a van, unscrewed his rear numberplate, pushed a biro into the switch behind the numberplate, and all the doors unlocked.

  124. ...a1 or ...dk? by yerricde · · Score: 1

    And the last one is easy. The ape wears a tie

    This is supposed to represent 'a1', but how do you know not to substitute 'dk' instead? To me, an ape wearing a tie just screams Donkey Kong.

    --
    Will I retire or break 10K?
  125. Re:So? Only allow 'trusted' devices... by Detritus · · Score: 4, Funny
    You can't exactly ask your admin to change your fingerprints.

    I can change them for you. Where did I put that cheese grater...

    --
    Mea navis aericumbens anguillis abundat
  126. My two rules for passwords by rcw-home · · Score: 4, Interesting
    1. It has to take someone longer than 30 seconds to memorize it if they were to see it written down somewhere
    2. It has to take me less than 2 seconds to type it in

    Any password that fits this criteria will take a long time to crack and even longer to figure out by looking over someone's shoulder.

    ObTrivia: at a place I used to work, 246 out of 780 user accounts had a password of "", "pass", or "password". Before I convinced the IT director to let me implement strong passwords, anyway.

    1. Re:My two rules for passwords by base3 · · Score: 1
      ObTrivia: at a place I used to work, 246 out of 780 user accounts had a password of "", "pass", or "password". Before I convinced the IT director to let me implement strong passwords, anyway.

      At which point your users finally found a password that the system would allow them to use, and, bitter and pissed off, wrote it on a Post-It note and stuck it to their monitor.

      --
      One CPU cycle wasted on digital restrictions management is ONE TOO MANY.
    2. Re:My two rules for passwords by rcw-home · · Score: 2
      At which point your users finally found a password that the system would allow them to use, and, bitter and pissed off, wrote it on a Post-It(TM) note and stuck it to their monitor.

      Nah, they knew better than that. They'd put the post-it note underneath the keyboard.

    3. Re:My two rules for passwords by jareds · · Score: 1

      At which point your users finally found a password that the system would allow them to use, and, bitter and pissed off, wrote it on a Post-It? note and stuck it to their monitor.

      But that's no less secure than using "password" or "".

    4. Re:My two rules for passwords by base3 · · Score: 1

      So true. Of course, the passwords don't actually have to be hard for the users to do that.

      --
      One CPU cycle wasted on digital restrictions management is ONE TOO MANY.
  127. 1234567 by gotan · · Score: 1

    That's easier to find than some might think. For the hexadecimal representation there exists a formula that allows to calculate digits of pi starting at an arbitrary place, maybe there is such a formula for the decimal case too. Anyway given a decent PC you can probably calculate up to 10.000.000 digits in a few days. But why bother, when it's easier to simply download them. Your choosen password should be in here, starting with the 470344th or 470343th digit (depends if you count the 3., but you didn't, line 4704, 5th block from digit 4).

    --
    "By the way if anyone here is in advertising or marketing... kill yourself." -- Bill Hicks
    1. Re:1234567 by Anonymous Coward · · Score: 0

      Hey, I just found my PIN in pi! I'd better change it right away!

    2. Re:1234567 by dsb3 · · Score: 2

      Backwards link

      Forwards link

      --

      Slashdot? Oh, I just read it for the articles.
  128. a few different passwords by Anonymous Coward · · Score: 0

    I do this too. I have 4 passwords and 4 pin numbers depending on the level of security appropriate. And its not just the level of security that I want my account to have, its also the level of security that I think the account provider gives me. So I'm not going to put my either of my top secret passwords on a website account where they might be cracked/intercepted. And if someone gets into the voicemail database at work and gets my voicemail PIN, they aren't going to be able to get into my bank account.

  129. Wall Street Journal Login by Wateshay · · Score: 2

    A couple of months ago, I called up the Wall Street Journal to get my password for the web site changed (I almost never use it, and so had long since forgotten what I'd used). I began to tell the lady on the phone the password I wanted (which I intended to change immediately through their online system, since I have no desire for another human being to know any of my passwords). Of course, the password I started to give her was a "good" password, with a mix of case, and non-alphanumeric characters. When I told her the first case change, she interrupted me, and told me that I should use a password of all the same case, so that it would be easier to remember. I responded by giving her a short lecture on computer security, and continued with my "good" password.

    I think it's a general problem that people aren't trained properly in what would constitute a "good" password.

    --

    "If English was good enough for Jesus, it's good enough for everyone else."

    1. Re:Wall Street Journal Login by Calamity+Jane · · Score: 1
      You'd forgotten your password; I think she was right to suggest you not tax yourself.

      Given that you were going to change it right away, why not give the lady a break and have her set it to "password", rather than giving her a lecture she wouldn't have given a rat's arse about?

  130. True story by Trickster+Coyote · · Score: 2

    One sunny day last summer I was out for a stroll along the scenic pathways of our fair city. As I was crossing the foot bridge across the river, I came upon two men doing some work on the river monitoring equipment. One man was at the control box on the shore, the other was at mid-bridge, fussing with the monitors. As I passed them, I was audience to this shouted exchange:

    Man #1: WHAT'S THE PASSWORD?
    Man #2: WHAT?
    Man #1: WHAT'S THE PASSWORD?
    Man #2: UH, I THINK IT'S SPACE, ENTER!

    I briefly considered coming back sometime to see if I might crack into the system, but decided not to since there just wasn't any challenge.

    Trickster Coyote
    Living the illusion of reality.

    --
    Ideology is for ideots.
  131. Pin Numbers by Picass0 · · Score: 2


    NEWSFLASH!!!

    Many nerds* use 1701 as an ATM pin number.

    *in addition to Wil Wheaton.

    1. Re:Pin Numbers by Teknogeek · · Score: 0

      Am I the only person with a Trek-related PIN number other than 1701?

      Probably.

      --
      I mod down anyone who uses M$ in their posts. I like to live on the edge.
  132. Jesus. by Penis · · Score: 2, Funny

    He must be really serious about his wife/girlfriend not finding his pr0n.

    Pen-15

  133. Remembering multiple passwords by sunhou · · Score: 2

    One trick for having many different passwords is to make them related. E.g. set aside one character in the password (3rd character, or whatever). Make that character "o" on your office computer (or "0", since I usually mix letters and numbers like "L" and "1" to make the passwords harder to guess). Then use the same password on your laptop, but make that character the letter "l". On your firewall, make it "f". And so on.

    Sure, it's not as secure as a bunch of completely different passwords. But if you've come up with a really good password that's hard to crack, then all those permutations should be equally hard to crack, and if by some miracle someone does get one of them, they probably won't know which character to permute and what one-character abbreviations you've used for the various systems you use that password on. Of course, if everyone starts using this trick, then it won't be as secure. :-)

    It's worked for me. I can remember a couple of very good passwords, and the various permutations. There's probably no way I'd remember 8 different good passwords.

    1. Re:Remembering multiple passwords by roju · · Score: 1

      This will probably work just fine until someone lays eyes on -two- of your passwords, at which point they'd probably notice the pattern, and just brute force the changed letter on any other system.

    2. Re:Remembering multiple passwords by Ronin441 · · Score: 2

      I use the same trick for the endless internet site logins I have. One character is set aside to be replaced by one character from the site's name. Thus, when I go to example.com, and it asks me for a password, I can figure out what it is, even though I've not been there for a year.

      Note that the base string you choose should match the password policy of the most picky web site you're ever going to use this algorithm for -- e.g. it should mix alpha and numeric and be at least eight characters.

      The downfall of this scheme is that anyone who successfully steals my password for four or so different sites can relatively easily figure out the passwords for all all my internet logins. So I use a completely unrelated password for my bank's web site.

  134. Store passwords in your PDA (and encrypt them) by flashk · · Score: 0, Redundant
    Store them in a PDA that encrypts and organizes your passwords. A nice product that I use for my Visor (or any PalmOS based PDA) is SplashID. It can have a numeric keypad (for numeric only passwords) to enable you to quickly tap in a PIN to access all your passwords.

    Since I carry my PDA with me at all times, somebody has to pry/steal it off me first before they can get my passwords (they have to crack the my passphrase also). At least you have another level of security (compared to a piece of paper) and you're less likely to lose your PDA. The other benefit is that on a PDA, it's easy to organize and search from hundreds of different passwords.

    The downside to this is that having all your eggs in one basket. If your PDA is stolen, if somebody can does brute force methods to get your password, all your passwords will be compromised.

    That being said, if you have a backup and your PDA does get stolen and you are worried, you could restore your back up to another PDA and quickly change all the passwords before that person has a chance to log in to any compromised accounts.

  135. Just use Gpasman for linux by Bruj0 · · Score: 1

    With gpasman you just have to remember 1 password (a really big one), that encrypts the others. This is a OpenSource app and written in gtk, what else could you ask? :). Get it here

    --
    http://securityportal.com.ar
  136. Re:Sports team passwords (OT, but what the heck) by Anonymous Coward · · Score: 0

    I suppose you never saw The Sixth Day with Arnold Shwarzenegger (sp) :P.

  137. I'd been thinking in this direction, too. by demon · · Score: 1

    I've been looking at possibly implementing something similar on the network at my workplace. I've had the same sort of problems the CNN article, and you, point out - not the same passwords, but just poorly-chosen ones. Got any pointers on how best to do this? I have a working LDAP directory and I use it for authentication already, but I'd like to setup a completely separate mail server (separate from shell, firewall and directory/name servers).

    --

    Sam: "That was needlessly cryptic."
    Max: "I'd be peeing my pants if I wore any!"
  138. Another problem: reuse by ca1v1n · · Score: 3, Interesting

    I haven't logged in as root on my box since I installed linux, thanks to sudo. My root password is a rather complicated string of characters that bears no resemblance to any words. My user password is similarly strong. Unfortunately, remembering lots of strong passwords isn't exactly easy. So, I've gotten lazy and reused some of them. Based on my tech support experience, I would guess that most people only have one or two passwords that they reuse. Snoop their plaintext logins to thespark.com or something like that, and you've got them. I've never made an unencrypted login to my box, and my passwords are strong, but that doesn't make them secure. Excuse me while I go change them...

  139. I still maintain... by wedg · · Score: 1

    The best way to create a password is to come up with a passphrase that you'll remember. The password is then the first letter of each word in the phrase.

    For example, I heard the song "Transylvanian Concubine" by Rasputina, and I told someone "I wish I had a Transylvanian Concubine." It was so funny we laughed at it, so my local password for a while was "IwIhaTC." Completely gibberish, but easy to remember.

    It's easy to maintain multiple different passwords for different accounts/services by making up some phrase relating to the service you use, e.g. "Yahoo really sucks, but I like the games." would be "Yrs,bIltg." Or "YrsbIlg." if you have an eight character limit. Then whenever you're logging into the service you'll remember the password instantly.

    And that way you don't have to write it down. The phrases are easy to come up with, but it's important to try and find a phrase that's hard to mutate (e.g. "I wish I had a Transylvanian Concubine." versus "I wish I was a Transylvanian Concubine."). You want to pick one that'll be remembered a specific way, and often times the easiest way to do it is to make sure the abbreviation is always a fixed number of characters (say, 8 or 14), one for each word and punctuation. That prevents you from adding in extra words, like "really": "Yahoo really sucks, but I really like the games." versus the above example. Or dropping words.

    The most important thing is that anyone can do it without worrying too much about it.

    --
    Jake
    Dating: while( 1 ){ call_girl(); get_rejected(); drink_40(); } return 0;
  140. All your *dots are belong to Slash! by Ragica · · Score: 0, Flamebait

    Hey, with /. trying to generate some money with big adds, maybe they should just hire some lawyers and sue all the sites with "whateverdot" type names.

  141. Bad practice for sysadmins by Alizarin+Erythrosin · · Score: 2, Funny

    There was some show on TLC once, and I only caught the end of it, but the part I did catch made me laugh. (memory fuzzy, so if I get a detail wrong sorry)

    These guys were hackers turned security consultants and were consulting for a financial company. They were "wardialing" the company's phone service looking for a computer that would answer, and when they got one, they entered "root" for the username, and (get this) "password" (!!!) for the password... and got in.

    You would think anybody who has the semi-intelligence to be a Unix sysadmin for that company would know to NOT USE "password" AS YOUR ROOT PASSWORD!

    I hope somebody got fired for that... sheesh

    --
    There are only 10 kinds of people in this world... those who understand binary and those who don't
  142. That is not necessarily bad... by Anonymous Coward · · Score: 0


    ...as long as you give them names like "x/&Qrn7S=;q" and remember to rename them every month.

  143. Go to the Good Book... by Anonymous Coward · · Score: 0

    Take your personal favorite verses of scripture, that the first or last letters, and add the chapter verse to the end. Lots of combos possible, easy to recreate it you forget, and only someone who steals your personal Bible to check for wear and tear can figure it out!

  144. case-sensitive ? by Tabini · · Score: 1

    Just wondering if it is safe to assume that all websites requiring passwords use case-sensitive passwords.

    My usual way to generate a password is to pick a name from an obscure novel, or a fantasy/sci-fi one
    (not a best-seller!) and put numbers or punctuation in somewhere other than the end. These are easy to remember, not normally in a dictionary, long, and have at least 2 of the 3 types of characters needed for a good password - capital letters, lower-case, and non-alphabetical.

    They also are totally unrelated to my family or pets, plus I read so many books that even friends wouldn't know which book I chose to get a name from.

  145. my password 12345 by enrico_suave · · Score: 2

    HELMET It worked, sir. We have the combination.

    SKROOB Great. Now we can take every last breath
    fresh air from planet Druidia. What's the combination?

    SANDURZ One, two, three, four, five.

    SKROOB One, two, three, four, five?

    SANDURZ That's amazing. I've got the same combination
    on my luggage. Prepare Spaceball 1 for immediate departure.

    SANDURZ Yes, sir.

    SKROOB, SANDURZ, and HELMET start walking out
    the door.

    SKROOB And change the combination on my luggage.

    --
    Build Your Own PVR/HTPC news, reviews, &
    1. Re:my password 12345 by ahrenritter · · Score: 1

      You forgot one of the funniest parts to that:

      HELMET: So the combination is one, two, three,
      four, five. ::lifting mask:: That's the stupidest combination I've ever heard
      in my life. That's the kinda thing an idiot would have on his luggage.

      --

      All I wanted was a rock to wind a piece of string around, and I ended up with the biggest ball of twine in Minnesota
  146. Most Commonly-Used Passwords by guttentag · · Score: 2
    • password
    • pencil
    • whatever
    • iforgot
    • Mom
    • Dad
    • Spot
    • NoSpot
    • BadSpot
    • CowboyNeal
    • BadCowboyNeal
  147. Win32 program by Anonymous Coward · · Score: 0

    If you're on 32-bit Windows, Whisper 32 is fairly decent. Free, as in beer.

  148. its not that hard remembering numbers by Anonymous Coward · · Score: 0

    3.141592653589793238462643383279502884197169399375 10

    that's how much of pi i can remember off the top of my head, and there's people out there who can't remember a 4 digit number....

  149. How I remember my passwords by Anonymous Coward · · Score: 1, Interesting

    I don't! (most of them)

    I have a blowfish encrypted file on my palm with a single hard password to remember, another pgp encrypted copy on my hd at home, and one printed out in a safe. All passwords contained therein are randomly generated 8-16(dependent on max length allowed by site) characters -including letters (upper & lower case), numbers, and special characters. About the only thing I *don't* do is use the alt keyspace. :) These are for the sites where you could do some damage if you cracked the account.

    For everything else, i use the same stupid password, alghough it is 'hard' as well.

  150. Kerberos-controlled passwords by porky_pig_jr · · Score: 1

    I've found kerberos-controlled and enforced passwords are pretty unreadable. unfortunately, the only places using kerberos I've encountered so far are large universities.

  151. Crappy passwords? Very common?! by NowIveSeenItAllGuy · · Score: 0

    Now I've seen it all!

    --
    Appended to the end of comments I post? 120 chars?!
  152. Re: Number Theory easier than RegEx Theory by ffatTony · · Score: 2

    Thanks, you're right, I suppose I was thinking [0-9]{1,} which as you say would simply be [0-9]+.

  153. Re:Cras to be happy. by ShawnD · · Score: 1
    How l33t does that make you look in your department when every six weeks you lock out your machine?
    At my work all you have do is change your NT Domain password while you are still logged in on another workstation. The other workstation will keep trying to access shared drives with the old passowrd causing the Domain Server to lock the account.

    Of course the Unix systems never seem to have this problem...

  154. Sign of incompetence by coyote-san · · Score: 3, Interesting

    That policy is a sign of incompetence in the IT department.

    If strong passwords are used, they should long expiration periods. It's not unreasonable to memorize a truly random password if you only have to do it once a year. If passwords are expiring every six weeks, you *have* to write it down (on a card in your wallet, on your PDA or celphone, etc.) because it's impossible to remember them otherwise.

    Another good trick is to generate a list of a few dozen candidates and look for one with good "muscle memory." E.g., my main password now has a pattern of L-RR^-LL^-LRL where ^ means it's a key "straight above" the last key.

    --
    For every complex problem there is an answer that is clear, simple, and wrong. -- H L Mencken
  155. My password generator by coyote-san · · Score: 2
    That sounds similar to my password generator, although I don't regenerate my PGP keys every week. (Sure this wasn't SSH keys?)

    enter old password, some random data from /dev/random and whatever else is handy, and SHA-1 it.

    get milliseconds component of current time. Add PID. Recursively apply SHA-1 this many times. XOR in a byte or two from /dev/random each time.

    Now the fun part. Strip the high bit and treat the first 8 bytes as an ASCII string. If it matches the password policy (e.g., 2 upper, 2 lower, 1 special, 1 digit, 2 wildcards) print it and increment counter.

    Repeat prior step until counter hits 50 or so.

    It usually takes 5-10 seconds to generate a list of candidate passwords. I pick one that's easy to remember because of "muscle memory." To guess my new password, you need to know both my old password and the contents of /dev/random.

    --
    For every complex problem there is an answer that is clear, simple, and wrong. -- H L Mencken
  156. social engineering by Alehandro · · Score: 0

    One of other common used ways is username and then username backward for password. Also admin/admin... administrator/administrator..
    Use social engineering and you'll be amaized that people producing wooden boxes(for example) are choosing for the password. Examples: wood, box, cutting, nails...etc.

  157. Other problems... by CrackerJackz · · Score: 1

    I recently found an issue where our helpdesk was setting passwords to a "default" password when a user called with a password related issue... the user is then supposed to change the password, however the users are just using the default password and calling the helpdesk again (30 days later) when the password expires again. A cycle that a quick LC3 run on the SAM file reviled that 10% (over a thousand) had the *exact* same password ... *sigh* anyone know a cure for typical user(s)???

    1. Re:Other problems... by Anonymous Coward · · Score: 0

      .45 hollow points work wonders.

    2. Re:Other problems... by Manuka · · Score: 2

      Shoot them.

  158. Access to Desktop is everything by gnarly · · Score: 1

    many passwords can be guessed if access to the subject's desk is allowed Well, if access to desktop is allowed, couldn't the accesser just reboot the computer, say into single user mode, or otherwise use rebooting to infiltrate the system in nasty ways?

    --
    :-( is a registered trademark of Despair.com
    1. Re:Access to Desktop is everything by DaCool42 · · Score: 1

      Not if you have a bios password. Then they would have to open up the computer and reset the bios.

      --

      ----
      All of whose base are belong to the what-now?
  159. Douglas Adams on Biometrics by MegaFur · · Score: 1
    While I would like to believe that people will realize the inherent flaws with biometrics before it's too late, I doubt it. I think Douglas Adams has the correct prediction of how it will go:
    [Ford] couldn't believe what he'd just found.

    He slowly drew out from [Harl's] wallet a single and insanely exciting piece of plastic. . .

    It wasn't insanely exciting to look at. . . . It was smaller and a little thicker than a credit card and semitransparent. If you held it up to the light, you could see a lot of holographically encoded information and images buried pseudoinches deep beneath the surface.

    It was an Ident-I-Eeze, and was a very naughty and silly thing for Harl to have lying around in his wallet, though it was perfectly understandable. There were so many different way in which you were required to provide absolute proof of your identity these days that life could easily become extremely tiresome just from that factor alone . . . Just look at cash machines for instance. Queues of people standing around waiting to have their fingerprints read, their retinas scanned, bits of skin scraped from the nape of the neck and undergoing instant (or nearly instant -- a good six or seven seconds in tedious reality) genetic analysis, then having to answer trick questions about members of their family they didn't even remember they had and about their recorded preferences for tablecloth colors. And that was just to get a bit of cash for the weekend. If you were trying to raise a loan for a jetcar, sign a missle treaty, or pay an entire restaurant bill, things could get really trying.

    Hence the Ident-I-Eeze. This encoded every single piece of information about you, your body and your life into one all-purpose machine-readable card that you could then carry around in your wallet, and it therefore represented technology's greatest triumph to date over both itself and plain common sense.

    -- Mostly Harmless by Douglas Adams, pp. 71, 72
    --
    Furry cows moo and decompress.
  160. New Department needed... by Anonymous Coward · · Score: 0

    for stories like this. Let's call it the No shit, Sherlock department and have a turd under a magnifying glass as its little icon.

  161. Re:That leads to DoS...Does it? by vidarlo · · Score: 0

    Yes.
    But you can add that it only is on the same TTY
    So if someone do that on TTY1, then root can login on TTY2.
    That would be easy to make, and then the DoS people got to change TTY to disable it at all TTY's.And you can say that root f. exkample _always_ are allowed to logon on TTY1 on physical computer...Then it would not be a problem...Or use trusted IP's.
    If you first are on the physical computer it is not hard to get in.... Boot lilo with single mode or simply use a boot floppy.

  162. emoticons or ascii art as passwords? by Anonymous Coward · · Score: 0

    how about using emoticons or ascii art as passwrods? Instead of words like bell, alarm
    or rose, use something like

    -C@ (((0))) or @--,'---

    Some time ago, I coded a user interface
    into a program I was working on where you
    "drew" simple multi-line ascii art to
    activate the various features. Maybe the
    same thing can be done for passwords?

  163. for users: Who cares -- no liability by The_Fire_Horse · · Score: 0

    I a worker uses 'password' in a company and sticks it on a post-it note on the monitor and casually mentions that that is their password, then surely this would be a valid legal defence if suddenly their account was used to send nasty emails to the boss or whatever.

    How could it be proved that it was this person that did it, if the password was publicly known, or assumed?

  164. Does that need a study ? by deniea · · Score: 1

    Hi,

    I've been working in IT departments for a lot of years, seen it happen everywhere.. As the number of 'services/servers' groes, eveyone of them gets them a new (and often different) username. Those people often use the samepassword everywhere..

    At the manufacturing company I now provide support services, the password is usually left blank. Tried to change it so not allow blank password, then whole hell broke loose !! So now it's back to empty passwords...

    Oh well, not a too big a deal in my opinion.. No internet connection, and all data is on file somewhere also, there's even no pudget to lock up the server ; it's in a publicly accesable place, anyone just can take a backuptape and look at the contents...

  165. writing down passwords by smartfart · · Score: 1

    I have a list of my passwords on my HD in plain-text. I don't mind that this list could get stolen somehow. That's because through the years I have devised a personal system of cyphering a password. I take a normal word, say the model of car I wish I had (porsche), and morph it (letter substitutions, doubling, pseudo-leetspeak, etc.) into something reasonably secure (poR%scK3), which I will then use as the actual string I type in. The plain-text list is only used to jog my memory in case I forget one of them.

  166. Wither mnemonics? by carrolljim · · Score: 2

    Cryptic passwords aren't all THAT hard to come up with. Weird thing about memory - if a group of words has rhythm or is rhymes (or both), then it's almost impossible to forget (everyone here remembers the theme to Gilligan's Island, right?).

    Back at DEC, the max password lengths were ridiculously long (128 chars? someone out there remembers). So, my passwords were usually something like:
    onceuponamindightdreary - next month was twiceuponamidnightdreary and then thrice..., and then I went to the next verse.

    Not terribly cryptic, but nowadays, I typically use the first characters of each word in a poem, or whatever. Example above yields Ouamd - which is a reasonable start - add a number and increment, and you're set for a while until you move to the next line. Song lyrics work just as well as old Edgar Allen's stuff of course.

    Oh, and of course, I strive to use song lyrics I'm not listening to at the time :-)

  167. pseudo-random strings by panda · · Score: 2

    We use pseudo-random strings for passwords that can't be remembered and have to be written down. We each have a copy of the password book, a small, black notebook, and they are kept locked when not on our person.

    We use a little proggie that I wrote in C to generate these pseudo-random passwords.

    Yeah, I know all about the dangers of writing passwords in books, but when you have close to 100 machines that you need to keep passwords for, you've really got no other choice. You need to make sure that security policy (keeping the password book locked up) is maintained at all times, which isn't so hard when there's only 2-3 admins who need the passwords.

    Whenever somebody leaves, we change all the passwords for root and our admin user on all the machines. A bit tedious, but necessary.

    --
    Just be sure to wear the gold uniform when you beam down -- you know what happens when you wear the red one.
  168. how's this password scheme by Zuchinis · · Score: 1

    If you read /., there is a good chance you built your own computer or have built one in the past. Part model and serial numbers are great handy alphanumeric strings that no one would ever guess. If my root password is the alphanumeric part of my motherboard's model number, it's both easy to remember and impossible to guess unless the attacker actually opens my box or know what mobo I use.

    --
    -Zuchinis
  169. They're (nearly) married now so ... by hayden · · Score: 1

    Welcome to the Slashdot Server

    Login: CmdrTaco
    Password: Handbrake

    --
    Nerd: Derogatory term typically directed at anybody with a lower Slashdot ID than you.
  170. Guessing Passwords by Anonymous Coward · · Score: 0

    Back when I was a tech, I had to install some drivers on the VP of Technology's machine, but he was nowhere to be found. So, I began the guessing game:

    1. Tried his login name - nope(good!)

    Then I looked around his office/desk, saw he had pictures of his 2 kids and taped to the wall was some kindergarten art from them (complete with names!) So,

    2. Tried son's name - nope
    3. Tried daughter's name - I'm in.

  171. PW picking techniques for the math-impaired by Asprin · · Score: 1

    Security is a compromise between security and ease-of-use. I use the similar same or similar passwords for different situations (low-med-high security) depending on the kind of info I'm protecting.

    What I'm curious about is how the math-friendly sysadmin/consultant population generates passwords for math-impaired users. *I* have no trouble memorizing a randomly generated string of 32 ASCII charagers, but some of the people I work with have to write their password:'DOG' on the frame of their monitor - IN MAGIC MARKER - to make sure they don't forget. (Of course, they try to write real small, so it's not obvious...:)

    I've found for these kinds of people, it's useful to take a favorite phrase/title/line from a favorite song and take the 1st letter from each word to generate a PW string. For example, for someone who's favorite song was "Talk Dirty To Me" by Poison, I'd have them take the line 'CC, pick up that guitar and talk to me' and generate: "CPUTGATTM"

    1) It's longer than 4 characters.
    2) It LOOKS random, but they'll remember it.
    3) It's a LOT less obvious than their kid's/pet's/spouse's name, and you have to know them REAL well to even have a shot at guessing it.

    Anyone else do anything like this?

    --
    "Lawyers are for sucks."
    - Doug McKenzie
  172. Not quite unchangeable by Anonymous Coward · · Score: 0
    If you're willing (and the system permits) to change the finger for your password (reserve one finger for Microsoft ?:), then you have nine more to use. Toes are impractical, except for the Dust Puppy.

    Enby in Waltham

  173. Comment removed by account_deleted · · Score: 1

    Comment removed based on user account deletion

  174. Password Safe from CounterPane by Nonesuch · · Score: 2
    I use Password Safe, currently only available as a MS-Windows binary, but (BETA 2.0) source is available on SourceForge.

    With this program, it is easy to keep track of a separate password for each web site, and there is a unlimited?) notes field for keeping track of extra account details or any extra challenge+response (You don't give every site your real mother's real maiden name, do you? Insanity!)

    PSafe will generate random 'strong' passwords. For the really important systems, I use the 'strong' 8-character random password generated, but when I go to log in, paste the 8-characters from PSafe, and append a four-to-six letter string I keep in my head.

    Voila --- Poor man's two-factor authentication!

  175. Interesting way to generate passwords by Blue23 · · Score: 1

    A friend who played piano woudl just position his hands on random places on the keyboard and play a bit. All he had to remember was where to position and the piece. Of course, there was no mixed case (unless Caps Lock was one of the keys he was playing), but still fairly non-dictionary.

    I must say, I keep on getting tempted to put a slightly modified version of login that looks for a specific password and dumps them into a honeypot. And then leave that password on a post-it on my monitor. See how many people would be tempted by possible root access.

    =Blue(23)

    --
    LITTLE GIRL: But which cookie will you eat FIRST? C. MONSTER: Me think you have misconception of cookie-eating process.
  176. Re:How to pick a good password & geeks by 56ker · · Score: 1

    They can't be much of a geek if they can't decrypt a simple password file!

  177. the best solution by utexaspunk · · Score: 0

    the best solution would be for each user to have a unique card that has a fingerprint scanner and a keypad on it. at login, the user is presented with a code which must be entered into their unique card, which then authenticates the user by their fingerprint and also calculates a password based on some formula which is unique to the card and involves both the code the user entered and the user's fingerprint. a friend of mine who worked for the DoD had a card similar to this, but it didn't involve fingerprints, so theoretically anyone with his card who knew his login might be able to login for him. of course, even if it DID have fingerprint recognition, someone smart enough could probably steal the card, get his fingerprint, and do some sort of hardware hack to trick the card into thinking my friend's finger was pressed to it... i dunno... sounds pretty secure, though...

  178. Re:So? Only allow 'trusted' devices... by Man+Eating+Duck · · Score: 1

    I get the joke, just a little addon: An american mobster actually tried to change his fingerprints the hard way back in the twenties, when they started to become a mainstream method of identification (fingerprints, not mobsters). He "burnt" his fingers with acid, to regrow new prints. Spent three weeks in extreme pain, just to find that his old prints grew back...

    The only way to "change" your fingerprint is to get a flesh wound at your fingertip, so scar tissue grows. Probably wouldn't be a valid fingerprint to the automated tools, though.

    Excuse my less-than-perfect english

    --
    Are you a grammar Nazi? I'm trying to improve my English; please correct my errors! :)
  179. "something you have" by ahde · · Score: 2

    could be yellow and have a "3M" watermark.

    There's no difference between a smartcard and a password, except the input device (keyboard or mag reader) -- both of which can be bypassed.

    1. Re:"something you have" by Jumperalex · · Score: 1

      a bad password can be guessed, a card can't
      a password can be brute forced, a card can but it is much harder
      a password can be shoulder surfed with simple tools (the eyes), a card can be sniffed with much more complex tools (RF reciever)
      a password much be remembered, a card must be possesed

      There is a signifigant difference between the two in that guessing or obtaining the password in the card is much harder than the password in your head. that is why the card is considered something you have versus something you know.

      --
      If you can't be good, be good at it!
    2. Re:"something you have" by Anonymous Coward · · Score: 0

      you're absolutely right. george gaidow's password is 64eagle (the school i go to assigns a password based on 2 numbers then an animal name). mine was 34pig last year.

    3. Re:"something you have" by ahde · · Score: 2

      you're right that a bad password can be guessed. But:

      a) you could assign your user a good password (just like you assign them a card)

      b) chances are that the card codes are *not* random -- or even very secure. They probably contain an ID number which may contain your social security number, or worse, be sequestial.

      Shoulder surfing is eliminated, but it is easier to "borrow" a card than steal a password.

      How is it harder to brute force a card? All the card contains is a number. It may be longer than 8 bytes, but passwords can be just as long. A physical card reader may be necessary to read the card, but not to submit the number on it. In the end, it is software that verifies the card. There is a casual deterrent, but only similar to your browser preventing data entry with a MAXLENGTH attribute. You can bypass the browser with "TELNET host.com 80"

      I realize that there may be physical impracticalities for doing the same with the card, but that has nothing to do with "what you have" authentication.

      A card is nothing more than a post it note with a password and secret decoder ring that can be read mechanically.

  180. And then there's me.... by Yottabyte84 · · Score: 2
    My PGP passphrase is 36 charcters of random crap, and my other passwords are shorter fragments of it.


    I used a random password generator to pick out about 60 random passwords, then picked one.

  181. 'Public' passwords, and private ones by The+Raven · · Score: 2

    I have about 50 or so accounts on various servers that I use frequently. I use about 10 passwords on those various services. Half of them would be considered 'strong'... liberal use of the shift key, number keys, etc. The other half are middling to weak.

    On most of the sites, I use a single, weak password... on every site that I do not trust, or do not care about. On the important ones, I use one of the strong passwords, or a variation (shifted in different spot, etc).

    As I am assigned passwords at work, I add them to my list of 'strong' passwords. I get a new random password yearly, so I have a long time to memorize it. Once it is no longer my work password, I add it to my farm of passwords I use elsewhere.

    So for sites that don't matter, I use the poorest password manners possible... one weak password shared all over. But for important stuff (paypal, online banking, email, shells, etc) I use strong passwords that rarely duplicate.

    For me, this is the best combination of convenience and security.

    --
    "I will trust Google to 'do no evil' until the founders no longer run it." Hello Alphabet.