An alternative way of generating non dictionary passwords is to use letters from a given phrase that the user can remember.

A trivial example. Given the phrase Any sufficiently advanced technology is indistinguishable from magic (Arthur C. Clarke) you can make a password "Asatiifm," which is easy to remember, once you know the catchphrase. You can make the method a little bit more complicated, by instructing users to use the last letter from every odd word, and the number of letters for every even one. So the password could be "y12d10s17m5," again easy to remember from the above schema.

Don't expect the users to learn these kind of passwords on the spot, though. Some training is needed, but after a few lessons, they should be able to cope with the problem without forgetting the password and without being tempted to write it down.

Or you can borrow the idea in this article and implement some more complicated mechanism. More security, but more training needed. Your call.


In reply to Re: Words without a Dictionary by dbwiz
in thread Words without a Dictionary by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.