/vt-password/tags/vt-password-3.1.1/src/main/java/edu/vt/middleware/password/PasswordCli.java

http://vt-middleware.googlecode.com/ · Java · 150 lines · 114 code · 9 blank · 27 comment · 22 complexity · 3579e9f70c2be6ba6fade0f7de308bb7 MD5 · raw file

  1. /*
  2. $Id: PasswordCli.java 1920 2011-04-21 15:17:30Z dfisher $
  3. Copyright (C) 2003-2011 Virginia Tech.
  4. All rights reserved.
  5. SEE LICENSE FOR MORE INFORMATION
  6. Author: Middleware Services
  7. Email: middleware@vt.edu
  8. Version: $Revision: 1920 $
  9. Updated: $Date: 2011-04-21 17:17:30 +0200 (Thu, 21 Apr 2011) $
  10. */
  11. package edu.vt.middleware.password;
  12. import java.io.RandomAccessFile;
  13. import java.util.ArrayList;
  14. import java.util.List;
  15. import edu.vt.middleware.dictionary.FileWordList;
  16. import edu.vt.middleware.dictionary.TernaryTreeDictionary;
  17. /**
  18. * Provides a simple command line interface to password validation.
  19. *
  20. * @author Middleware Services
  21. * @version $Revision: 1920 $ $Date: 2011-04-21 17:17:30 +0200 (Thu, 21 Apr 2011) $
  22. */
  23. public final class PasswordCli
  24. {
  25. /** Default constructor. */
  26. private PasswordCli() {}
  27. /**
  28. * Provides command line access to password rules.
  29. *
  30. * @param args from command line
  31. *
  32. * @throws Exception if an error occurs
  33. */
  34. public static void main(final String[] args)
  35. throws Exception
  36. {
  37. final List<Rule> rules = new ArrayList<Rule>();
  38. String username = null;
  39. String password = null;
  40. try {
  41. if (args.length < 2) {
  42. throw new ArrayIndexOutOfBoundsException();
  43. }
  44. for (int i = 0; i < args.length; i++) {
  45. if ("-l".equals(args[i])) {
  46. final int min = Integer.parseInt(args[++i]);
  47. final int max = Integer.parseInt(args[++i]);
  48. final LengthRule rule = new LengthRule(min, max);
  49. rules.add(rule);
  50. } else if ("-c".equals(args[i])) {
  51. final CharacterCharacteristicsRule rule =
  52. new CharacterCharacteristicsRule();
  53. rule.getRules().add(
  54. new DigitCharacterRule(Integer.parseInt(args[++i])));
  55. rule.getRules().add(
  56. new AlphabeticalCharacterRule(Integer.parseInt(args[++i])));
  57. rule.getRules().add(
  58. new NonAlphanumericCharacterRule(Integer.parseInt(args[++i])));
  59. rule.getRules().add(
  60. new UppercaseCharacterRule(Integer.parseInt(args[++i])));
  61. rule.getRules().add(
  62. new LowercaseCharacterRule(Integer.parseInt(args[++i])));
  63. rule.setNumberOfCharacteristics(Integer.parseInt(args[++i]));
  64. rules.add(rule);
  65. } else if ("-d".equals(args[i])) {
  66. final TernaryTreeDictionary dict = new TernaryTreeDictionary(
  67. new FileWordList(new RandomAccessFile(args[++i], "r"), false));
  68. final DictionarySubstringRule rule = new DictionarySubstringRule(
  69. dict);
  70. rule.setMatchBackwards(true);
  71. rule.setWordLength(Integer.parseInt(args[++i]));
  72. rules.add(rule);
  73. } else if ("-u".equals(args[i])) {
  74. rules.add(new UsernameRule(true, true));
  75. username = args[++i];
  76. } else if ("-s".equals(args[i])) {
  77. rules.add(new QwertySequenceRule());
  78. rules.add(new AlphabeticalSequenceRule());
  79. rules.add(new NumericalSequenceRule());
  80. rules.add(new RepeatCharacterRegexRule());
  81. } else if ("-h".equals(args[i])) {
  82. throw new ArrayIndexOutOfBoundsException();
  83. } else {
  84. password = args[i];
  85. }
  86. }
  87. if (password == null) {
  88. throw new ArrayIndexOutOfBoundsException();
  89. } else {
  90. RuleResult result = null;
  91. final PasswordData pd = new PasswordData(new Password(password));
  92. final PasswordValidator validator = new PasswordValidator(rules);
  93. if (username != null) {
  94. pd.setUsername(username);
  95. }
  96. result = validator.validate(pd);
  97. if (result.isValid()) {
  98. System.out.println("Valid password");
  99. } else {
  100. for (String s : validator.getMessages(result)) {
  101. System.out.println(s);
  102. }
  103. }
  104. }
  105. } catch (ArrayIndexOutOfBoundsException e) {
  106. System.out.println(
  107. "Usage: java " + PasswordCli.class.getName() +
  108. " <options> <password> \\");
  109. System.out.println("");
  110. System.out.println("where <options> includes:");
  111. System.out.println(" -l (Set the min & max password length) \\");
  112. System.out.println(" <min> \\");
  113. System.out.println(" <max> \\");
  114. System.out.println(
  115. " -c (Set the characters which must be present" +
  116. " in the password) \\");
  117. System.out.println(" (Each of the following must be >= 0) \\");
  118. System.out.println(" <digits> \\");
  119. System.out.println(" <alphabetical> \\");
  120. System.out.println(" <non-alphanumeric> \\");
  121. System.out.println(" <uppercase> \\");
  122. System.out.println(" <lowercase> \\");
  123. System.out.println(
  124. " <num> (Number of these rules to" +
  125. " enforce) \\");
  126. System.out.println(" -d (Test password against a dictionary) \\");
  127. System.out.println(" <file> (dictionary files) \\");
  128. System.out.println(
  129. " <num> (number of characters in matching" +
  130. " words) \\");
  131. System.out.println(" -u (Test for a user id) \\");
  132. System.out.println(" <userid> \\");
  133. System.out.println(" -s (Test for sequences) \\");
  134. System.out.println(" -h (Print this message) \\");
  135. System.exit(1);
  136. }
  137. }
  138. }