Slashdot Mirror


Applying Pavlovian Psychology to Password Management

Ars Technica reports on an interesting and sensible-sounding approach to password policy that I'd like to see adopted just about everywhere I have a password (which, these days, is quite a few). An excerpt: "For instance, a user who picks "test123@#" might be required to change the password in three days under the system proposed by Lance James, the head of the cyber intelligence group at Deloitte & Touche. The three-day limit is based on calculations showing it would take about 4.5 days to find the password using offline cracking techniques. Had the same user chosen "t3st123@##$x" (all passwords in this post don't include the beginning and ending quotation marks), the system wouldn't require a change for three months."

47 of 288 comments (clear)

  1. ObXKCD: Passphrases by tepples · · Score: 5, Interesting

    From the article: "Passcodes that have a length of 20 or more can contain any character type an end user wants, including all lower case letters." And sites like Phil's Hobby Shop have lowered "complexity" requirements for sufficiently long passwords. I'm glad the passphrase concept is catching on. To what extent can xkcd be credited with awareness of passphrases?

    1. Re:ObXKCD: Passphrases by Anonymous Coward · · Score: 3, Insightful

      Not a great extent. Most of us knew the math already, but it only works well when you really select randomly from a dictionary instead of making grammatically correct sentences or even personally chosen set of "random" words (from a limited vocabulary). Mixing passphrases and complex passwords works best. battery horse correct staJ&%v1ple

    2. Re:ObXKCD: Passphrases by sjwt · · Score: 2

      Not sure where you got your numbers from, nor how many words you think the english langue has...

      http://www.oxforddictionaries....
      lemmas - Instead of talking about words, it's more useful in this context to talk about lemmas, a lemma being the base form of a word. For example, climbs, climbing, and climbed are all examples of the one lemma climb.
      If we talk about the base of 95% of common lemmas, we are looking at over 50,000 words for a strength of 3 chosen randomly VS 1 printable ascii chrs(of 95)
      125,000,000,000,000 VS 95

      Sure, your 11 chrs = (and that's if you accept all 95 chrs) strenght comes in at VS 4 random lemma
      5,688,000,922,764,599,609,375 VS 6,250,000,000,000,000,000
      5.688e+18 VS 6.250e+19

      But 5 lemma will rock your world for
      312,500,000,000,000,000,000,000
      3.125e+20

      And i have no idea how 10 acsii chrs beats 10 lemma ..
      90,765,625,000,000,000,000,000,000,000,000,000,000,000,000,000, VS 59,873,693,923,837,890,625
      9.765e+46 VS 5.987e+16

      And let me reiterate, this is based of just lemma's, build a list of common lemmas, throw in common names, and other common words and you coudl be looking a list will over 150,000 to base your calculations on.

      --
      You have 5 Moderator Points!
      Which Helpless Linux zealot/MS basher do you want to mod down today?
  2. Why not? by msauve · · Score: 5, Funny

    all passwords in this post don't include the beginning and ending quotation marks

    Include the quotes, and be even more secure!

    --
    "National Security is the chief cause of national insecurity." - Celine's First Law
  3. Re:Preposterous by msauve · · Score: 2

    "highly resistant to bruit forcing"

    Especially if you misspell words!

    --
    "National Security is the chief cause of national insecurity." - Celine's First Law
  4. Writing passwords down by sinij · · Score: 2

    Sure, implement this and watch most of your userbase write passwords down and keep them on the side of the monitor or under the keyboard.

    1. Re:Writing passwords down by techno-vampire · · Score: 2

      Having a hint or reminder to your password is OK, I'd think, as long as it's clear to you, but obscure to anybody else. As an example, my laptop is named after a planet used in an SF series I like. Even if somebody guessed that, there are enough places, people and things in that series to keep the hint from being any help to anybody except me.

      --
      Good, inexpensive web hosting
    2. Re:Writing passwords down by ShanghaiBill · · Score: 5, Insightful

      Passwords are security through obscurity. We need a better system altogether.

      Absolute hogwash. That is not what "security through obscurity" means at all. Security through obscurity refers to security based on an algorithm being secret, not specific per-user information.

    3. Re:Writing passwords down by Opportunist · · Score: 2

      Erh... no.

      Basically, security distinguishes between key and lock. The lock is the "mechanism" of the security system. The algo that does the number crunching with your password and determines whether it lets you in or whether it does not. The key is the part that you know, have or are. In this case, the password.

      The key is ALWAYS something that you have to keep private. You have to keep your password secret and you have to keep your token with you and not hand it over to anyone. You might notice how I omit the "something you are" (i.e. biometric features) because (a pet peeve of mine) while good for IDENTIFICATION it is not useful for AUTHENTICATION. But I ramble.

      Security by obscurity now only applies to the lock part of the security system. If the inner workings of the lock can be published without compromising the security of the system, we're dealing with a sensible system.

      An example.

      I have a pin tumbler on my door. The system itself is well known, has been in use for ages, and of course it has been improved over and over. There are some flaws that allow(ed) breaking them (old locks are really anything but secure, trust me!), but some of the newer ones with the mushroom shaped pins are a bitch to pick. Let's assume we're dealing with a modern lock, possibly with magnets. Knowing about the lock would not really improve my chances to pick it. At best, it would convince me that I can't do it (I'm not the worlds best lockpicker, it's more a hobby of mine). The specs for the lock can easily be published and can be well known without compromising the security in the least.

      Of course, knowing what the key looks like (or, better, having one) would greatly improve my chances. Creating a copy of the key (or simply stealing it) would grant me access to whatever the lock wants to keep from me. So you have to keep that key secret, you have to keep it with you.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    4. Re:Writing passwords down by Opportunist · · Score: 3, Interesting

      That's why I actually have a password list on paper (yes, yes, despite of what I wrote only a few comments further up).

      At home, in my apartment. If you manage to break in here, whether you have my passwords is my least problem.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
    5. Re:Writing passwords down by Opportunist · · Score: 2

      For the longest time I used the serial numbers of various items on my desk. They're very convenient since they actually follow password requirements. Letters, numbers, special characters... it's all there.

      I had to get a new password from IT when my coworker sitting opposite of me got a new monitor, though.

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  5. Forcing password changes is never a good idea by wisnoskij · · Score: 5, Insightful

    Because all you are going to get is users deciding that they they cannot come up with a 10th password that year and just going picking "123456".

    "I'd like to see adopted just about everywhere I have a password (which, these days, is quite a few)"
    What a joke. If every site used this method I, and many other people, would need to change multiple passwords every single day of the year. The entire system would break down and become completely unmanageable

    --
    Troll is not a replacement for I disagree.
    1. Re:Forcing password changes is never a good idea by The+MAZZTer · · Score: 2

      I think the idea is you'd let the user know. "This password would take approximately 4.5 days to crack. For your security, you will be required to change this password after 3 days. Alternatively, you may pick a longer, more secure password to lengthen this interval (for example, a 16 character password will only require a change after XX years)." Or something.

    2. Re:Forcing password changes is never a good idea by Mr.+Slippery · · Score: 3, Insightful

      I think the idea is you'd let the user know. "This password would take approximately 4.5 days to crack....

      ..."if we are incompetent enough to divulge your encrypted password." So, how about you don't divulge my encrypted password, then?

      --
      Tom Swiss | the infamous tms | my blog
      You cannot wash away blood with blood
    3. Re:Forcing password changes is never a good idea by Maxo-Texas · · Score: 5, Insightful

      I struggle when I get a new phone or tablet...

      And then I have to remember the netflix, hulu, pandora, google, etc. etc. etc. password.

      And when I get it wrong-- I have to reset it.

      And then I have to change it on EVERY device.

      The other struggle is that

      SITE A REQUIRES CAPITALS.
      SiTe b treats capitals like lower case.
      Site c requires 1st letter capital.
      siTe d requires at least 1 capital.
      Site! e requires punctuation.
      Site~ f doesn't allow !'s.
      Site1 g requires at least 1 number
      5173 h requires only numbers

      SiteSite1 i Has the above restrictions but requires 8 or more letters.
      Sitesite j only allows 8 letters- but requires 4 or more
      Site k won't work with XKCD since it doesn't allow ' 's
      Site L has some permutation of these rules and won't let me reuse prior passwords- or double letters, or various other sequences, or english words in the dictionary-- so my password ends up being almost completely arbitrary.

      So these days-- I write algorithmic encoded passwords on paper.
      So you can look at the paper - and it doesn't mean anything to you. It's not a simple substitution cypher.

      But it still sucks when I buy a new device and have to change all the passwords for something before I started writing down passwords.

      Another thing password services (not job passwords) have is a duration of YEARS. I'm supposed to remember a password I created 7 years ago that met arbitrary rules- which they won't tell me now. Meh.

      --
      She was like chocolate when she drank... semi-sweet at first and then increasingly bitter.
    4. Re:Forcing password changes is never a good idea by AmiMoJo · · Score: 2

      That will just make people use the same password for everything, or need to use the password reminder function a lot.

      When most people need 20+ passwords (email, multiple PCs, forums, subscription sites, NetFlix, dozens of shopping sites, bank sites etc.) in their life the only conclusion is that passwords are not a good system. If we could get everyone to use a password safe it might help, but despite having been available for free for decades hardly anyone does.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
  6. They should go much further by fustakrakich · · Score: 2

    The computer will tase the users if they forget to change their passwords at the prescribed time. If they do remember, give them a biscuit, with a glass of milk if it's a strong password.

    --
    “He’s not deformed, he’s just drunk!”
  7. Grammar is overrated by tepples · · Score: 2

    As illustrated in the comic, your mind can end up constructing a "story" around whatever four words your Diceware spits out. So long as you can remember the story, it doesn't need to be grammatical.

    1. Re:Grammar is overrated by Mashiki · · Score: 4, Interesting

      As illustrated in the comic, your mind can end up constructing a "story" around whatever four words your Diceware spits out. So long as you can remember the story, it doesn't need to be grammatical.

      Bingo. Funny enough, I just finished doing a security job out in western canada(provincial government office) and moved them to passphrases. Funny how the number of "passes written on post-it-notes" dropped from "everywhere" to nowhere except the firebox safe. The safe of course is in it's own room, and requires two keys to open besides the combination. This of course also cut down on the intrusions into the network, because people simply "walking in" couldn't glean passwords that were posted in the open anymore.

      --
      Om, nomnomnom...
    2. Re:Grammar is overrated by pjt33 · · Score: 2

      I think you're in violent agreement with the post you're replying to. If you tell someone "Use a phrase rather than a word", they will come up with a grammatically correct sentence, which probably even makes sense at a semantic level. Tell them to use Diceware, and they're selecting randomly from a dictionary.

    3. Re:Grammar is overrated by AmiMoJo · · Score: 4, Informative

      The problem is that password crackers can now crack strings of words relatively easily. On page three of the article it even mentions that comic specifically as an example of what crackers can now break.

      Two factor authentication is the solution. If you can't use that then a long, random password stored in a password safe app is the best bet. Anything you can remember is crackable.

      --
      const int one = 65536; (Silvermoon, Texture.cs)
      SJW, n: "Someone I don't like, and by the way I'm a fuckwit" - AC
    4. Re:Grammar is overrated by geekmux · · Score: 2

      I think you're in violent agreement with the post you're replying to. If you tell someone "Use a phrase rather than a word", they will come up with a grammatically correct sentence, which probably even makes sense at a semantic level. Tell them to use Diceware, and they're selecting randomly from a dictionary.

      If you tell 95% of people "Use a phrase rather than a word", they will come up with a grammatically incorrect sentence, which probably doesn't even makes sense at an elementary level.

      There we go, FTFY...we seem to have a strong assumption about spelling and grammar skills here. Sadly, it has probably helped, since "passwerd wun" is probably more secure than "password one".

  8. Re:Preposterous by mysidia · · Score: 3, Interesting

    The battle to make users remember arbitrary characters isn't just foolish, it's insecure.

    Which is not what this is about. The article is about varying the password expiration by whatever password grading system you have chosen

    Without advocating a specific grading system.

    But there are some pretty decent grading systems that use a graph-based approach to calculate an approximation of time to crack, based on application of different cracking techniques to different substrings within the password.

    For example: for 3 common words strung together. You count the number of words in all the dictionaries that each word shows up in, and you figure time to crack for that substring as n/2; for each word, where n is the size of the smallest of the cracking reference dictionaries containing that word, and multiply those times together for the words strung together.

    For common variants such as leet substitution, applying a misspelling, appending a digit, prepending a symbol, changing a case....

    Of course, then, the approximate effect on crack time of all these things can be calculated.

    Appending a digit multiplies it by 10.0. Prepending a symbol multiplies it by 6.0. Alternating the case of some letters multiplies the strength of that word by 2.0

    Performing leet-speek substitution multiplies the strength of that word by 1.05

    Applying a misspelling, single letter substitution, or transposition to a word multiplies time to crack that word by 26.0, etc.

  9. Proliferation of two-factor means by tepples · · Score: 2

    There are many off-the-shelf two factor solutions today. Choose one.

    That's fine if you only ever sign into one web site that uses two-factor authentication. But if every web site you sign into during the day insists on a different off-the-shelf two-factor solution, or if one of the solutions is pay-per-use, it could get very expensive. One such pay-per-use method that has become popular is receiving a text message on a cell phone.

    1. Re:Proliferation of two-factor means by jonwil · · Score: 5, Insightful

      The problem with the use of SMS for 2-factor auth is not that you have to pay for the messages (paying for incoming text messages is an artifact of the horridly broken pricing model for US cellphone service) but that SMS is unreliable (I have had instances of SMS messages not getting through, especially if my phone happens to be switching cells or entering a dead zone at the time) and also that with more people doing so much internet stuff on their cellphones, having the second authentication factor being the same device you are using to log into the web site makes things a lot less secure.

    2. Re:Proliferation of two-factor means by BVis · · Score: 3, Funny

      Only in the US is it considered normal for the receiver to pay for incoming messages and calls.

      Why do you hate America?

      --
      Never underestimate the power of stupid people in large groups.
    3. Re:Proliferation of two-factor means by Albanach · · Score: 2

      So the real problem is really spam phone calls/texts and the failure of regulators to do something about it. Otherwise you could hand out your number with little risk attached.

      If the FCC made your provider liable for unwanted calls/texts after you request a number/provider stop calling you, the issue of junk calls/spam texts would be over in days.

  10. Because eventually it will be by tepples · · Score: 3, Informative

    Yes, we're assuming that the hashed password file has a substantial probability of getting leaked, just as it was in several other high-profile breaches (Sony, Target, etc.). If it's impossible for an inside job to leak the password file, then how can the system 1. use the password file to authenticate users and 2. back up the password file in case of hardware failure?

  11. Re: Too confusing to the average user? by blue+trane · · Score: 2

    Are they really more annoying than the popups and popunders and intrusive audio ads?

  12. Re:Makes sense only if hashed file is public by TubeSteak · · Score: 2

    But if your pw file isn't supposed to be public, then you're setting a policy assuming your system has been cracked and are passing bad math onto the users as annoyance.

    Dude, the first step to good security is to assume you've been compromised and then construct your defenses based on that assumption.
    It's called a defense in depth.

    Or to look at it from another angle: we all have locks on our homes, but you still wouldn't leave $10,000 in cash just sitting on the kitchen table, would you?
    Of course not, you'd hide it, preferably in a safe that's bolted to the floor.

    --
    [Fuck Beta]
    o0t!
  13. Huge massive gaping hole by EmperorOfCanada · · Score: 3, Interesting

    A very simple problem opened up by making users rapidly change their passwords is that they will frequently forget what they just changed them to. They will change it last minute on Friday to something genius and on Monday scratch their heads and go, "Crap". So now they are going to call tech support who will walk them through some crude verifications and give them a new password.

    A perfect example of this is a relative of mine who works for government. He was complaining about the frequent password changes he has to do. So I bet him that we could look under everyone's keyboard and find some passwords. Two of his people put them on post it notes under the keyboard, and another guy just had 30 passwords written on the bottom of his keyboard, which oddly provided some security as I couldn't guess which one was the newest.

    But the best part was that I bet that with my relatives wallet and his most recent pay stub that I could talk IT into resetting his password. So I called them up and they promptly walked me through resetting his password; but they didn't ask me a single question. So in the end I asked them how they knew I was me (him) and they said, it was because of what phone I was calling from. I asked what they would have asked had I been home and they said, birthday, maybe the office's postal code.

    So it wouldn't have mattered what genius password scheme they were using as the more genius it was the worse their social hacking problem would become.

    A different relative who works for a different branch of government could even log in without her key fob as all she had to do was phone IT and whine until they let her in from home.

    Now you might just wave your hand and say, no problem just bolster the security by telling them not to be nitwits. But those guys weren't being nitwits. In government or any large organization if you piss the wrong person off you will lose your job far faster than if someone hacks the system. So maybe for Sally secretary they might not be so persuaded but in the case of where I phoned in a forgotten password the person who should have been sitting at that desk could have an IT person's head very quickly. As could the other relative who whined past the need for a key fob.

  14. I just read an interesting story about Pavlov. by RevWaldo · · Score: 5, Funny

    One day Pavlov walked into a bar and ordered a cognac. He was about to take a sip when the barkeep rang him up. He dropped his glass and shouted "Shit! I've got to feed the dogs!" and ran out.

    .

  15. Re:Preposterous by stoploss · · Score: 5, Insightful

    +1 to this, using foreign language characters in a passphrase is a great idea, it makes things more secure since it increases the number of combinations hackers need to try (assuming they even have the foreign language characters in their data sets which I doubt they do)

    Enjoy being locked out when you realize that UTF8 != CP-1252 != UTF16LE, etc. Oh, and god help you if you need to use a different OS to login, or don't have rights on the given machine's account to change the input charset. And all this is before you get into the potential disconnect between the webapp's stated charset vs the backend password system's charset (your password text field input isn't being passed around as raw bytes no matter how much you might wish it to be, sorry).

    There is no hell like charset encoding. Yes, in some imaginary world where everyone dropped IPv4 when IPv6 came out, simply because it was the correct technical solution, your idea might work due to ubiquitous, end-to-end UTF8.

    Here in the real world, well, one time I got locked out of a shitty online banking system because I used a punctuation character in my chosen password while setting it and all non-alphanumerics were stripped from input in the login password field, thereby preventing me from ever being able to submit my chosen password.

    The real world is horrific and soul crushing.

  16. passwords by fyngyrz · · Score: 2

    Limit attempts to log in to any specific account to once every minute or so. Failure locks the account for a minute, so it doesn't matter what IP or console or program the request comes in from, etc., it's once per minute, period. That's 1440 attempts / day, max.

    Attempts to try every password will take forever on even a moderately stiff PW. So ensure passwords are at least moderately stiff. Or better.

    After some small number of failed attempts from one IP, blacklist the IP or console. After some small number of highly concurrent failed attempts from multiple IPs, blacklist all of them.

    This prevents using constant PW attempts as a trivial DOS and causes uniform attrition in botnets -- not only can that IP or console not attack that user, they can't attack any other, either.

    If you've allowed people to get ahold of your password hashes or lists, you're completely hammered. So create a password server that does nothing else. Provide hardened physical security for same. Create a custom hardware bridge that does nothing but handle passwords in a very specific manner, complete with the built-in delays. No other connectivity. Passwords are now as secure as your physical plant allows for.

    This puts the least load on the legit user and transfers such heavy work to the cracker that it becomes pointless to try. It's not even all that technically challenging.

    Now, making your actual application secure... that, apparently, is beyond the ability of most programmers today. Sigh.

    --
    I've fallen off your lawn, and I can't get up.
    1. Re:passwords by Opportunist · · Score: 2

      What I never understood was that there are usually only 2 "time" policies: Either don't limit the attempts per minute or lock people out for an arbitrary number of minutes after a failed try.

      Why not take into account that the normal (legit) user needs to type while the attacker would fire an automated tool against the login. Limiting it to 30 attempts a minute would not even be noticed by an average user typing his password while at the same time ensuring that it becomes virtually impossible to crack it with brute force (43200 attempts a day means to brute force a four letter password takes more than 5 days on average, 10 days to try them all. Provided you only use a-z lowercase, that is. Add upper case, numbers and some select special characters and three character passwords are enough to keep brute force at bay for 4 days average, 4 characters buy you a year).

      --
      We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  17. Re: Too confusing to the average user? by Your.Master · · Score: 2

    I don't understand the question. Those things are all annoying. Are you implying we have to pick one?

    Personally, I would say that they are more annoying than popups and popunders, because popups and popunders are conveniently encapsulated and marked as bullshit by virtue of being in their own unsolicited window. But less annoying than those autoplay audio ads for sure, which are a blight far beyond any advertising the Internet had ever seen before.

  18. Re:One elegant solution... is ours. by Zardus · · Score: 2

    I'm glad people are out there thinking about this. As I understand it, though, there are a couple of drawbacks to this specific approach.

    1. The unique identifier that now allows you to be tracked across each application you use. I guess this can be solved by having multiple IDs per app. You might want to consider this.
    2. "Pay per authentication"...
    3. Requirement for your phone to have connectivity. While this doesn't matter most of the time, it can be important when, for example, you're traveling abroad and don't have phone service.
    4. You need to be a trusted party for your users. If you're compromised, the whole system is screwed.

    Other approaches, such as Google Authenticator, provide 2FA without the requirements of connectivity, trackability, trust, or payment. The only advantage (and this is also quite a weakness) that I can see with your approach is that it's probably easier to replace a lost phone; just call you guys and have you reroute the passwords to a different app. The problem is that this opens the door to social engineering attacks (see #4).

    --
    You can mod your friends, you can mod your nose, but you can't mod your friend's nose.
  19. Don't bother remembering most passwords by GauteL · · Score: 2

    This should be the first thing you tell your mother or Aunt Tilly [tm].

    If you do the occasional shopping, email and Facebook usage you only really need to know one password; your email account. The others can be stored in your browser/app or reset if you ever forget. Having to do a password reset before doing your "once-a-year" ordering of photo-books is a minor inconvenience compared to having to remember loads of different passwords or worse; using the same password for all sites.

    Teach Aunt Tilly [tm] the typical password-reset procedure and tell her that she doesn't have to remember these passwords, so there's no need for the password to be simple.Shopping sites really should move away from using passwords anyway. They can store a token in your browser and perform a reset using your email address if you're using a browser without the token. They can also do periodic resets of the token.

    Just make sure that Aunt Tilly [tm] knows that there is one password that needs to be GOOD and she needs some way of remembering it; her email account. Having access to your email account would give criminals many great ways of screwing you over, since they can reset nearly all your passwords that way.

    If she really can't remember a complicated password, then writing it down on a piece of paper in her house is much less likely to cause her trouble than using "mathilda" or "whiskers" as her password.

  20. Re:Preposterous by truedfx · · Score: 2

    Another fun one is a password containing a backslash. To make matters worse, the customer support is not willing to reset the password, because the web site offers a way to retrieve the password already via e-mail, despite the fact that entering the exact password as it appears in the e-mail does not work. And the fact that the password can be retrieved at all (instead of only reset) is not a good sign either.

  21. Re:French for "noise" by Opportunist · · Score: 2

    Noisy forcing? Ah, like, say, an American standing in line behind you?

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  22. Re:Password in your wallet by Opportunist · · Score: 2

    It is one of the few things where I simply don't agree with Bruce. While it is no less secure than your CC, I consider the CC already a horrible security problem.

    What you do when you write down your password is that you turn "something you know" into "something you know OR something you have". And while security improves if you make it dependent on "something you know AND something you have" (as in ATM card+code), the OR there lowers your security.

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  23. Re: Too confusing to the average user? by Opportunist · · Score: 2

    Yes. It's way easier to adblock than to trollblock.

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  24. Re:Offline cracking by Opportunist · · Score: 2

    The whole issue starts at "why is offline cracking possible in the first place?".

    Offline cracking requires the attacker to have access not only to the machine (ok, in a time of VPN that's not as big a feat) but to the password database. If you assume or at least fear that a potential attacker can have access to the password database, and not only that but actually gain access without you noticing it immediately (else, just invalidate all pws when you notice it and be done with it), you have FAR bigger problems at your hands than figuring out password expiration dates.

    First things first. Dear CISO: Instead of bossing around your users with harebrained password changing chores (including the usually impossible to fulfill requirements akin to "100 letters, at least 20 numbers and not even similar to the last half a billion passwords that were used in the company"), do you fuckin' job and make sure that nobody can steal your pwdb!

    --
    We used to have a Bill of Rights. Now, with the rights gone, all we have left is the bill.
  25. Re:A Revelation for all by VGPowerlord · · Score: 2

    Here is wisdom. Let him that has understanding count the number of the beast: for it is the number of a man; and his number is Six hundred three score and six.

    Solve that for my Slashdot password.

    Dude, that password was so easy.

    I've updated your password to the answer to a new riddle:

    Why is a raven like a writing desk?

    Good luck spelling it correctly!

    --
    GLaDOS for President 2016! "Well here we are again. It's always such a pleasure." -- GLaDOS, 2011
  26. Unicode by stephenmac7 · · Score: 2

    Why don't most password systems support unicode passwords? Besides the small accessibility problem, I'd like someone to try to crack some japanese, chinese, thai, or arabic text, whether it makes sense or not.

    --
    "No man's life, liberty, or property are safe while the legislature is in session." -- Judge Gideon J. Tucker
  27. Re:Fed Up with useless security by damnbunni · · Score: 2

    So set your computer to not require a password at login, and not require unlocking when you wake the screen.

    And tell your email client to remember your password. Every one I've ever used (going back to the '80s) has been able to do that. If by some miracle yours isn't, get another one.

    Your web browser should be able to remember most of the other passwords for you.

    You're out of luck with the MMOs, however.

  28. Re:Password in your wallet by jbmartin6 · · Score: 2

    You may have missed his point. Writing down the passwords means you can use stronger passwords that you don't have to struggle to remember. The threat from brute forcing stolen hashes is much greater than the threat of having your wallet stolen by someone who is going to know what to do with the passwords.

    --
    This posting is provided 'AS IS' without warranty of any kind, implied or otherwise.