Slashdot Mirror


Real Security?

An anonymous reader writes "A recent article at Ask Tog raised the common argument about how much security is good. Tog says: 'I've been watching security people for years as they've slowly increased the security of everything they can get their hands on until any idiot can wander in.' Is this the case? Are we increasing security too much, so that the users circumvent it? Should we be allowing simple passwords?"

4 of 557 comments (clear)

  1. Re:Definitely by Prof.+Pi · · Score: 5, Informative

    A pretty easy way to generate passwords that pass most picky password approval checkers is to take a phrase that you can easily remember, and then take the first letter of each word. Include punctiation to get the requisite non-alphanumeric characters. Make at least one numeric substitution if you're required to have a number. For instance:

    N4N.Stm.

    ("News for Nerds. Stuff that matters.")

  2. Re:Two minds about it by Carnildo · · Score: 5, Informative

    Voice recognition can by bypassed by a $10 piece of technology known as a "tape recorder".

    And it can fail to recognize a valid user if they happen to have a sore throat.

    --
    "They redundantly repeated themselves over and over again incessantly without end ad infinitum" -- ibid.
  3. Re:Forced password changes by mo26101 · · Score: 5, Informative

    About a decade ago, I was a software deveopler working in a building with 2000 users. Back then we wrote apps for win 3.1. Most users 10 years ago were even more clueless that users today, so we often had to install software for them. We would show up and tell them that we need to install something, they would then usually say fine and go take a coffee break. Being win 3.1 we almost always had to reboot for one reason or another in the install. This would then leave us needing to log back on the users computer with the user not there. At this company passwords had to be changed every 30 days and include both letter and numbers. Nobody could remember there password, so when we needed to login and the user was not there, we would just open there top desk drawer. 9 times out of 10 the password was written on a sheet of paper in the drawer. It was amazing how many people did this.

  4. Re:Two minds about it by jonadab · · Score: 5, Informative

    > thisismylongasspassword

    That's better than you think. My /usr/share/dict/words has over 45000 words
    in it, which is probably typical. The above password is six words long (which
    if anything is pretty short, as sentences go). That means you can brute force
    it in about (45000^6)/2 tries, on average. Compare that to a typical "strong"
    eight-character password (e.g., "bVi-Q*cY"), which can be brute forced in
    (N^8)/2 tries, on average, where N is about 100 or 200 or so, depending on
    your character set. The sentence starts looking pretty good -- and it's a
    *lot* easier to remember.

    > thi!$1smyp4$s

    Yes, increasing the length to over 12 characters greatly improves the security
    of a traditional ugly password. (N^13)/2 is about N^5 times better than
    (N^8)/2, so with an N of around 80 characters (upper and lower case letters,
    digits, and about 20 common printable punctuation marks) that's about a
    three-billion-fold improvement in the time needed to brute-force it.

    I personally tend to favour a combination of these approaches. Take your
    sentence (say, "I tend to favour a combination of these approaches.", make
    a handful of key substitutions, and you get a password like this:
    I-t3nd-2-PHavour-a-c0mbinat|on-0f-these-app roacheZ

    The sentence is easy to remember. In addition to the sentence, you have in
    the above example seven substitutions. That's a total of eight things to
    remember, barely (if at all) harder than tB8k^yQp and pretty much impossible
    to brute force. (If you do the arithmetic on this sucker, it's impressive.
    Even assuming a clever modified dictionary attack, the sentence is nine
    words long (nine *words*, not nine chars), and furthermore there are
    several possible ways to mangle each word. The mere electricity your CPUs
    would use up running the possibilities boggles the mind; whatever the
    password is protecting, you could buy it cheaper.) Then you have to worry
    about things like sniffers, surveillance, and rubber hose cryptanalysis, if
    the password unlocks something worth anyone's trouble to bother with all that.

    --
    Cut that out, or I will ship you to Norilsk in a box.