Skip to content

Commit

Permalink
moved to positional parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
TM committed Sep 22, 2014
1 parent 6a5ab97 commit a9771f3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tgsrepcrack.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,8 @@ def crack(wordlist):
parser.add_argument('wordlistfile', action='store',
metavar='dictionary.txt', type=argparse.FileType('r'),
help='the word list to use with password cracking')
parser.add_argument('files', nargs='+', help='File name to list. Use asterisk \'*\' for many files.\n Files are exported with mimikatz or from extracttgsrepfrompcap.py')
parser.add_argument('files', nargs='+', metavar='file.kirbi',
help='File name to crack. Use asterisk \'*\' for many files.\n Files are exported with mimikatz or from extracttgsrepfrompcap.py')
parser.add_argument('-t', '--threads', dest='threads', action='store', required=False,
metavar='NUM', type=int, default=5,
help='Number of threads for guessing')
Expand Down

0 comments on commit a9771f3

Please sign in to comment.