WO1996008757A1 - Improved method and system for proactive password validation - Google Patents

Improved method and system for proactive password validation Download PDF

Info

Publication number
WO1996008757A1
WO1996008757A1 PCT/US1994/010524 US9410524W WO9608757A1 WO 1996008757 A1 WO1996008757 A1 WO 1996008757A1 US 9410524 W US9410524 W US 9410524W WO 9608757 A1 WO9608757 A1 WO 9608757A1
Authority
WO
WIPO (PCT)
Prior art keywords
password
validation
characters
occurrence
bad
Prior art date
Application number
PCT/US1994/010524
Other languages
French (fr)
Inventor
Ravi Ganesan
Christopher I. Davies
Original Assignee
Bell Atlantic Network Services, Inc.
Priority date (The priority date is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the date listed.)
Filing date
Publication date
Application filed by Bell Atlantic Network Services, Inc. filed Critical Bell Atlantic Network Services, Inc.
Priority to AU78750/94A priority Critical patent/AU7875094A/en
Publication of WO1996008757A1 publication Critical patent/WO1996008757A1/en

Links

Classifications

    • GPHYSICS
    • G06COMPUTING; CALCULATING OR COUNTING
    • G06FELECTRIC DIGITAL DATA PROCESSING
    • G06F21/00Security arrangements for protecting computers, components thereof, programs or data against unauthorised activity
    • G06F21/30Authentication, i.e. establishing the identity or authorisation of security principals
    • G06F21/45Structures or tools for the administration of authentication
    • G06F21/46Structures or tools for the administration of authentication by designing passwords or checking the strength of passwords

Definitions

  • This invention relates to security passwords and more particularly to a method and system for proactively validating passwords.
  • the Kerberos Authentication Protocol (see Kohl, J.C. Neuman and J. Steiner, "The Kerberos Network Authentication Service", MIT Project Athena (October 8, 1990) Version 5, Draft 3), is also vulnerable to such dictionary attacks as, for reasons not relevant here, the protocol makes it possible for an adversary having a user password to request server access to encrypted messages. Further, by eavesdropping on the network, the adversary can also obtain additional encrypted messages which can be decrypted using the same exhaustive key search technique on Kj..
  • Karn and Feldmeier have discussed the size of the key space that can be searched using conventional techniques and technology. (See Karn, P.R. and D.C. Feldmeier, "UNIX password security - Ten years later", Advances in Cryptology - CRYPTO '89, G. Brassard (Ed.) Lecture Notes in Computer Science, Springer Verlag, 1990). Although this discussion is directed towards UNIX password security, the Karn and Feldmeier analysis is widely applicable to typical systems which have artificially small password key space and are therefore susceptible to a key search attack.
  • Protection against such attacks can be enhanced by either altering the system itself, for instance, as proposed by Bellovin and Merritt to secure Kerberos (see Bellovin, S. and M. Merritt, "Encrypted Key Exchange” IEEE Computer Society Symposium on Security and Privacy, May 1992, Oakland, CA. ) or enlarging the size of the likely password key space K x until it approaches the size of K, where K is very large.
  • Another approach to improving password security is to establish a system to select a random password of key space K for the user. This later approach, however, is particularly unfriendly to the user and can lead to users maintaining a written ledger of their passwords to avoid having to memorize a long and arbitrarily selected password.
  • a proactive password checker is often a component of a password changing program.
  • the checker attempts to validate the quality of a password chosen by the user before making the change.
  • the heart of a conventional proactive password checker is the maintenance of a dictionary of bad passwords against which the selected password is checked.
  • the Nagle system selects a three dimension boolean matrix, B [i, j, k] as the set of characteristics, C, where i, j and k correspond to the indices in a set.
  • the bad password dictionary is scanned. Each time a sequence of three consecutive characters, henceforth referred to as trigrams, is observed the corresponding bit in the boolean array is set. For example, the password abcdl will cause B [a,b,c], B [b,c,d] and B [c,d,other] to be set to 1. By scanning all the passwords in the dictionary many such bits will be set. After completion of the dictionary scan off-line (i.e., in non-real time), all trigrams from the bad passwords are extracted.
  • the proposed password is validated on- line (i.e., in real time) as a good password only if at least two trigrams do not have corresponding bits set in B.
  • the Nagle technique does an excellent job of screening most bad passwords. However, it does a poor job of screening bad noisy passwords.
  • the OPUS checking system is based on Bloom filters (see Spafford, E.H., "OPUS: Preventing Weak Password Choices", Purdue Technical Report CSC-TR 92-028, June 1991) which are commonly used in spelling checkers.
  • B [n] is selected as a boolean array of size N.
  • a set of hash functions H l t H 2 , ..., H D is selected.
  • each hash function assigns a number in the range 0...N.
  • Each bad password in the dictionary is run through all hash functions and for each of the hash functions a number, n i f is generated, and the bit in the boolean array B [n t ], is set.
  • a selected password is then run through the hash functions generating n lf n 2 ,...n D . If any of the boolean array bits generated by the selected password are not within the boolean array bits set by the bad passwords, then the selected password is validated. If all the generated boolean array bits are within the set, then it is likely that the selected password is in the dictionary and therefore should not be validated. However, there is a probability with the OPUS approach that a good password may be mistakenly identified as being in the dictionary of bad passwords. By increasing the size of the boolean array this probability can be reduced. Also appropriate selection of the hash functions will improve the accuracy of the OPUS system.
  • the OPUS approach will consistently recognize a selected password which is also a bad password in the selected dictionary of bad passwords. However, the OPUS approach does not recognize bad noisy passwords. It also requires a boolean array large enough to sufficiently reduce the probability that good passwords will be mistakenly identified as bad passwords. Because of the required size of the boolean array, reductions in the required storage capacity may be limited. Thus, it is an object of the present invention to provide a method and system to validate a chosen password before the selection is finalized. It is a further object of the present invention to provide a method and system for performing such validation without the need to store a dictionary of bad passwords and/or bad noisy passwords.
  • the present invention provides an improved method and system for password validation.
  • bad passwords comprised of one or more characters are identified.
  • the frequency of occurrence of all or selected bad password characters is then computed.
  • the probability of occurrence T, within the identified bad passwords, of the bad password characters is determined based upon the computed frequency of occurrence.
  • the validation password characters are compared with the probability of occurrence T of the bad password characters.
  • the validation password is either accepted (i.e., validated) or rejected based upon the correspondence between the validation password characters and the probability of occurrence T of the bad password characters.
  • the probability of occurrence T of the bad password characters can be represented by the mean and standard deviation for a set of log likelihood functions computed using the probability of occurrence T of the bad password characters.
  • the validation password characters can be represented by a set of log likelihood functions likewise computed using the probability of occurrence T of the bad password characters.
  • a test value BAp can be computed using the mean and standard deviation of the set of log likelihood functions for the bad password characters, and the set of log likelihood functions for the validation password. The test value, BAp, can then be compared with a threshold value to determine whether the validation password is acceptable.
  • a second order Markov model comprised of a common alphabet plus selected other characters is utilized in computing the probability of occurrence T of the bad password characters.
  • the Markov model will preferably contain twenty-eight characters. Because of the preference for a second order Markov model, both the bad password and validation password characters are accordingly used in the form of trigrams. Frequency of occurrence values of five or less are preferably adjusted. Applying the method in the preferred manner, the mean and standard deviation of the log likelihood function and the probability of occurrence T for the bad password characters would be computed off-line (i.e., in non-real time) and, along with the established validation threshold value, stored electronically.
  • the improved password validation system of the present invention includes a station for accessing a database of bad passwords having one or more characters, and directing those portions of the validation system which will preferably perform off-line (i.e., in non-real time).
  • the station, data base storage device and processing unit are linked such that the processor is able to access the database of bad passwords to compute a frequency of occurrence for the bad password characters.
  • the processor then computes a probability of occurrence T, within the bad passwords, of the bad password characters using the computed frequency of occurrence.
  • a processor which may be the same processor mentioned above or a different processor, but will be referred to as the second processor in this Summary, is used to compare, preferably on-line (i.e., in real time), the proposed password characters with the computed probability of occurrence T of the bad password characters.
  • the first mentioned processor may also be used to compute a set of log likelihood functions for the bad password characters using the computed probability of occurrence T.
  • the probability of occurrence T can be represented in the second processor by the mean and standard deviation of this set of log likelihood functions.
  • the second processor can be used to compute a set of log likelihood functions for the proposed password characters which can be used to represent the bad password characters in the comparison performed by the second processor.
  • the second processor can also be provided with the capability to compute a test value, BAp, based upon the mean and standard deviation of the log likelihood function for the bad password characters and the log likelihood function of the proposed password characters.
  • a validation threshold value can be accessed by the second processor and compared with the BAp value to determine if the proposed password is acceptable.
  • the first processor preferably includes the capability to adjust the frequency of occurrence of any bad password character which is computed to be less than or equal to five.
  • the first processor is used for computing the mean and standard deviation of the set of log likelihood functions for the bad password characters and the probability of occurrence T of bad password characters within the bad passwords and would preferably operate off-line (i.e., in non-real time).
  • the second processor which is used to compute the log likelihood function for the proposed password and the BAp value, to compare the BAp value to the threshold value and to notify the user of acceptance/rejection, preferably performs on-line (i.e., in real time) .
  • the system also includes a server, local hard disk or other electronic storage device upon which the mean and standard deviation values, the probability of occurrence T value and the validation threshold value are stored.
  • the second processor can then access this data once a proposed new password is identified.
  • the validation system of the present invention can be implemented as part of a local or wide area network or as part of single a stand-alone system configuration.
  • Fig. 1 illustrates an example of a Markov model
  • Fig. 2 is a flowchart illustrating the steps implemented off ⁇ line (i.e., in non-real time) in accordance with the method of the present invention
  • Fig. 3 is a flowchart illustrating the steps implemented on ⁇ line (i.e., in real time) in accordance with the method of the present invention.
  • Fig. 4 is a block diagram of a system for proactive password validation in accordance with the present invention.
  • the traditional pattern matching framework in most password validation systems is (i) to extract a set of characteristics, C, from a given bad password dictionary in an off-line single session mode and (ii) then, on a real time basis, to use test, T Tha, to determine if a chosen password has similar characteristics to C.
  • T v/ determines, preferably using statistical inference on the Markov chains, whether a given string of characters of a chosen password was generated by a given Markov model.
  • a Markov model M is a quadruple, [m,A,T,k], where m is the number of states in the model, A is the state space, T is the matrix of transition probabilities and k is the order of the chain.
  • M [3],[a,b,c], T, 1], where
  • a key characteristic of a K order Markov model is that the probability of transition T[a,b], depends only on the previous states that have been visited.
  • T[a,b] Prob (b,a).
  • FIG. 2 shows the method steps in accordance with the present invention, which are preferably performed off-line.
  • the probabilities in the transition probability matrix T can be computed.
  • the first step in making this computation is to select, in step 10, a dictionary of known bad passwords.
  • a medium sized dictionary of bad passwords (about 1 MB) is typically used, as this is adequate for most applications. If desired, a subset of the entire dictionary of bad passwords can be selected.
  • the bad password characters are identified in step 12. Assuming that the process reached the j state from the i state the transition probability T[i,j,k], which is the probability of a transition from the j state to the k state can be determined as follows: 1.
  • step 14 From the bad password characters identified in step 12, first compute, in step 14, the frequency matrix f for the bad passwords, where f[i,j,k] is the number of occurrences of a trigram (i.e., any three consecutive bad password characters) consisting of the i,j and k characters. For instance, the password, parsnips, yields the trigrams par, ars, rsn, sni, nip and ips.
  • f[i,j, ⁇ ] as the number of trigrams beginning with ij.
  • f[a,b, ⁇ ] would be the number of trigrams of the form aba, abb, abc, ... abSPC, abOTHER.
  • the performance of the system is effected because the trigram transition probability matrix will contain many zeros.
  • the Good-Turing technique of adjusting the frequencies is preferred.
  • step 20 comparison indicates that f[i,j,k] is less than or equal to 5 the frequency matrix f, including any adjusted frequency matrix f from step 22, is adjusted in step 24 as follows:
  • the transition probability T can now be computed in step 26, using, if applicable, as the adjusted frequency matrix f: ⁇ [i , j, k] f . j. k) (3) f ⁇ i , j , ⁇ )
  • T is commonly referred to as a maximum likelihood estimate of the transition probabilities.
  • the test, BAp uses a log-likelihood function for determining whether a given string of characters from password P belongs to a particular Markov chain.
  • the password P be depicted by p lf p 2 ...P ⁇ where 1 is the length of the password.
  • llf lim ( T[u, n, k ) + ltm ( T[n, k, w] ) + ln(T[J, w f o] ) + ln ( T[w, o, n] ) + In ⁇ T[o, n, OTHER] ) (5)
  • step 40 by comparing the bad password characters C established in step 26 with the characters of the password identified in step 36 as follows:
  • B ⁇ m * I 6 ' o
  • 1-2 is the number of trigrams formed by the identified password
  • ⁇ and the ⁇ are the estimated mean and standard deviation computed in respective steps 30 and 32 of Fig. 2.
  • the mean and standard deviation are calculated by computing the value of llf ⁇ 1-2 for every selected password in the bad password dictionary, D, from which the transition probability matrix, T, was computed, and then calculating the mean and standard deviation of the resulting values using conventional techniques.
  • BAp Due to the centering and normalizing, BAp has, by definition, a mean of zero and a standard deviation of 1. Knowing this, a threshold is preset in step 34 of Fig. 2, preferably at 2.6 times the standard deviation (i.e., ⁇ 2.6) so as to correspond to approximately 99% of the area under the standard normal curve. Accordingly, in step 42, any identified password that has a BAp value of less than -2.6 is accepted as a good password. Passwords close to the mean, i.e., 0, are preferably considered to be drawn from the bad password dictionary and hence considered unacceptable. Passwords with high values, e.g. +3.1, are also considered unacceptable since their characteristics are similar to those of the selected bad passwords.
  • test, BAp should be performed quickly and, therefore, preferably takes place in real time. Additionally it is beneficial if the storage space required on a system utilized in performing the test is keep small.
  • the present invention only the transition probability matrix, T, and the mean, ⁇ , the standard deviation, ⁇ , and the validity threshold value are required to be stored.
  • the mean, standard deviation, and the probability matrix T are all computed in non-real time.
  • the threshold is likewise established in non-real time. Accordingly, test, BAp, is performed in real time and only requires computation of llf for the proposed new password and then BAp, and thus requires minimal computation time.
  • the natural log function for bad passwords need not be computed in real time since, rather than storing the transition probabilities, T[i,j,k], it is possible to store ln(T[i,j,k] ) .
  • FIG. 4 is a block diagram representative of the system of the present invention. It will be understood by those skilled in the art that the present invention can implemented in any number of configurations and that the systems shown, in Figure 4, and hereinafter described, are exemplary of the types of systems encompassed by the present invention.
  • an administrator's station 102 is used to access, through interfaces 116 and 118, a bad password dictionary residing in local storage device 104 via local processing unit 106. All or a selected portion of the password characters are downloaded to the local processing unit 106 via interface 116.
  • Local processor 106 includes password processing capable of extracting, as described above, the desired characteristics from the selected bad passwords. Such processing preferably utilizes a second order Markov model.
  • Processor 106 first computes the frequencies of occurrence, f[i,j,k] and f[i,j, ⁇ ], of the bad password characters. Then, using the calculated frequencies of occurrence, processor 106 computes the probability of occurrence, T[i,j,k] of those same characters.
  • the password processing capability of local processor 106 may also include frequency adjustment capability for adjusting f[i,j,k] and f[i,j, ⁇ ] using, for example, the Good-Turing technique described above, prior to computing the probability of occurrence T.
  • the local processing unit 106 next computes a set of log likelihood functions llf for the selected bad password using the probability of occurrence T.
  • the estimated mean ⁇ and standard deviation ⁇ for the log likelihood function llf is next computed by processor 106.
  • the administrator can now download, using station 102, data files containing the computed probability of occurrence T, mean ⁇ and standard deviation ⁇ , along with a validity threshold value, to either a network storage device 108 via network processing unit 112 and LAN link 120 and interface 122 or to a local storage device 104 via local processor 106.
  • the administrator also establishes password test processing on the processing unit associated with the storage device on which the data files are stored (i.e., either processor 106 or 112).
  • a user password is selected and input through user input device 110 to the local processing unit 106 for verification via interface 124.
  • processing unit 106 uses the established password test processing, computes, as described above, the log likelihood function llf for the identified password after retrieving the transition probability matrix T from the local storage device 104 via interface 116.
  • Local processing unit 106 then computes BAp for the identified password after retrieving the mean ⁇ and standard deviation ⁇ from the local storage device 104. If the new password falls within the threshold value which is also retrieved from storage device 104, it is validated by processing unit 106 and notified to the user input device 110 from which the password was identified. The validated password is then transferred to network storage device 108 via LAN link 126 and local storage device 104 and referred to in conjunction with further requested access to local processing unit 106 and the LAN network.
  • the data files and password test processing are maintained on the network storage device 108 and network processing unit 112, respectively.
  • User passwords are selected and input through user input device 110 via local processing unit 106 to network processing unit 112 via the applicable interfaces and LAN link.
  • the selected password could also be input directly from user input device 114 to network processing unit 112 via LAN link 128 where dumb terminals are in use.
  • network processing unit 112 uses the established password test processing, computes the log likelihood function llf for the identified password after retrieving the transition probability matrix T from the network storage device 108.
  • Network processing unit 112 then calculates BAp for the identified password using the mean ⁇ and standard deviation ⁇ also retrieved from network storage device 108.
  • the new password falls within the validity threshold value retrieved by processing unit 112 from storage device 108, it is validated by processor 112 and notified to the user input device 110 or 114 from which the password was identified via the applicable communication link. The validated password is then transferred to and stored in network storage device 108 and referred to in conjunction with further requested access to the LAN.
  • the password processing capability can be implemented in part on local processing unit 106 and in part on network processing unit 112. Additionally, it will be understood by those skilled in the art that off-line processing could be performed using network processing unit 112 and network storage device 108 in lieu of local processing unit 106 and local storage device 104. Finally, the system of the present invention includes embodiments utilizing wide area networks as well as those which exclude networks all together.
  • the invention provides a proactive password validation method and system which will protect against the selection of bad passwords belonging to a dictionary of bad passwords as well as bad noisy passwords.
  • the on-line generation of bad noisy passwords is not required.
  • the method and system also do not require the storage of a dictionary of bad passwords or large amounts of data and can easily be installed in a distributed computing environment.
  • password validation can be performed quickly. After defining the bad password characteristics using a Markov model or other modelling technique, the actual validation of the proposed password can be performed on-line, in real time, using small amounts of computing power.

Abstract

An improved method for password validation comprising the steps of identifying bad passwords having one or more characters; computing a frequency of occurrence of bad password characters; computing a probability of occurrence T of the bad password characters within the bad passwords based upon the computed frequency of occurrence; identifying a proposed password having one or more characters; and comparing the proposed password characters with the probability of occurrence T of the bad password characters. The method further comprises the steps of establishing a validation threshold and validating the proposed password based upon the correspondence between (i) a value, BAp, reflecting the relationship between the probability of occurrence T of bad password characters within bad passwords and the proposed password characters and (ii) an established validation threshold. A Markov model is used to compute the probability of occurrence. The present invention also includes an improved password validation system.

Description

IMPROVED METHOD AND SYSTEM FOR PROACTIVE PASSWORD VALIDATION
TITLE OF THE INVENTION
IMPROVED METHOD AND SYSTEM FOR PROACTIVE PASSWORD VALIDATION
BACKGROUND OF INVENTION
Field Of The Invention This invention relates to security passwords and more particularly to a method and system for proactively validating passwords.
Description of the Related Art
Poorly chosen passwords continue to be a major cause of security breaches. The increasing popularity of such products as the Unix Operating System and the Kerberos Authentication Protocol in commercial environments accentuate this problem, as both are vulnerable to security breaches by dictionary attacks which search for poor passwords. Given the choice, most users choose passwords from a "likely password" key space, Kl t that is a small fraction of the entire key space, K, available to them. This smaller key space is typically composed of bad passwords and bad noisy passwords. Bad passwords are those chosen from natural language, jargon, acronyms, dates, or other numeric series, and/or derivatives thereof. Bad noisy passwords consist of a bad password plus noise (e.g. tiger2 or compquter) . The small size of K]., facilitates breaches of security through exhaustive searches of the "likely password" key space, which can be performed using conventional techniques and technologies that are well known in the art. For instance, in the Unix operating system (see Morris, R. and K. Thompson. "Password security: A case history", Communications of the ACM, 22(11), November 1979), user passwords are transformed using a one way function based upon the data encryption standard (DES) (see Data Encryption Standard, National Bureau of Standards, Federal Information Processing Standards, Publication No. 46-1 (January 15, 1977)), and then stored in a password file that is usually accessible to a number of individuals and is in all cases accessible to the administrators of the system to which the password provides access. As the one way function itself is not secret, an adversary can methodically apply this function to all words in Klf and then compare the results to those in the password file. The Kerberos Authentication Protocol (see Kohl, J.C. Neuman and J. Steiner, "The Kerberos Network Authentication Service", MIT Project Athena (October 8, 1990) Version 5, Draft 3), is also vulnerable to such dictionary attacks as, for reasons not relevant here, the protocol makes it possible for an adversary having a user password to request server access to encrypted messages. Further, by eavesdropping on the network, the adversary can also obtain additional encrypted messages which can be decrypted using the same exhaustive key search technique on Kj..
The size of the key space that can be searched efficiently by an adversary is much larger than is usually believed by most users. Karn and Feldmeier have discussed the size of the key space that can be searched using conventional techniques and technology. (See Karn, P.R. and D.C. Feldmeier, "UNIX password security - Ten years later", Advances in Cryptology - CRYPTO '89, G. Brassard (Ed.) Lecture Notes in Computer Science, Springer Verlag, 1990). Although this discussion is directed towards UNIX password security, the Karn and Feldmeier analysis is widely applicable to typical systems which have artificially small password key space and are therefore susceptible to a key search attack. Protection against such attacks can be enhanced by either altering the system itself, for instance, as proposed by Bellovin and Merritt to secure Kerberos (see Bellovin, S. and M. Merritt, "Encrypted Key Exchange" IEEE Computer Society Symposium on Security and Privacy, May 1992, Oakland, CA. ) or enlarging the size of the likely password key space Kx until it approaches the size of K, where K is very large. Another approach to improving password security is to establish a system to select a random password of key space K for the user. This later approach, however, is particularly unfriendly to the user and can lead to users maintaining a written ledger of their passwords to avoid having to memorize a long and arbitrarily selected password.
A proactive password checker is often a component of a password changing program. The checker attempts to validate the quality of a password chosen by the user before making the change. In addition to checking the size of the password and whether the password is derived from commonly known user related information, the heart of a conventional proactive password checker is the maintenance of a dictionary of bad passwords against which the selected password is checked.
One problem with conventional checkers is that the dictionary of passwords can require tens of megabytes of storage space. Another problem is that in any distributed processing environment the dictionary may have to be replicated on several servers or processing units. A further problem with such systems is that the time to search the dictionary increases logarithmically with the number of bad passwords being stored within the dictionary. Further still, using such a dictionary to filter out bad noisy passwords is difficult. Proactive password checking systems are based on the philosophy that, with sufficient guidance, users can select passwords from a fairly large key space, which are not likely to be guessed or otherwise broken in the course of a key search attack. Conventional proactive password checking systems interact with the user, explain the type of passwords that are desirable, check for the appropriate password size and mix of upper and lower case letter characters, numerals and special characters, check if the password is drawn from the user's name or other user specific information, and finally check if the password is in a dictionary of bad passwords, (see Bishop, M. , "Proactive Password Checking", 4th Workshop on Computer Security Incident Handling, August 1992). Two conventional proactive password checking systems have been proposed to reduce the storage space required to check a selected password against a dictionary of bad passwords. Both follow conventional pattern matching frameworks (see Ganesan, R. and A. Sherman, "Statistical Techniques for Language Recognition: An Introduction and Guide for Cryptanalysis" , TR CS-93-2, University of Maryland, 1993). Using this framework a set of characteristics, C, is first extracted from a given dictionary of bad passwords. To save space, C must be smaller than the dictionary itself. Next, a test, T„, is used to determine if a given password has characteristics similar to C. These checking systems differ however in the characteristics, C, extracted from the dictionary and consequently the test, T„, used to determine whether or not the selected password is good or bad.
The Nagle system selects a three dimension boolean matrix, B [i, j, k] as the set of characteristics, C, where i, j and k correspond to the indices in a set. Next, the bad password dictionary is scanned. Each time a sequence of three consecutive characters, henceforth referred to as trigrams, is observed the corresponding bit in the boolean array is set. For example, the password abcdl will cause B [a,b,c], B [b,c,d] and B [c,d,other] to be set to 1. By scanning all the passwords in the dictionary many such bits will be set. After completion of the dictionary scan off-line (i.e., in non-real time), all trigrams from the bad passwords are extracted. The proposed password is validated on- line (i.e., in real time) as a good password only if at least two trigrams do not have corresponding bits set in B. The Nagle technique does an excellent job of screening most bad passwords. However, it does a poor job of screening bad noisy passwords.
The OPUS checking system is based on Bloom filters (see Spafford, E.H., "OPUS: Preventing Weak Password Choices", Purdue Technical Report CSC-TR 92-028, June 1991) which are commonly used in spelling checkers. Using the OPUS approach, B [n] is selected as a boolean array of size N. Next, a set of hash functions Hl t H2, ..., HD is selected. For a given password, each hash function assigns a number in the range 0...N. Each bad password in the dictionary is run through all hash functions and for each of the hash functions a number, ni f is generated, and the bit in the boolean array B [nt], is set. A selected password is then run through the hash functions generating nlf n2,...nD. If any of the boolean array bits generated by the selected password are not within the boolean array bits set by the bad passwords, then the selected password is validated. If all the generated boolean array bits are within the set, then it is likely that the selected password is in the dictionary and therefore should not be validated. However, there is a probability with the OPUS approach that a good password may be mistakenly identified as being in the dictionary of bad passwords. By increasing the size of the boolean array this probability can be reduced. Also appropriate selection of the hash functions will improve the accuracy of the OPUS system. By its nature, the OPUS approach will consistently recognize a selected password which is also a bad password in the selected dictionary of bad passwords. However, the OPUS approach does not recognize bad noisy passwords. It also requires a boolean array large enough to sufficiently reduce the probability that good passwords will be mistakenly identified as bad passwords. Because of the required size of the boolean array, reductions in the required storage capacity may be limited. Thus, it is an object of the present invention to provide a method and system to validate a chosen password before the selection is finalized. It is a further object of the present invention to provide a method and system for performing such validation without the need to store a dictionary of bad passwords and/or bad noisy passwords. It is a still further object of this invention to provide a method and system for validation which does not require a large database of information to be stored on a server or other storage device for use in the validation process. It is another object of this invention to provide a method and system which can be utilized to quickly perform password validation. It is yet another objective of this invention to provide a method and system for proactively checking against bad noisy passwords without having to generate the bad noisy passwords on-line.
Additional objects, advantages and novel features of the invention will become apparent to those skilled in the art upon examination of the following as well as by practice of the invention. While the invention is described below with reference to preferred embodiments for proactive validation of passwords, it should be understood that the invention is not limited thereto. Those of ordinary skill in the art having access to the teachings herein will recognize additional applications, modifications and embodiments in other fields (including, but not limited to, those relating to smart cards, automatic tellers and automatic locks), which are within the scope of the present invention as disclosed and claimed herein and in which the present invention could be of significant utility.
SUMMARY OF THE INVENTION The present invention provides an improved method and system for password validation. In accordance with the invention bad passwords comprised of one or more characters are identified. The frequency of occurrence of all or selected bad password characters is then computed. Next, the probability of occurrence T, within the identified bad passwords, of the bad password characters is determined based upon the computed frequency of occurrence. After a validation password has been identified, the validation password characters are compared with the probability of occurrence T of the bad password characters. The validation password is either accepted (i.e., validated) or rejected based upon the correspondence between the validation password characters and the probability of occurrence T of the bad password characters.
In accordance with the invention the probability of occurrence T of the bad password characters can be represented by the mean and standard deviation for a set of log likelihood functions computed using the probability of occurrence T of the bad password characters. The validation password characters can be represented by a set of log likelihood functions likewise computed using the probability of occurrence T of the bad password characters. Additionally a test value BAp can be computed using the mean and standard deviation of the set of log likelihood functions for the bad password characters, and the set of log likelihood functions for the validation password. The test value, BAp, can then be compared with a threshold value to determine whether the validation password is acceptable.
Preferably a second order Markov model comprised of a common alphabet plus selected other characters is utilized in computing the probability of occurrence T of the bad password characters. If the English language is of interest, the Markov model will preferably contain twenty-eight characters. Because of the preference for a second order Markov model, both the bad password and validation password characters are accordingly used in the form of trigrams. Frequency of occurrence values of five or less are preferably adjusted. Applying the method in the preferred manner, the mean and standard deviation of the log likelihood function and the probability of occurrence T for the bad password characters would be computed off-line (i.e., in non-real time) and, along with the established validation threshold value, stored electronically. After identification of a validation password the computation of the log likelihood function for the validation password and the BAp value, and the comparison of the BAp value with the threshold value are performed on-line (i.e., in real time). The improved password validation system of the present invention includes a station for accessing a database of bad passwords having one or more characters, and directing those portions of the validation system which will preferably perform off-line (i.e., in non-real time). The station, data base storage device and processing unit are linked such that the processor is able to access the database of bad passwords to compute a frequency of occurrence for the bad password characters. The processor then computes a probability of occurrence T, within the bad passwords, of the bad password characters using the computed frequency of occurrence. The same or a different station may be used to input into the system a proposed password for validation. A processor, which may be the same processor mentioned above or a different processor, but will be referred to as the second processor in this Summary, is used to compare, preferably on-line (i.e., in real time), the proposed password characters with the computed probability of occurrence T of the bad password characters.
The first mentioned processor may also be used to compute a set of log likelihood functions for the bad password characters using the computed probability of occurrence T. The probability of occurrence T can be represented in the second processor by the mean and standard deviation of this set of log likelihood functions. Similarly the second processor can be used to compute a set of log likelihood functions for the proposed password characters which can be used to represent the bad password characters in the comparison performed by the second processor.
The second processor can also be provided with the capability to compute a test value, BAp, based upon the mean and standard deviation of the log likelihood function for the bad password characters and the log likelihood function of the proposed password characters. A validation threshold value can be accessed by the second processor and compared with the BAp value to determine if the proposed password is acceptable. The first processor preferably includes the capability to adjust the frequency of occurrence of any bad password character which is computed to be less than or equal to five.
The first processor, as noted above, is used for computing the mean and standard deviation of the set of log likelihood functions for the bad password characters and the probability of occurrence T of bad password characters within the bad passwords and would preferably operate off-line (i.e., in non-real time). On the other hand, the second processor which is used to compute the log likelihood function for the proposed password and the BAp value, to compare the BAp value to the threshold value and to notify the user of acceptance/rejection, preferably performs on-line (i.e., in real time) .
The system also includes a server, local hard disk or other electronic storage device upon which the mean and standard deviation values, the probability of occurrence T value and the validation threshold value are stored. The second processor can then access this data once a proposed new password is identified. The validation system of the present invention can be implemented as part of a local or wide area network or as part of single a stand-alone system configuration. BRIEF DESCRIPTION OF THE DRAWINGS
Fig. 1 illustrates an example of a Markov model;
Fig. 2 is a flowchart illustrating the steps implemented off¬ line (i.e., in non-real time) in accordance with the method of the present invention;
Fig. 3 is a flowchart illustrating the steps implemented on¬ line (i.e., in real time) in accordance with the method of the present invention; and
Fig. 4 is a block diagram of a system for proactive password validation in accordance with the present invention.
DESCRIPTION OF THE PREFERRED EMBODIMENT
The traditional pattern matching framework in most password validation systems is (i) to extract a set of characteristics, C, from a given bad password dictionary in an off-line single session mode and (ii) then, on a real time basis, to use test, T„, to determine if a chosen password has similar characteristics to C.
Before describing the preferred embodiment of the present invention it will be helpful to first discuss the Markov model, which is preferably used to extract a set of characteristics, C, in accordance with the present invention. For purposes of this discussion it is assumed that the bad password dictionary to be used was generated by a K order Markov model, and that characteristics, C, correspond to the transition probabilities of the model. Test, Tv/ in accordance with the present invention, determines, preferably using statistical inference on the Markov chains, whether a given string of characters of a chosen password was generated by a given Markov model.
An example of the Markov model is shown in Figure 1. Likely strings 1 can be generated by beginning in any state and following high probability transitions such as ab, be, ac, and ba from Figure 1. The unlikely strings 2 generated by this model contain zero transitions, for example aa, cc, cc, bb, aa of Figure 1.
A Markov model M is a quadruple, [m,A,T,k], where m is the number of states in the model, A is the state space, T is the matrix of transition probabilities and k is the order of the chain. In Figure 1, an example of such a model for the three character language shown is: M=[3],[a,b,c], T, 1], where
Figure imgf000013_0001
giving T [a,a]=0.0, T[a,b]=0.5, etc.
A key characteristic of a K order Markov model is that the probability of transition T[a,b], depends only on the previous states that have been visited. In a first order model the probability of a transition ending in state b depends only on the state from which the transition began (say a). Therefore T[a,b]=Prob (b,a). In a second order model, the probability of entering state b from state a also depends on the state of the process prior to entering a. For example, for state c, T[a,b]=Prob (b,ac) .
As Figure 1 illustrates, the state space very naturally corresponds to the alphabet of the natural language from which passwords are expected to be drawn.
Although the use of bigrams (i.e., a first order Markov model) is adequate for certain applications, the use of trigrams is preferred. A second order Markov model will give better overall results than a first order model. However, it should be noted that the size of the Markov chain that will need to be stored increases with increasing order of the Markov model. Thus for a first order model, the matrix may occupy about 5-6 KB of storage, while for a second order model it could occupy 175 KB. Referring now to Figure 2 which shows the method steps in accordance with the present invention, which are preferably performed off-line. The present invention preferably uses a state space size of 28, where A=[a,b, ...z,SPC, OTHER]. No differentiation is made between lower and upper case letters, and numbers, special characters and control characters are mapped into the "OTHER" category which is then treated like any other character.
Having specified m. A, and k, the probabilities in the transition probability matrix T can be computed. The first step in making this computation is to select, in step 10, a dictionary of known bad passwords. A medium sized dictionary of bad passwords (about 1 MB) is typically used, as this is adequate for most applications. If desired, a subset of the entire dictionary of bad passwords can be selected. The bad password characters are identified in step 12. Assuming that the process reached the j state from the i state the transition probability T[i,j,k], which is the probability of a transition from the j state to the k state can be determined as follows: 1. From the bad password characters identified in step 12, first compute, in step 14, the frequency matrix f for the bad passwords, where f[i,j,k] is the number of occurrences of a trigram (i.e., any three consecutive bad password characters) consisting of the i,j and k characters. For instance, the password, parsnips, yields the trigrams par, ars, rsn, sni, nip and ips.
2. Next, for the bigram, ij, compute, in step 16, f[i,j,∞] as the number of trigrams beginning with ij. For example, f[a,b,∞] would be the number of trigrams of the form aba, abb, abc, ... abSPC, abOTHER. When a second order Markov model is used to obtain greater accuracy, the performance of the system is effected because the trigram transition probability matrix will contain many zeros. A number of different techniques for adjusting the transition probability matrix to deal with these zeros are known in the art. In accordance with the present invention, the Good-Turing technique of adjusting the frequencies is preferred. (See Good, I.J., "The Population Frequencies of ' Species and the Estimation of Population Parameters", Biometrika, Vol. 40, 1953.) Utilizing this technique, after computing f[i, j,∞] as described above, the adjusting proceeds in steps 18-24 as follows:
1. Compute, in step 18, values for an array R, where R[i] contains the number of times i occurs in frequency matrix f. For instance, if frequency matrix f contains 500 zero elements, then R[0] = 500. If desired, the distribution of R can be made smooth by conventional statistical techniques.
2. In step 20, if f[i,j,k] = 1, then proceed to step 22 and perform f[i,j,k]-0 in accordance with Katz's recommendation (See Katz, S.M., "Estimation of Probabilities from Sparse data for the Language Model of the IBM Speech Recognition System" , IEEE Transactions of Acoustics, Speech and Signal Processing, Vol. ASSP- 32, 1985).
3. When the step 20 comparison indicates that f[i,j,k] is less than or equal to 5 the frequency matrix f, including any adjusted frequency matrix f from step 22, is adjusted in step 24 as follows:
f l l ' J ' k] R [£ [i , j , k] ] (2)
The transition probability T can now be computed in step 26, using, if applicable, as the adjusted frequency matrix f: τ[i , j, k] f . j. k) (3) f { i , j , ∞)
Those skilled in the art will recognize that depending on the accuracy desired one could go directly from step 16 to step 26 without the frequency matrix adjustment performed in steps 18-24.
The above computation of T is commonly referred to as a maximum likelihood estimate of the transition probabilities.
Having completely parameterized the Markov model
M=[28, [a,b, ... ,z,SPC,OTHE ] , T, 1], the process of extracting the characteristics, C, from the dictionary has been accomplished. It will now be shown how to determine if a given password, P, has characteristics similar to C.
By modeling the dictionary as a Markov model, the question has been changed from (i) is the chosen password a bad password or bad noisy password to (ii) is the chosen password generated by the Markov model corresponding to the dictionary of bad passwords. Answering this question will require the use of only the transition probability matrix, T, from step 26 and the candidate password P which will be subsequently identified in step 36 (See Fig. 3).
The test, BAp, described below uses a log-likelihood function for determining whether a given string of characters from password P belongs to a particular Markov chain. Let the password P, be depicted by plf p2...Pι where 1 is the length of the password. Given a particular transition probability matrix, T, and a password, P, the log-likelihood function llf for the bad passwords as well as the chosen new password, is computed in steps 28 and 38 (See Fig. 3) by: 1-2 llf = ∑ ln <r[pi,pi,1,pi<.2] ) ( 4 ) i-i
For instance, for the password unknown2, llf is given by: llf = lim ( T[u, n, k ) + ltm ( T[n, k, w] ) + ln(T[J, wf o] ) + ln ( T[w, o, n] ) + In { T[o, n, OTHER] ) (5)
The "OTHER" character is treated like all other characters, except that it is actually used for any character which is not present in the alphabet used and SPC. Since the transition probabilities are, by definition, less than one and since the natural logs of the transition probabilities are summed, llf will always be negative or zero.
Referring now to Figure 3 which shows those steps preferably performed on-line (i.e., in real time), conventional statistical techniques of scaling, centering and normalizing are used in step 40 to complete the test, BAp, by comparing the bad password characters C established in step 26 with the characters of the password identified in step 36 as follows:
Bψ m =* I6' o where 1-2 is the number of trigrams formed by the identified password, and μ and the σ, are the estimated mean and standard deviation computed in respective steps 30 and 32 of Fig. 2. The mean and standard deviation are calculated by computing the value of llf ÷ 1-2 for every selected password in the bad password dictionary, D, from which the transition probability matrix, T, was computed, and then calculating the mean and standard deviation of the resulting values using conventional techniques.
Due to the centering and normalizing, BAp has, by definition, a mean of zero and a standard deviation of 1. Knowing this, a threshold is preset in step 34 of Fig. 2, preferably at 2.6 times the standard deviation (i.e., ±2.6) so as to correspond to approximately 99% of the area under the standard normal curve. Accordingly, in step 42, any identified password that has a BAp value of less than -2.6 is accepted as a good password. Passwords close to the mean, i.e., 0, are preferably considered to be drawn from the bad password dictionary and hence considered unacceptable. Passwords with high values, e.g. +3.1, are also considered unacceptable since their characteristics are similar to those of the selected bad passwords.
The test, BAp, described above with reference to Figure 3, should be performed quickly and, therefore, preferably takes place in real time. Additionally it is beneficial if the storage space required on a system utilized in performing the test is keep small. In this regard, using the present invention only the transition probability matrix, T, and the mean, μ, the standard deviation, σ, and the validity threshold value are required to be stored. The mean, standard deviation, and the probability matrix T are all computed in non-real time. The threshold is likewise established in non-real time. Accordingly, test, BAp, is performed in real time and only requires computation of llf for the proposed new password and then BAp, and thus requires minimal computation time. The natural log function for bad passwords need not be computed in real time since, rather than storing the transition probabilities, T[i,j,k], it is possible to store ln(T[i,j,k] ) .
Figure 4 is a block diagram representative of the system of the present invention. It will be understood by those skilled in the art that the present invention can implemented in any number of configurations and that the systems shown, in Figure 4, and hereinafter described, are exemplary of the types of systems encompassed by the present invention. In an embodiment for off¬ line processing, an administrator's station 102 is used to access, through interfaces 116 and 118, a bad password dictionary residing in local storage device 104 via local processing unit 106. All or a selected portion of the password characters are downloaded to the local processing unit 106 via interface 116. Local processor 106 includes password processing capable of extracting, as described above, the desired characteristics from the selected bad passwords. Such processing preferably utilizes a second order Markov model. Processor 106 first computes the frequencies of occurrence, f[i,j,k] and f[i,j,∞], of the bad password characters. Then, using the calculated frequencies of occurrence, processor 106 computes the probability of occurrence, T[i,j,k] of those same characters. The password processing capability of local processor 106 may also include frequency adjustment capability for adjusting f[i,j,k] and f[i,j,∞] using, for example, the Good-Turing technique described above, prior to computing the probability of occurrence T. The local processing unit 106 next computes a set of log likelihood functions llf for the selected bad password using the probability of occurrence T. The estimated mean μ and standard deviation σ for the log likelihood function llf is next computed by processor 106. The administrator can now download, using station 102, data files containing the computed probability of occurrence T, mean μ and standard deviation σ, along with a validity threshold value, to either a network storage device 108 via network processing unit 112 and LAN link 120 and interface 122 or to a local storage device 104 via local processor 106. The administrator also establishes password test processing on the processing unit associated with the storage device on which the data files are stored (i.e., either processor 106 or 112).
In an embodiment of the password test system of the present invention, a user password is selected and input through user input device 110 to the local processing unit 106 for verification via interface 124. Upon receipt of the identified password, processing unit 106, using the established password test processing, computes, as described above, the log likelihood function llf for the identified password after retrieving the transition probability matrix T from the local storage device 104 via interface 116. Local processing unit 106 then computes BAp for the identified password after retrieving the mean μ and standard deviation σ from the local storage device 104. If the new password falls within the threshold value which is also retrieved from storage device 104, it is validated by processing unit 106 and notified to the user input device 110 from which the password was identified. The validated password is then transferred to network storage device 108 via LAN link 126 and local storage device 104 and referred to in conjunction with further requested access to local processing unit 106 and the LAN network.
In another embodiment of the password test system of the present invention, the data files and password test processing are maintained on the network storage device 108 and network processing unit 112, respectively. User passwords are selected and input through user input device 110 via local processing unit 106 to network processing unit 112 via the applicable interfaces and LAN link. The selected password could also be input directly from user input device 114 to network processing unit 112 via LAN link 128 where dumb terminals are in use. Upon receipt of the identified password, network processing unit 112, using the established password test processing, computes the log likelihood function llf for the identified password after retrieving the transition probability matrix T from the network storage device 108. Network processing unit 112 then calculates BAp for the identified password using the mean μ and standard deviation σ also retrieved from network storage device 108. If the new password falls within the validity threshold value retrieved by processing unit 112 from storage device 108, it is validated by processor 112 and notified to the user input device 110 or 114 from which the password was identified via the applicable communication link. The validated password is then transferred to and stored in network storage device 108 and referred to in conjunction with further requested access to the LAN.
It will also be appreciated that the password processing capability can be implemented in part on local processing unit 106 and in part on network processing unit 112. Additionally, it will be understood by those skilled in the art that off-line processing could be performed using network processing unit 112 and network storage device 108 in lieu of local processing unit 106 and local storage device 104. Finally, the system of the present invention includes embodiments utilizing wide area networks as well as those which exclude networks all together.
As described above the invention provides a proactive password validation method and system which will protect against the selection of bad passwords belonging to a dictionary of bad passwords as well as bad noisy passwords. The on-line generation of bad noisy passwords is not required. The method and system also do not require the storage of a dictionary of bad passwords or large amounts of data and can easily be installed in a distributed computing environment. Utilizing the method or system, password validation can be performed quickly. After defining the bad password characteristics using a Markov model or other modelling technique, the actual validation of the proposed password can be performed on-line, in real time, using small amounts of computing power.

Claims

WHAT IS CLAIMED:
1. An improved method for password validation comprising the steps of:
(a) identifying bad passwords, wherein each said bad password is comprised of one or more characters; (b) computing a frequency of occurrence of said bad password characters;
(c) computing a probability of occurrence T, within said bad passwords, of the bad password characters using the computed frequency of occurrence; (d) identifying a validation password, wherein said validation password is comprised of one or more characters; and
(e) comparing said validation password characters with the probability of occurrence T of the bad password characters.
2. An improved method for password validation according to claim 1, further comprising the steps of (i) computing a first set of log likelihood functions llfj for the bad password characters using the computed probability of occurrence T; (ii) computing a mean μ and standard deviation σ for said first set of log likelihood functions llf-,; and (iii) computing a second set of log likelihood functions llf2 for the validation password characters using the computed probability of occurrence T; wherein in the comparing step the probability of occurrence T of the bad password characters is represented by the mean μ and the standard deviation σ and the validation password characters are represented by said second set of log likelihood functions llf2.
3. An improved method for password validation according to claim 2, wherein said step of comparing is comprised of the steps of (i) computing BAp using the equation llf-.
BAp = 1-x
where 1-x is a numeric value related to the number of validation password characters; (ii) establishing a validation threshold value; and (iii) accepting or rejecting said validation password based upon the correspondence between BAp and the validation threshold value.
. An improved method for password validation according to claim 3, wherein the validation threshold value is -2.6.
5. An improved method for password validation according to claim 1, wherein the step of computing the probability of occurrence T is performed using a Markov model comprised of a common alphabet plus selected other characters.
6. An improved method for password validation according to claim 5, wherein said Markov model is a second order model.
7. An improved method for password validation according to claim 5, wherein said common alphabet plus selected other characters is comprised of twenty-eight characters.
8. An improved method for password validation according to claim 1, wherein said bad password characters and said validation password characters are formed into trigrams.
9. An improved method for password validation according to claim 8, wherein said sets of log likelihood functions are computed using the equation 1-2 llf = ∑lιι<r[pJ,pi+1,pi+aJ}
2-1
where 1-2 is a numeric value corresponding to the number of trigrams formed by the validation password characters and pi7 pi+1 and ρt+2 represent the validation password characters forming a trigram.
10. An improved method for password validation according to claim 9, further comprising the step of adjusting the frequency of occurrence of certain of the bad password characters.
11. An improved method for password validation according to claim 10, wherein the step of adjusting the frequency of occurrence includes setting to zero each frequency of occurrence having a value equal to 1.
12. An improved method for password validation according to claim 11, wherein the step of adjusting the frequency of occurrence further includes the adjustment of each frequency of occurrence having a value of less than or equal to five.
13. An improved method for password validation according to claim 12, wherein the step of adjusting each frequency of occurrence with a value of less than or equal to five is performed using the equation f t i ,• M m. ( f [i , j , k) -r 1) x R [ ( f [i , j , k] + 1)] - L-i/ J i ΛJ ——Γ Γ * —.—, , ,
R [f [ι , , k] ] where f[i,j,k] is the frequency of occurrence of a trigram of the bad password characters and R is an array representing how often a particular one of the bad password characters occurs. 14. An improved method for password validation according to claim 3 further comprising the step of electronically storing the means μ, the standard deviation σ, the probability of occurrence T and the threshold valve.
15. An improved method for password validation according to claim 3, wherein the steps of computing the set of log likelihood functions llf2 and BAp and accepting or rejecting the validation password are performed in real time.
16. An improved password validation system comprising:
(a) means for accessing a data base of bad passwords, wherein each said bad password is comprised of one or more characters;
(b) means for computing a frequency of occurrence of said bad password characters;
(c) means for computing a probability of occurrence T, within said bad passwords, of the bad password characters using the computed frequency of occurrence;
(d) means for inputting a validation password to the system, wherein said validation password is comprised of one or more characters; and
(e) comparitor means for comparing said validation password characters with the probability of occurrence T of the bad password characters.
17. An improved password validation system according to claim 16, further comprising (i) means for computing a first set of log likelihood functions llf . for the bad password characters using the computed probability of occurrence T; (ii) means for computing a mean μ and standard deviation σ for said first set of log likelihood functions llf-.; and (iii) means for computing a second set of log likelihood functions llf2 for the validation password characters using the computed probability of occurrence T; wherein the comparitor means utilizes the mean μ and the standard deviation σ to represent the probability of occurrence T of the bad password characters, and the second set of log likelihood functions llf2 to represent the validation password characters.
18. An improved password validation system according to claim 17, wherein said comparitor means is comprised of (i) means for computing BAp which implements the equation
Figure imgf000026_0001
where 1-x is a numeric value related to the number of validation password characters; (ii) means for accessing a validation threshold value; and (iii) means for accepting or rejecting said validation password based upon the correspondence between BAp and the validation threshold value.
19. An improved password validation system according to claim 18, wherein the validation threshold value is -2.6.
20. An improved password validation system according to claim 16, wherein the means for computing the probability of occurrence T utilizes a Markov model comprised of a common alphabet plus selected other characters.
21. An improved password validation system according to claim 20, wherein said Markov model is a second order model.
22. An improved password validation system according to claim 20, wherein said common alphabet plus selected other characters is comprised of twenty-eight characters. 23. An improved password validation system according to claim 18, wherein, the validation password characters are in the form of trigrams and said means for computing sets of log likelihood functions implements the equation
2-2 llf s ∑ lrj. ( T[pl tp^l t ^2)
Figure imgf000027_0001
where 1-2 is a numeric value corresponding to the number of trigrams formed by the validation password characters and pt, p1+- and p1+2 represent the validation password characters forming a trigram.
24. An improved password validation system according to claim
23, further comprising means for adjusting the frequency of occurrence of certain of the bad password characters.
25. An improved password validation system according to claim
24, wherein the means for adjusting the frequency of occurrence sets to zero each frequency of occurrence having a value equal to 1.
26. An improved password validation system according to claim
25, wherein the means for adjusting the frequency of occurrence further adjusts each frequency of occurrence having a value of less than or equal to five.
27. An improved password validation according to claim 26, wherein the means for adjusting each frequency of occurrence with a value of less than or equal to five implements the equation f i -: M _ i f li . j . k] + l) x R [ (f [i , j, k] + 1)] f ' J ' k] R [f [i , j, k] } where f[i,j,k] is the frequency of occurrence of a trigram of th bad password characters and R is an array representing how often particular one of the bad password characters occurs.
28. An improved password validation system according to clai 18, wherein the means for computing the set of log likelihoo functions llf2 and BAp and the means for accepting or rejecting th validation password perform on-line and_in real time.
29. An improved password validation system according to clai
28, further comprising means for electronically storing the mean μ the standard deviation σ, the probability of occurrence T and th validation threshold valve.
30. An improved password validation system according to clai
29, wherein said electronic storage means resides in a centra server.
31. An improved password validation system according to clai
30, wherein said server is part of a local or wide area network.
32. An improved password validation system according to clai 18, wherein said means for computing the set of log likelihoo functions llf2 and BAp and said means for accepting or rejectin the validation password are part of a central security processor
PCT/US1994/010524 1994-09-17 1994-09-19 Improved method and system for proactive password validation WO1996008757A1 (en)

Priority Applications (1)

Application Number Priority Date Filing Date Title
AU78750/94A AU7875094A (en) 1994-09-17 1994-09-19 Improved method and system for proactive password validation

Applications Claiming Priority (2)

Application Number Priority Date Filing Date Title
US12185294A 1994-09-17 1994-09-17
US08/121,852 1994-09-17

Publications (1)

Publication Number Publication Date
WO1996008757A1 true WO1996008757A1 (en) 1996-03-21

Family

ID=22399186

Family Applications (1)

Application Number Title Priority Date Filing Date
PCT/US1994/010524 WO1996008757A1 (en) 1994-09-17 1994-09-19 Improved method and system for proactive password validation

Country Status (2)

Country Link
AU (1) AU7875094A (en)
WO (1) WO1996008757A1 (en)

Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5394471A (en) * 1993-09-17 1995-02-28 Bell Atlantic Network Services, Inc. Method and system for proactive password validation

Patent Citations (1)

* Cited by examiner, † Cited by third party
Publication number Priority date Publication date Assignee Title
US5394471A (en) * 1993-09-17 1995-02-28 Bell Atlantic Network Services, Inc. Method and system for proactive password validation

Non-Patent Citations (3)

* Cited by examiner, † Cited by third party
Title
"Passphrase Filter for Detection / Rejection of Weak User-Selected Passphrases", IBM TECHNICAL DISCLOSURE BULLETIN, vol. 35, no. 2, July 1992 (1992-07-01), NEW YORK, US;, pages 95 - 100 *
E.H.SPAFFORD: "Preventing Weak Password Choices", PURDUE TECHNICAL REPORT CSD-TR-91-028, 1 March 1991 (1991-03-01), PURDUE UNIVERSITY, US;, pages 1 - 9 *
J.HIETANIEMI: "ipasswd -Proactive Password Security", PROCEEDINGS OF THE SIXTH SYSTEMS ADMINISTRATION CONFERENCE (LISA VI), 23 October 1992 (1992-10-23), LONG BEACH, US;, pages 105 - 114 *

Also Published As

Publication number Publication date
AU7875094A (en) 1996-03-29

Similar Documents

Publication Publication Date Title
US5394471A (en) Method and system for proactive password validation
US5850448A (en) Programmed computer for generating pronounceable security passwords
US6076167A (en) Method and system for improving security in network applications
US7386892B2 (en) Method and apparatus for detecting password attacks using modeling techniques
US7540021B2 (en) System and methods for an identity theft protection bot
CN111327608B (en) Application layer malicious request detection method and system based on cascade deep neural network
CN112910859B (en) Internet of things equipment monitoring and early warning method based on C5.0 decision tree and time sequence analysis
CN106060008B (en) A kind of network intrusions method for detecting abnormality
Sheng et al. A biometric key generation method based on semisupervised data clustering
CA2653204C (en) An automated adaptive method for identity verification with performance guarantees
Bergadano et al. High dictionary compression for proactive password checking
Sheng et al. Template-free biometric-key generation by means of fuzzy genetic clustering
CN116776386B (en) Cloud service data information security management method and system
Ciaramella et al. Neural network techniques for proactive password checking
CN111144546B (en) Scoring method, scoring device, electronic equipment and storage medium
Hartloff et al. Security analysis for fingerprint fuzzy vaults
US7099498B2 (en) Minutiae matching system and method
WO1996008757A1 (en) Improved method and system for proactive password validation
CN107943754B (en) Heterogeneous redundancy system optimization method based on genetic algorithm
Burbea et al. The information metric for univariate linear elliptic models
CN114726634A (en) Hacker attack scene construction method and equipment based on knowledge graph
CN113411339A (en) Password file leakage detection method based on zero factor graph sequence
CN112580021B (en) Traditional password strength scoring method
Taneski Effectiveness of Proactive Password Checker Based on Markov Models
CN114553504B (en) Third party secure login method

Legal Events

Date Code Title Description
AK Designated states

Kind code of ref document: A1

Designated state(s): AU BR CA CN JP KR RU UA

AL Designated countries for regional patents

Kind code of ref document: A1

Designated state(s): AT BE CH DE DK ES FR GB GR IE IT LU MC NL PT SE

121 Ep: the epo has been informed by wipo that ep was designated in this application
122 Ep: pct application non-entry in european phase
NENP Non-entry into the national phase

Ref country code: CA