@@ -19,7 +19,7 @@ public class CommandLineOptions
1919 [ Option ( 'u' , "UserList" , Required = false , HelpText = "A file containing a line delimited list of usernames or a single user to try" ) ]
2020 public string UserList { get ; set ; }
2121
22- [ Option ( 'p' , "PasswordList" , Required = true , HelpText = "A file containing a line delimited list of passwords or a single password to try" ) ]
22+ [ Option ( 'p' , "PasswordList" , Required = false , HelpText = "A file containing a line delimited list of passwords or a single password to try" ) ]
2323 public string PasswordList { get ; set ; }
2424
2525 [ Option ( 'o' , "OutFile" , Required = false , HelpText = "File to output found credentials" ) ]
@@ -34,13 +34,13 @@ public class CommandLineOptions
3434 [ Option ( 'n' , "NoDb" , Required = false , HelpText = "Disable using a DB to store previously sprayed creds." ) ]
3535 public bool NoDb { get ; set ; }
3636
37- [ Option ( "Users" , Required = false , HelpText = "Outputs a list of all users" ) ]
37+ [ Option ( "Users" , Required = false , HelpText = "Outputs a list of all users to the specified file " ) ]
3838 public string OutputUsers { get ; set ; }
3939
40- [ Option ( "UsersCsv" , Required = false , HelpText = "Outputs a list of all users along with their domain info to a CSV file" ) ]
40+ [ Option ( "UsersCsv" , Required = false , HelpText = "Outputs a list of all users along with their domain info to the specified CSV file" ) ]
4141 public string OutputUsersCsv { get ; set ; }
4242
43- [ Option ( "PassPol " , Required = false , HelpText = "Outputs the password polic (ies) to the terminal" ) ]
43+ [ Option ( "Policy " , Required = false , HelpText = "Outputs the password policy (ies) to the terminal" ) ]
4444 public bool OutputPasswordPolicy { get ; set ; }
4545
4646 [ Option ( 'f' , "Force" , Required = false , HelpText = "Force authentication attempts, even users close to lockout" ) ]
0 commit comments