Remove --strip option

Tried to make it work but alas, no dice.
This commit is contained in:
derv82
2017-05-15 01:24:50 -04:00
parent 7adcff07b0
commit a8d16d1b69
4 changed files with 19 additions and 5 deletions

View File

@@ -183,11 +183,15 @@ class Arguments(object):
type=str,
help=Color.s('File containing passwords for cracking (default: {G}%s{W})')
% Configuration.wordlist)
# TODO: Uncomment the --strip option once it works
'''
wpa.add_argument('--strip',
action='store_true',
dest='wpa_strip_handshake',
default=False,
help=Color.s('Strip unnecessary packets from handshake capture using tshark or pyrit'))
help=Color.s('Strip unnecessary packets from handshake capture using tshark'))
'''
wpa.add_argument('-strip', help=argparse.SUPPRESS, action='store_true', dest='wpa_strip_handshake')
# WPS