Using
wifite.py from github, Rev 86
aircrack-ng 1.2 beta3
kubuntu 14.04
wifite never reported clients; looking at the parse_csv and the actual csv in
/tmp, it seems hit_clients is never set, because the clients section in the csv
has less than 14 columns.
--- wifite.py.orig 2013-08-17 19:21:10.000000000 -0300
+++ wifite.py 2014-05-12 20:48:29.767590528 -0300
@@ -1344,10 +1344,10 @@
if len(row) < 2:
continue
if not hit_clients:
- if len(row) < 14:
- continue
if row[0].strip() == 'Station MAC':
hit_clients = True
+ if len(row) < 14:
+ continue
if row[0].strip() == 'BSSID' or row[0].strip() == 'Station Mac': continue
enc = row[5].strip()
wps = False
Original issue reported on code.google.com by jsve...@it.eng.br on 13 May 2014 at 12:24
Original issue reported on code.google.com by
jsve...@it.eng.br
on 13 May 2014 at 12:24