Slashdot Mirror


NYT Password Security Discussion Overlooks Universal Logins

A recent NYT piece explores the never-ending quest for password-based security, to which reader climenole responds with a snippet from ReadWriteWeb that argues it's time to think more seriously about life beyond passwords, at least beyond keeping a long list of individual login/password pairs: "These protective measures don't go very far, according to the New York Times, because hackers can get ahold of passwords with software that remotely tracks keystrokes, or by tricking users into typing them in. The story touches on a range of issues around the problem, but neglects to mention the obvious: the march toward a centralized login for multiple sites."

13 of 127 comments (clear)

  1. In matters of security by Pojut · · Score: 4, Insightful

    In matters of security, the most important tool anyone can have is common sense. Phishing scams, "dangerous" websites, revealing important information willy nilly...all things that cause major problems in the digital world, and all things that could be almost completely avoided if common sense was more prevalent.

    Granted, some people "don't know any better"...but that's why you educate those types of people if you know any.

    1. Re:In matters of security by PPH · · Score: 4, Insightful

      My credit card company (Visa) calls me occasionally about suspicious activity on my card. When they leave a message, the number they leave is NOT the same as the customer service number on the back of my card.

      It's been explained to me that this number gets me to the same place as the customer service number with a few less steps. But I've told them that I'll never call anything other than the number on the card. And that its a really bad idea to train customers to return calls to just any number and expect them to identify themselves with SSNs, relatives names, and provide their card number.

      If anyone is supposed to be smart enough to figure social engineering attacks out, it should be Visa and their ilk.

      --
      Have gnu, will travel.
  2. Idiots by The_mad_linguist · · Score: 5, Funny

    Why don't you hunter2s shut the hunter2 up!

    1. Re:Idiots by Abstrackt · · Score: 3, Funny

      Why don't you *******s shut the ******* up!

      Jeez, you really are a mad linguist.

      --
      They say a little knowledge is a dangerous thing, but it's not one half so bad as a lot of ignorance. - Terry Pratchett
    2. Re:Idiots by c++0xFF · · Score: 3, Funny

      Why don't you *******s shut the ******* up!

      You must have used some really foul language. Slashdot never censors posts like that!

  3. Torn by esocid · · Score: 4, Insightful

    I'll admit, I feel torn when I see that OpenID login. Increase my chance of giving someone access to everything? Or make it simple?
    In the end I compromise and simply use a variation of one password for those.

    There is the problem with centralized logins: the masses don't consider the first part, and only think of the convenience.

    --
    Absolute power corrupts absolutely. indymedia
    1. Re:Torn by houghi · · Score: 4, Informative

      There used to be a time that you could easily host your own OpenID with e.g. http://siege.org/phpmyid.php
      You point to http://yoursite.example.com/ instead of the one from Google or any other OID provider.
      That way you limit the chance of giving somebody else access as you manage your own login and password.

      Some others might be found here : http://openid.net/developers/libraries

      --
      Don't fight for your country, if your country does not fight for you.
  4. OpenID isn't the solution by yourcelf · · Score: 3, Informative

    The trouble with OpenID is it's still one identity that you're carting around, allowing yourself to be tracked across multiple sites.

    A better solution is just to use a password manager (KeepassX, Last Pass, etc.) which lets you manage your own multiple identities in a secure way. This gives you the convenience of a single sign-on with the security of a distinct identity for every site where you want it.

  5. Re:How does centralized login solve keylogging? by Bigjeff5 · · Score: 3, Insightful

    Exactly my thoughts.

    Keyloggers still work, phishing scams still work, and social engineering still works. If centralized logins become the norm, the bad folks will simply target the centralized logins.

    Your risk with centralized logins, however, skyrockets. Now, instead of losing control of one login to one website, you lose everything. Moreover, they don't even have to guess what sites you have access to, they can simply dig through the centralized login site and find it once they have your account info.

    The NYT article is interesting, but the SlashDot summary is near useless. There is no need to specifically include universal logins in the discussion, because universal logins suffer from exactly the same issues that individual logins do. The only possible reason for including them is the fact that the potential loss is much much higher with a universal login.

    --
    Security is mostly a superstition... Avoiding danger is no safer in the long run than outright exposure. - Helen Keller
  6. Re:Single point of failure by tverbeek · · Score: 3, Insightful

    Maybe the NYT article doesn't mention centralized login because such an obviously bad idea?

    --
    http://alternatives.rzero.com/
  7. Wait.... by yoblin · · Score: 3, Funny

    Great, so I'll be able to use Facebook Connect to login to my bank accounts soon????? Count me in!!!!!!

    1. Re:Wait.... by Pieroxy · · Score: 4, Funny

      Better yet! I can post my bank account balance on facebook in one click! And my actions portfolio! My credit rating! Yeeeeeaaah!!!!

  8. The password metaphor by tick-tock-atona · · Score: 3, Insightful

    What has always amazed me about authenication for access-control via a computer is the widespread use of "passwords". We treat computer access-control like it's a brand new problem, however it's really just the same old access-control problem that we solved at least 4000 years ago.

    Why don't we have passwords to get into our houses? Why don't we have passwords to get into our cars or P.O. boxes or even safe-deposit boxes? Because passwords are a pain in the ass that are inherently insecure because we, as humans, are terrible at remembering arbitrary strings of numbers/letters/symbols. What we are good at remembering - objects/ideas and the words associated with them - make for terrible passwords because they are so darn easy to guess.

    The idea of a lock and key is one which we have been using for millenia for security, so why haven't we applied this simple metaphor for electronic access-control. We even have the technology readily available: Public Key Authentication. But for some reason the only place I've ever seen it used is in OpenSSH. In fact, it's considered superior to password authentication in OpenSSH and recommended over a password.

    So why not have RSA keys to our email, online banking etc. just like we have keys to our houses, cars etc?