Slashdot Mirror


Password Strength Testers Work For Important Accounts

msm1267 writes "Many popular online services have started to deploy password strength meters, visual gauges that are often color-coded and indicate whether the password you've chosen is weak or strong based on the website's policy. The effectiveness of these meters in influencing users to choose stronger passwords had not been measured until recently. A paper released this week by researchers at the University of California Berkeley, University of British Columbia, and Microsoft provides details on the results of a couple of experiments examining how these meters influence computer users when they're creating passwords for sensitive accounts and for unimportant accounts."

43 of 129 comments (clear)

  1. What's really needed... by msauve · · Score: 3, Insightful

    is not more reliance on passwords, but an infrastructure which replaces all of that.

    I don't pretend to be a security expert, but why not ask for a public key instead, so I can authenticate with my private one, as with SSH? Or provide a pointer to some authentication server, so I can have a safely "shared" yet easily changed password for multiple sites? (and I am NOT talking about Facebook)

    --
    "National Security is the chief cause of national insecurity." - Celine's First Law
    1. Re:What's really needed... by msauve · · Score: 5, Funny

      Oh, yea. Obligatory Dilbert (better than XKCD in this case).

      --
      "National Security is the chief cause of national insecurity." - Celine's First Law
    2. Re:What's really needed... by kwerle · · Score: 3, Informative

      This is the basic goal of http://openid.net/
      Using facebook's auth mechanism is mostly just a flavor of this.

      Though see also http://supergenpass.com/

      I don't know any of my passwords. I just know my supergenpass phrase.

    3. Re:What's really needed... by icebike · · Score: 2

      PayPal CIO wants to ditch all passwords.

      He is suggesting as an alternative something from the FIDO Alliance.

      It could be something as simple as the Google Authenticator that generates number that last for mere moments.

      --
      Sig Battery depleted. Reverting to safe mode.
    4. Re:What's really needed... by Exitar · · Score: 4, Insightful
    5. Re: What's really needed... by Anonymous Coward · · Score: 4, Insightful

      All well and good if the sites would stop implementing arbitrary password length limits.

    6. Re:What's really needed... by dgatwood · · Score: 4, Interesting

      The FIDO stuff sounds like a whole lot of expensive extra technology with no real benefit over a password. A finger swipe is a replayable event just as much as a password or PIN.

      The Google Authenticator is conceptually okay in theory, but in practice, AFAIK, it too becomes a gaping security hole as soon as your mobile device gets compromised.

      If you want something stronger than passwords, it must have the following criteria:

      1. Immune to replay attacks. Done correctly, this means that each authentication request must have a unique ID that must be signed or otherwise combined with some shared secret in a secure way.
      2. Immune to man-in-the-middle attacks. Each request for authentication must be signed by the requestor so that the user can be certain that he/she is not agreeing to do something other than what is intended. Each response from the user must include at least a hash of the original request.
      3. Immune to device compromise. The most common way that computer security is breached is through password sniffers or other compromise of the user's computer or mobile device. If you cannot trust the device that is performing the authentication, you cannot trust the action being performed, and all security goes out the window, including existing measures for preventing MITM and replay attacks, such as SSL/TLS.

      None of these schemes I've seen so far address #3, and as a result, none of them are significantly more secure than typing letters at random and pasting the resulting password into a text file on your Desktop. They try to address problems that don't actually exist, while failing to address the root of the problem, which is that computers, mobile devices, etc. are not inherently secure.

      For example, Google Authenticator uses a time-based token. This tries to avoid replay attacks by limiting the period during which an attack is possible. That doesn't work very well, though, unless you can delay an attacker's ability to sniff that token. This means that you have to prevent a MITM attack. As soon as the device is compromised, SSL and TLS are no longer capable of preventing a MITM attack, so the entire scheme falls apart.

      Anything short of a non-networked device communicating with your computer over a very simple protocol (think "formal verification" here) is not a major win, IMO. And it can't be something silly like touching a smart card to an RFID reader, either, because the reader could perform more than one transaction, and you would have no way of knowing that you just bought some farmer in Iowa a new tractor alongside that DVD from Amazon. No, you really need a physical screen and a button on the device saying, "Do you agree to transfer $258,000 to Bank of Nigeria?" in order to significantly improve things. Anything short of that is just wasting a lot of time and expense without addressing the real problem—that if you can't trust the endpoint, you can't trust the message. Start by developing a truly trusted endpoint. After that, the entire problem becomes fairly trivial.

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

    7. Re:What's really needed... by fostware · · Score: 5, Funny

      But all my passwords are "correcthorsestaplebattery"!

      --
      "We know what happens to people who stay in the middle of the road. They get run over." - Aneurin Bevan
    8. Re: What's really needed... by El_Oscuro · · Score: 3, Informative

      Isn't that what keepassx is?

      --
      "Be grateful for what you have. You may never know when you may lose it."
    9. Re:What's really needed... by icebike · · Score: 2

      I think that Google Authenticator tries to prevent mitm attacks by having any given token usable exactly once in addition to having a very short lifespan.

      So any putative man in the middle must get to Google before you do and immediately proxy everything you want to do from that point on to prevent you from discovering the attack.

      If you lose your phone you can still can log in with your emergency passwords and lock

      I think you underestimate authenticator.

      There are similar schemes that use a single purpose hardware fob that simply displays 6 or 8 digits with no network connectivity (just a very accurate clock).

      --
      Sig Battery depleted. Reverting to safe mode.
    10. Re:What's really needed... by Carnildo · · Score: 5, Insightful

      If you actually do any PW cracking, you'd know that comic is wrong. Dictionary attacks with not just words, but with phrases and 1337 replacements, and exclamations, and numbers after or before or in between words, runs of N repeating characters to 'pad out' a password, etc, all get tried before brute force.

      If you understood combinatorics, you'd know that the comic is right. The first row is a password made from known tricks, and is probably in a dictionary (the 28-bit strength represents the size of the smallest dictionary likely to contain it, or how far you need to go through the dictionary before running into it). The second row represents a password generated randomly from what is effectively a 2048-letter alphabet.

      --
      "They redundantly repeated themselves over and over again incessantly without end ad infinitum" -- ibid.
    11. Re:What's really needed... by Anonymous Coward · · Score: 3, Informative

      And by "working with phrases" you mean "working with known phrases", or rather "correct horse battery staple is already in the dictionary". If you do any PW cracking and "know that comic is wrong", you're probably just a script kiddie.

      A random word from 65000 words dictionary gives 16 bit of entropy, adding variations on capitalization and 1337 makes each word worth a little over 18 bits. 4 word phrase is equal for a bruteforcer to a 10 full ASCII characters password, while being a lot more memorable. Yes, you'll pick those words from dictionary, which probably confused you, but it's the same as picking characters from alphabet for bruteforcing.

    12. Re:What's really needed... by Anonymous Coward · · Score: 2, Insightful

      What needs to be done, as a minimum, is something like Password Hasher (the firefox plugin) needs to be built into each browser. Each website has its own tag and when I type in my password the password that actually gets sent to the website by my browser is different from the password that I typed and it's different from site to site even if I choose to use the same or a similar password. That way if my password does get logged or compromised by one website they can't as easily discover the underlying password and use it to access information from other accounts I may have if I use the same password. The whole process should be built into each browser and oblivious to the user, I can go on another computer and type my password for the same site and it will go through the same hash process and send the same password.

      Of course this isn't foolproof, someone could potentially back - crack the original password based on the sent password or try to create databases of cracked original passwords for each website (ie: for each hashtag) but at least this is an additional simple obstacle that will make it more difficult for those who get a hold of compromised passwords sent by the browser to benefit from them through using them for other websites. My browser should, ideally, never send the password that I type to the server exactly as I type it, it should be sent hashed.

    13. Re:What's really needed... by dgatwood · · Score: 4, Informative

      I think that Google Authenticator tries to prevent mitm attacks by having any given token usable exactly once in addition to having a very short lifespan.

      Here's why that doesn't work. The attack is very, very, very simple, and once you see it explained, you'll never trust those sorts of services again. A basic attack looks like this:

      1. Attacker compromises the device and waits for user to log into Google.
      2. Attacker captures the response to the authentication request and forwards it to their own server.
      3. Attacker's server connects to Google's system and obtains credentials.
      4. Attacker displays a network error message to the user. The user logs in again to the real Google server, unaware that the first attempt was successful, just for somebody else.

      Elapsed time: tens of milliseconds after the user logs in. A slightly more sophisticated attack looks like this:

      1. Attacker compromises the device and waits for user to log into Google.
      2. Attacker captures the response to the authentication request and forwards it to their own server.
      3. Attacker's server connects to Google's system and obtains credentials.
      4. Attacker masquerades as a forwarder for Google's server so that the user is completely oblivious.

      Elapsed time: tens of milliseconds after the user logs in. And if the service you're logging into works the way most services do, an even simpler attack looks like this:

      1. Attacker compromises the device and waits for user to log into Google.
      2. Attacker steals the cookies that Google stores on the user's system and uses them on another machine.

      Elapsed time: zero milliseconds after the user logs in. But the best one of all is this:

      1. Attacker compromises the device and steals the private key used to generate the authentication token.
      2. Attacker logs in at will. From anywhere. At any time. Forever and ever.

      Elapsed time: zero milliseconds after the device is first compromised or GA is first installed.

      All four techniques are 100% transparent and are 100% effective attacks against software-generated time-based authentication schemes. The first two are 100% effective against hardware tokens used for time-based authentication, too. In fact, even if Google upped the ante and made the authenticator be interactive, where the Google servers sent a unique nonce that had to be encoded along with the time stamp, this scheme would still not be significantly stronger. The only change required to the first two schemes would be adding one additional step—telling the attacker's server to issue a request to Google and pass that request nonce to the compromised client. And the third and fourth schemes would continue working as-is. This is why time-based authentication is basically worthless unless the endpoint is trusted (and at this point, I'm growing more and more convinced that users should assume that their endpoints are not trusted).

      The reality of the matter is that time-based authentication schemes are an anachronism. When they were first conceived by RSA in the mid-1980s, they were not intended for general users. They were intended to protect against precisely one threat—an attacker with a very specific target watching a user type in his or her password from a distance. They work well for that purpose. They can be compromised once by any attacker who gains control over the system where the authentication token is being entered, even if hardware tokens are involved, and they are permanently compromised by any attacker who gains control over the system where the secret key is stored. The reason there haven't been very many new implementations of time-based authentication since the 1990s is that such schemes just aren't particularly useful against modern attacks. They give the illusion of security without actually adding any. Well, unless you're worried about your roommate seeing you enter your password.

      Put another way, creating a secure authentication scheme where the endpoint is compromised is fundamentally impossible for precisely the same reason that perfect DRM is fundamentally impossible. Alice is also Eve and Mallory. Food for thought.

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

    14. Re:What's really needed... by dgatwood · · Score: 2

      What needs to be done, as a minimum, is something like Password Hasher (the firefox plugin) needs to be built into each browser.

      That protects against what is probably the least interesting situation—when the user's password to one site is silently compromised by attacking that site, and the user used that same password on another site. First, it assumes that the user's password is weak enough to be readily cracked by someone hammering on the password database (which if it is salted properly, is unlikely). Second, it ignores the reality that most passwords are not compromised by server-side security holes; they're compromised by client-side security holes—keyloggers, etc.

      To use a car analogy, this is like putting an un-pickable lock on a car to protect your expensive radio, but leaving the factory glass windows untouched.

      --

      Check out my sci-fi/humor trilogy at PatriotsBooks.

    15. Re:What's really needed... by icebike · · Score: 2

      Here's why that doesn't work. The attack is very, very, very simple, and once you see it explained, you'll never trust those sorts of services again. A basic attack looks like this:

      Attacker compromises the device and waits for user to log into Google.
      Attacker captures the response to the authentication request and forwards it to their own server.
      Attacker's server connects to Google's system and obtains credentials.
      Attacker displays a network error message to the user. The user logs in again to the real Google server, unaware that the first attempt was successful, just for

      Here is how I know you haven't a clue what you are talking about, and why I hope you will just go away and stop pontificating:

      Attacker compromises the device...
          Really? Really? Just like that, compromises my cell phone, which is never out of my possession?
          How is it you hand waive all that process away?
      And waits for the user to log into google
          Again, Really? Do you even have a clue how Google authenticator works?
          You don't log into google with the authenticator. You log in with some other computer over a ssl connection.
            Then google asks you for a code from the authenticator app. Guess what: The app doesn't even talk to google
              except at install time. You can put your phone in airplane mode and still get a code from the authenticator.
              So even a compromised phone (something you seem to think is trivial, but never bother to explain) won't do you
              any good because it does not contact google.

              You then key this number into the computer talking to google over a ssl connection. It compares it to the
                number your authenticator would have rendered for that particular 30 second window. If its good you get in
                but again you are in a ssl pipe.

              So you capture nothing. NOTHING.

      Attacker captures the response to the authentication request and forwards it to their own server
          No it doesn't, because you captured nothing. It was in an SSL pipe from some compute you don't even know about.
          Further the code has been USED, and its no good any more. Its a one time code.
          Further Google would see you trying to create your own connection and would immediately you to get a code off of your authenticator...
              but wait, you don't have an authenticator synced with that account, and the old number is no good..

      You would have to already have an ssl compromised machine in place and lure a google user into signing on via that specific machine.
      But wait, that wouldn't work either because
      google already detects this. Even Schneier does believe this would work even with National authorities forcing bogus certificates.

      Even if you had a pre-compromised computer and an elaborate SSL spoofing setup in place ahead of time, on a computer that you knew I would have to log in from, you can only compromise that single session, and when you attempted to change anything so that you could log in again in the future, I would be locked out of the account, and would therefore know the account had been compromised.

      So just stop hand waiving into existence imaginary compromised devices, and thereby supposing into existence the hardest part of the whole operation.
      If this was so easy, it would have already been done. Yet every attempt to bypass Two Factor has been done via apps that would not support Two Factor, and which required an application specific password, which in the end, is just another password.

      --
      Sig Battery depleted. Reverting to safe mode.
    16. Re:What's really needed... by hairyfeet · · Score: 2

      I don't see why two factor authentication isn't standard across the web, what with flash chips being so cheap. i mean if i can get a 16GB USB drive that is so thin and small it fits in the card holder of my wallet why we can't have something similar that works with any website? And public/private keys are frankly more complex than most users could handle, at least from the ones I've looked at.

      As for TFA you just hit the nail on the head when you mentioned FB because what I'm seeing is more and more people that let FB handle it and if there isn't a FB option they pass. Should we consider this good or bad? On the one hand FB knows too damned much about people as it is but on the other hand at least they aren't reusing passwords constantly

      --
      ACs don't waste your time replying, your posts are never seen by me.
    17. Re:What's really needed... by jonbryce · · Score: 2

      There is a case in Europe of people getting into bank accounts by compromising their cellphone. They sent a phishing message puportedly from their bank telling them they needed to install some security software on their phone, with instructions on how to do it for iPhone, Android and Blackberry.

      Then, having got the login details for the bank account, they log in, do a transfer instruction, and when the bank sends a code to the phone to authenticate it, the malware on the phone intercepts the message, and sends it to them, so they can complete the transaction,

    18. Re:What's really needed... by Dodgy+G33za · · Score: 2

      Too true. I once needed a password to connect to a mainframe, and all I had was the hash. On the off chance I googled the hash and got the password. And this was five years ago...

  2. Minor difference at best by icebike · · Score: 5, Insightful

    The long and the short of it: Not Much!

    Users, despite a barrage of news about stolen credentials, identity theft and data breaches, will re-use passwords over and over, especially at account creation, regardless of the presence of a meter. If the context changes, however, and users are asked to change existing passwords on sensitive accounts, the presence of a meter does make some difference.

    They claim it was for "important accounts" but how important would the account be that was being used in a study?

    Lots of people re-use passwords on "nothing accounts" simply to prevent having to remember a gazillion passwords.
    That doesn't mean they reuse all passwords.

    Its probably more important to not log in using the same user name on many different sites than it is to have passwords consisting of crazy strings of random characters that you can't even type consistently let alone remember. If someone guesses your re-used password in one site they have a much better chance of guessing your other logins.

    --
    Sig Battery depleted. Reverting to safe mode.
    1. Re:Minor difference at best by khasim · · Score: 2

      All excellent points. And there are still more.

      #1. Unless your password is "password" or some variant AND the site does not limit password attempts then "password strength" isn't that important.

      #2. You are more likely to have your passwords compromised by using a cracked computer or by falling for a phishing link.

      #3. If not #2 then when one of the sites you use is cracked and their username/password file (unhashed, unsalted) is stolen.

      Also, why can't a site tell you what the requirements are PRIOR to you having to come up with a username/password/secondary-password/pet-name/school-name/maiden-name-mother?

    2. Re:Minor difference at best by jrumney · · Score: 4, Interesting

      90% of accounts I have created were so I could read some support documentation, or download an updated driver from a vendor etc. The only reason for putting password protection on such things is so the vendor can spam me in future. I really don't care if such accounts are compromised, in fact, I actively use obvious username and password combinations along with fake, or if they require confirmation before activating the account, throwaway email addresses. Another 9% are sites like slashdot, where the account gives some convenience, but nothing of value is stored there (a bit of reputation is at stake if someone hacks the account and uses it to troll, but the damage is minimal and easy to explain away). For the other 1%, I'll care enough to create unique passwords that are difficult to crack.

    3. Re:Minor difference at best by DKlineburg · · Score: 2

      I only have one problem with this. There are some accounts I want to make secure, but they don't allow anything but numbers and text. And upper and lower aren't recognized. They also deal with money. Even if I have good habits, I can't make it secure as they don't allow it. Or my passwords are to long.

      --
      Memory is deceptive because it is colored by today's events. - Albert Einstein
  3. The forced registrations on many sites drive reuse by luvirini · · Score: 4, Insightful

    The growing number of places you need a password on just to access some content is a sure cause for increased password reuse.

    Humans are simply not suited to remembering random enough password to cover all the sites on internet.

    The save password option on the browser might help...

    but more and more sites use the "no not save passwords" option.. forcing people back to reusing passwords.

    Well, personally I just use fairly random passwords and "rememberpass" extension on firefox to force saving password even when the site does not want you to do that.. as the lesser of the evils.

  4. Strong passwords considered harmful by Skapare · · Score: 2

    I might be the exception because one of my passwords is 27 characters and I have never needed to write it down. But most people do need to wrong down long meaningless strings of gibberish, especially if they many of them. Just like people know to find the car keys above the sun visor in a car, or under the rug at the house door, people know to look in or under the desk drawer to for the computer password.

    Few people get a chance to sit at your PC, though. Network access is the greater risk, and that often has no password need because people just click on the link to the dancing squirrels and let their computer be taken over. We also need LESS use of passwords when connecting to things on our networks. Everything should be strong crypto authenticated, even inside private LANs.

    --
    now we need to go OSS in diesel cars
  5. So? by Smallpond · · Score: 4, Interesting

    Now tell us what percent of breakins are due to guessing passwords. Maybe 2%. The rest are social engineering, default accounts, keyloggers, vulnerabilities, malware, misconfigured networks and people leaving their phones in bars.

  6. How good are the meters? by Carnildo · · Score: 3, Insightful

    How good are the meters as an indication of password strength? If you've got a meter that calls "Password1" (nine characters, mixed upper and lower case with a number) strong, it doesn't matter if the meter has an effect or not.

    Password strength is inherently impossible to measure (it's related to the password's Kolmogorov complexity, which is incomputable). A good heuristic meter would check the password against the output of a few password-cracking programs and assign a strength based on how long it takes the password to show up, but I doubt anyone's doing that.

    --
    "They redundantly repeated themselves over and over again incessantly without end ad infinitum" -- ibid.
  7. Indeed. Most strength checkers are quite wrong by Anonymous Coward · · Score: 2

    You're absolutely right. For fifteen years, my job was preventing brute force attacks and the use of compromised credentials. (I wrote the Strongbox system.) The well known xkcd comic illustrates why the popular rules for "good passwords" are wrong, wrong, wrong. The LENGTH of the password is by far the most important thing. Password! is a really bad password, but would be considered "very strong" by most meters.

    Probably the best thing we could do for password security would be to replace the word "password" with "pass phrase" or better yet "secret sentence". It's extremely unlikely anyone would ever crack the password "Ray eats cherry pie alamode", yet it's very ready for the user to remember.

    http://xkcd.com/936/

    1. Re:Indeed. Most strength checkers are quite wrong by retchdog · · Score: 3, Informative

      coherent english phrases have approximately one bit of entropy per character. your sentence wouldn't be that unusual if crackers were using the appropriate tools (which of course they aren't).

      the xkcd example works better because it's nonsense. to see it intuitively, "eats cherry" is a common 2-gram (although salaciously ambiguous out of context) whereas "horse battery" is uncommon (as is its referent).

      --
      "They were pure niggers." – Noam Chomsky
  8. Re:Speaking of "meters" by Anonymous Coward · · Score: 2, Interesting

    ...and very difficult to remember making the use of such a system insanity.

  9. A thought.. by SuperCharlie · · Score: 4, Interesting

    Maybe a brainfart..but here goes..

    Has anyone worked on a time based password system..such as.. the timing between the entry of the characters? So 11 then isnt the same as 1 1

    I find that I have a few passwords that I use that I end up with a typing rhythm for certain character sets. I could logically break and wait on some.. or speed some up and slow some down consciously.. the intent of course being to add another completely random variable into the password thing..

    You could have different timing resolutions for different levels of security. Imagine the difficulty of a password with only 2 characters exactly 1.756 seconds apart .. with a resolution of .002 seconds..and someone who can flip a coin, catch it, and click the second character consistently because of muscle memory and repetition. (random specs..but you get the picture)

    And then the same scheme with a 1.5 second resolution for not so strict security. (again..random specs..but you get the picture)

    Of course you would have words or phrases with timings in between so that...

    "the l a z y dog" isnt the same as

    "t h e lazy do g"

    simply by the timing between the characters.

    You would need to add or change passwords by typing them a few times until you can get the timing right for the resolution..and I would think a test or two before setting the password with timing..somthing like the voice recognition training...

    and theres my brainfart for the day..enjoi.

  10. Re:LastPass by Anonymous Coward · · Score: 2, Interesting

    > Of late I've been using LastPass.

    That's great! Except... you know that LastPass had their entire database compromised, right? Fool me once...

  11. Your password must include a 9 in it. by GoodNewsJimDotCom · · Score: 2

    At first glance, telling your users they must use a 9 in their password sounds dumb. "Hey, everyone is going to have at least one guessable character". But what in fact happens is most people who make a password on your site will not be using a reusable password from another site which is one of the biggest flaws in security right now. Your site's users are less likely to be hacked if another site's security goes down.

    So while security "experts" think forcing you to use one uppercase letter and at least one !@#$%^&*() makes your password harder to guess, what it really does is make you write a password custom to the site. If sites were smart, they'd all have different password rules instead of conforming to this. This means one site would ask you for pick one "^&*(" and one "abcd", and another site would ask for you to pick one" #$%^" and one "wxyz"

  12. Get a password manager by Snotnose · · Score: 3, Insightful

    I use KeePass. I have 1 strong password stored in my brain. I have 1 crappy password for places like fark, /., and ars. My passwords for my 2 investment firms, my bank, ebay, paypal, email accounts, etc, are all different and I have no idea what they are as I let KeePass generate them. I just open up KeePass, copy the password to the clipboard, then paste.

    To make it portable whenever I add a password to KeePass on my laptop I copy the database to my phone. As I never access my sensitive accounts from anywhere but my phone I'm good.

    In short, it's simple, free, and as long as my 1 strong password is good I'm in good shape.
     

    1. Re:Get a password manager by Anonymous Coward · · Score: 2, Insightful

      By that logic it's even more likely your OS or its keyboard driver are compromised, which would give the bad actor access to the same passwords (and then some). And what about sites integrating 3rd party scripts (like facebook/socialnetwork/googleanalytics stuff), they allow a 3rd party to run scripts on every page of their site (facebook/google could easily add a pre-submit event handler that reads the pw and submits it to them aswell).

      Password managers are (at heart) very basic software, which makes source code evaluation relatively easy (assuming you pick an OSS variant, which you probably should). Aside from heavily investing brainpower in remembering a lot of passwords (or some in-your-head password "algorithm"), password managers are one of the safer methods available at the moment.

      Important IT systems (such as banking/companyVPN/etc) are, or should, all be moving away from passwords.

  13. Believe this by dutchwhizzman · · Score: 2

    Attackers are not trying just one account, but many. They don't try a single account from a single IP sequentially. If you have 1 million accounts and a four digit pin to get in, you get 100 accounts unlocked on average with every sweep of a single pin on those 1 million accounts. Get your botnet to do the sweep, give it a little time so people will log in and reset the counters and in a few months you'd have all the accounts unlocked with almost no lock-outs. You might need a little intelligence put in so you'll delay attempts on accounts that got locked out, not use botnet IPs that got locked out for a week or so if you really want to keep a low profile, but other than that, a 4 digit pin is trivial.

    --
    I was promised a flying car. Where is my flying car?
  14. Yes by dutchwhizzman · · Score: 3, Interesting

    Yes, they have. However, it requires client side applications and it is depending on the keyboard you are using. If you have to type your password on a different keyboard, your timing will differ because of the different placement and mechanics of the keyboard. It is only a reliable extra factor if you use a single type of hardware in very similar locations.

    --
    I was promised a flying car. Where is my flying car?
  15. No kidding by Sycraft-fu · · Score: 4, Insightful

    I'd say I'm a pretty security aware individual, what with working in IT and all that. I do defense in depth on computer and physical security, I'm proactive about things, etc. Seems to have worked, I've never had a system owned.

    So I never reuse passwords, right?

    Wrong, I do all the time. Almost every forum online I have the same password for, and it is a weak one. Why? Because I don't care. Oh no, someone might hack my forum account and... I dunno, post something as me! Whatever would I do? I'm not going to bother to generate a great, unique, password for every site.

    However my bank account? Random password (I don't seem to have trouble remembering them), long, and it requires two factor authentication. That protects my finances, and those matter. So security on that is pretty high.

    The idea that everyone is going to have a high security password for every site and not reuse it is silly. There are plenty of things where if your account got compromised, you just don't care so much.

    Also it can make sense to group systems. All my systems at home use a single password. There is no reason for them not to. They are all in the same security context, basically. It is no different than at work where my single account gets me access to any domain system.

  16. There are lots of bad ones by Sycraft-fu · · Score: 2

    For example the powers that be at work decided that the important thing was 3 of the 4 groups (upper, lower, numbers, and punctuation are the groups), and length, with 14+ being what makes it happy. So you input a short phrase like "I like puppies" it'll call it strong and take it. However if you input "@la2wo!d?o-z4" it'll call it weak because it is too short. Input something like "niecrlazleswiariucriuml7priu8roab7iuyluc0oawr1u5pl" and it'll reject it because there are only 2 of the 4 groups).

    There's no further analysis, it is just a length and groups thing, with rather poorly defined groups.

    Also in terms of strength, while there's no perfect one, measuring bits of entropy, which you can do, is pretty good. However few sites use anything that advanced.

  17. Importance... by Bert64 · · Score: 2, Insightful

    Every website appears to have an over inflated sense of its own importance... Why shouldn't i use a "weak" password on a site I deem unimportant?

    Many of the password strength checkers are also deeply flawed, as they allow common dictionary words to slip through with trivial changes, eg Password1! is considered strong by most such checkers.

    Also, how can i be assured that a site i sign up to is going to store my details securely? What's the point in having a strong password if its going to be stored in plain text or using a weak hashing algorithm?

    --
    http://spamdecoy.net - free throwaway anonymous email - avoid spam!
  18. So people choose strong passwords... by theedgeofoblivious · · Score: 5, Insightful

    And then they write them down, stick them on sticky notes, and put them under their keyboards, or in their drawers, completely destroying the security, but maintaining the administrators' beliefs in it.

    It's almost as good of an idea as making people change their password once a month, which also encourages people to write them down, re-use their weak passwords or choose passwords that are easy to guess.

    And how about those password retrieval questions?

    What's your favorite color or your mother's maiden name? No one can guess those.

  19. Not really checking password strength by mwvdlee · · Score: 4, Insightful

    To most of those password checks I've encountered, "P@ssw0rd" is very strong, but a thousand random digits is unpermissably weak.

    --
    Slashdot social media options: AIM, ICQ, Yahoo, Jabber and Mobile Text. Why no MySpace?
  20. THIS THIS THIS by brunes69 · · Score: 2

    This is what I have been saying for a dogs age. Security "professionals" have this all wrong because they neglect a very simple concept - NOT ALL ONLINE DATA IS EQUALLY IMPORTANT.

    Frankly, I don't care if someone hacks my slashdot account. I don't care if someone hacks the account to the deals forum I visit. The worst that will happen is it will be a minor inconvenience to get the password reset, and they might post some troll information about me.

    The only accounts that I have that I care about security are my banking accounts, my Facebook account, and my email account. That is pretty much it. I don't even care about Twitter really.

    By forcing all random accounts to have strong passwords, you make the password management problem a lot more difficult than it should be for the average user.

    Furthermore, all of these random one-off sites should be using OpenID / Google Login / Twitter / Yahoo / Facebook Login / SOMETHING, some form of identity federation... preferably supporting multiple of these. There is no reason that a mom & pop shop website should be managing identity credentials in this day and age, it is not required. Everyone on the planet has an account with SOME ONE of these providers, or an OpenId provider.