/vt-password/tags/vt-password-2.0.2/src/main/java/edu/vt/middleware/password/PasswordChecker.java

http://vt-middleware.googlecode.com/ · Java · 190 lines · 116 code · 17 blank · 57 comment · 20 complexity · 8834691b0adfb78d5b0033131b6faff4 MD5 · raw file

  1. /*
  2. $Id: PasswordChecker.java 1253 2010-04-20 14:54:19Z dfisher $
  3. Copyright (C) 2003-2010 Virginia Tech.
  4. All rights reserved.
  5. SEE LICENSE FOR MORE INFORMATION
  6. Author: Middleware Services
  7. Email: middleware@vt.edu
  8. Version: $Revision: 1253 $
  9. Updated: $Date: 2010-04-20 16:54:19 +0200 (Tue, 20 Apr 2010) $
  10. */
  11. package edu.vt.middleware.password;
  12. import java.io.File;
  13. import java.util.ArrayList;
  14. import java.util.List;
  15. import edu.vt.middleware.dictionary.Dictionary;
  16. /**
  17. * <code>PasswordChecker</code> contains methods for setting pasword rules and
  18. * then determining if a password meets the requirements of all the rules.
  19. *
  20. * @author Middleware Services
  21. * @version $Revision: 1253 $ $Date: 2010-04-20 16:54:19 +0200 (Tue, 20 Apr 2010) $
  22. */
  23. public final class PasswordChecker
  24. {
  25. /** rules to apply when checking a password. */
  26. private List<PasswordRule> rules = new ArrayList<PasswordRule>();
  27. /**
  28. * This will add a new rule to the <code>PasswordChecker</code>.
  29. *
  30. * @param rule <code>PasswordRule</code> to add
  31. */
  32. public void addPasswordRule(final PasswordRule rule)
  33. {
  34. this.rules.add(rule);
  35. }
  36. /**
  37. * This will remove a rule from the <code>PasswordChecker</code>. This method
  38. * does nothing if the supplied rule does not exist.
  39. *
  40. * @param rule <code>PasswordRule</code> to remove
  41. */
  42. public void removePasswordRule(final PasswordRule rule)
  43. {
  44. this.rules.remove(rule);
  45. }
  46. /**
  47. * This will return all the rules currently being used by this <code>
  48. * PasswordChecker</code>.
  49. *
  50. * @return <code>List</code> of rules
  51. */
  52. public List<PasswordRule> getPasswordRules()
  53. {
  54. return this.rules;
  55. }
  56. /**
  57. * This will check the supplied password against the rules that have been
  58. * added to this <code>PasswordChecker</code>.
  59. *
  60. * @param password <code>Password</code> to check
  61. *
  62. * @return <code>boolean</code> - whether the supplied password met the
  63. * requirements of all rules
  64. *
  65. * @throws PasswordException if the supplied password does not meet all
  66. * requirements of all rules
  67. */
  68. public boolean checkPassword(final Password password)
  69. throws PasswordException
  70. {
  71. for (PasswordRule rule : this.rules) {
  72. if (!rule.verifyPassword(password)) {
  73. throw new PasswordException(rule);
  74. }
  75. }
  76. return true;
  77. }
  78. /**
  79. * This provides command line access to a <code>PasswordChecker</code>.
  80. *
  81. * @param args <code>String[]</code>
  82. *
  83. * @throws Exception if an error occurs
  84. */
  85. public static void main(final String[] args)
  86. throws Exception
  87. {
  88. final PasswordChecker checker = new PasswordChecker();
  89. String password = null;
  90. try {
  91. if (args.length < 2) {
  92. throw new ArrayIndexOutOfBoundsException();
  93. }
  94. for (int i = 0; i < args.length; i++) {
  95. if ("-l".equals(args[i])) {
  96. final int min = Integer.parseInt(args[++i]);
  97. final int max = Integer.parseInt(args[++i]);
  98. final PasswordLengthRule rule = new PasswordLengthRule(min, max);
  99. checker.addPasswordRule(rule);
  100. } else if ("-c".equals(args[i])) {
  101. final PasswordCharacterRule rule = new PasswordCharacterRule();
  102. rule.setNumberOfDigits(Integer.parseInt(args[++i]));
  103. rule.setNumberOfAlphabetical(Integer.parseInt(args[++i]));
  104. rule.setNumberOfNonAlphanumeric(Integer.parseInt(args[++i]));
  105. rule.setNumberOfUppercase(Integer.parseInt(args[++i]));
  106. rule.setNumberOfLowercase(Integer.parseInt(args[++i]));
  107. rule.setNumberOfCharacteristics(Integer.parseInt(args[++i]));
  108. checker.addPasswordRule(rule);
  109. } else if ("-d".equals(args[i])) {
  110. final Dictionary dict = new Dictionary();
  111. dict.useMedian();
  112. dict.ignoreCase();
  113. dict.insert(new File(args[++i]));
  114. dict.build();
  115. final PasswordDictionaryRule rule = new PasswordDictionaryRule(dict);
  116. rule.matchBackwards();
  117. rule.setNumberOfCharacters(Integer.parseInt(args[++i]));
  118. checker.addPasswordRule(rule);
  119. } else if ("-u".equals(args[i])) {
  120. final PasswordUserIDRule rule = new PasswordUserIDRule(args[++i]);
  121. rule.ignoreCase();
  122. rule.matchBackwards();
  123. checker.addPasswordRule(rule);
  124. } else if ("-k".equals(args[i])) {
  125. final PasswordSequenceRule rule = new PasswordSequenceRule();
  126. rule.ignoreCase();
  127. rule.matchBackwards();
  128. checker.addPasswordRule(rule);
  129. } else if ("-h".equals(args[i])) {
  130. throw new ArrayIndexOutOfBoundsException();
  131. } else {
  132. password = args[i];
  133. }
  134. }
  135. if (password == null) {
  136. throw new ArrayIndexOutOfBoundsException();
  137. } else if (checker.checkPassword(new Password(password))) {
  138. System.out.println("Valid password");
  139. }
  140. } catch (ArrayIndexOutOfBoundsException e) {
  141. System.out.println(
  142. "Usage: java " + checker.getClass().getName() + " <password> \\");
  143. System.out.println(" -l (Set the min & max password length) \\");
  144. System.out.println(" <min> \\");
  145. System.out.println(" <max> \\");
  146. System.out.println(
  147. " -c (Set the characters which must be present" +
  148. " in the password) \\");
  149. System.out.println(" (Each of the following must be >= 0) \\");
  150. System.out.println(" <digits> \\");
  151. System.out.println(" <alphabetical> \\");
  152. System.out.println(" <non-alphanumeric> \\");
  153. System.out.println(" <uppercase> \\");
  154. System.out.println(" <lowercase> \\");
  155. System.out.println(
  156. " <num> (Number of these rules to" +
  157. " enforce) \\");
  158. System.out.println(" -d (Test password against a dictionary) \\");
  159. System.out.println(" <file> (dictionary files) \\");
  160. System.out.println(
  161. " <num> (number of characters in matching" +
  162. " words) \\");
  163. System.out.println(" -u (Test for a user id) \\");
  164. System.out.println(" <userid> \\");
  165. System.out.println(" -k (Test for keyboard sequences) \\");
  166. System.out.println(" -h (Print this message) \\");
  167. System.exit(1);
  168. }
  169. }
  170. }