Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion wifite/args.py
Original file line number Diff line number Diff line change
Expand Up @@ -811,7 +811,11 @@ def _add_wpa_args(self, wpa):
% self.config.wpa_attack_timeout))
wpa.add_argument('-wpat', help=argparse.SUPPRESS, action='store', dest='wpa_attack_timeout', type=int)

# TODO: Uncomment the --strip option once it works
# Handshake stripping is implemented (see Handshake.strip()), but the public
# --strip flag remains hidden because stripped captures may break compatibility
# with aircrack-ng and other downstream tools (Handshake.strip() warns of this).
# Keep only the hidden compatibility alias (-strip) until the behavior is
# validated across all supported cracking tools.
Comment on lines +814 to +818
'''
wpa.add_argument('--strip',
action='store_true',
Expand Down
Loading