forked from ZerBea/hcxtools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
changelog
1172 lines (888 loc) · 32.5 KB
/
changelog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
29.09.2019
==========
hcxpmkidtool: added new tool to verify a PMKID (CPU based)
options:
-p <pmkid> : input PMKID
PMKID:MAC_AP:MAC_STA:ESSID(XDIGIT)
PMKID*MAC_AP*MAC_STA*ESSID(XDIGIT)
-w <file> : input wordlist (8...63 characters)
output: PMK:ESSID (XDIGIT):password
-W <word> : input single word (8...63 characters)
output: PMK:ESSID (XDIGIT):password
-K <pmk> : input single PMK
output: PMK:ESSID (XDIGIT)
format:
-h : show this help
-v : show version
--help : show this help
--version : show version
hcxpmkidtool is designed to verify an existing PSK or and existing PMK.
It is not designed to run big wordlists!
25.09.2019
==========
wlanhashhcx: removed
hcxmactool: added new tool (MAC based counterpart to ESSID based hcxessidtool)
options:
-o <oui> : filter access point by OUI
-n <nic> : filter access point by NIC
-m <mac> : filter access point by MAC
-a <vendor> : filter access point by VENDOR name
-O <oui> : filter client by OUI
-N <nic> : filter client point by NIC
-M <mac> : filter client point by MAC
-A <vendor> : filter client by VENDOR name
-h : show this help
-v : show version
--pmkidin=<file> : input PMKID file 1
--pmkidout=<file> : output PMKID file 1
--hccapxin=<file> : input HCCAPX file
--hccapxout=<file> : output HCCAPX file
--help : show this help
--version : show version
24.09.2019
==========
hcxessidtool: added new options and improved help
--pmkidgroupout=<file> : output ESSID groups from ESSIDs present in PMKID1
--hccapxgroupout=<file>: output ESSID groups from ESSIDs present in HCCAPX1
15.09.2019
==========
hcxpcaptool: added new option and improved help
--ignore-mac : do not check MAC addresses
this will allow to use ESSIDs from frames with damaged broadcast MAC address
14.09.2019
==========
hcxpcaptool : improved detection of damaged ESSIDs
13.09.2019
==========
hcxessidtool: added new options
--essidout=<file> : output ESSID list
--essidmacapout=<file> : output MAC_AP:ESSID list
12.09.2019
==========
removed : wlanhcx2essid (deprecated)
added : hcxessidtool
options:
-e <essid> : filter by ESSID
-E <essid> : filter by part of ESSID
-l <essid> : filter by ESSID length
-h : show this help
-v : show version
--pmkid1=<file> : input PMKID file 1
--pmkid2=<file> : input PMKID file 2
--pmkidout12=<file> : output only lines present in both PMKID file 1 and PMKID file 2
--pmkidout1=<file> : output only lines present in PMKID file 1
--pmkidout2=<file> : output only lines present in PMKID file 2
--pmkidout=<file> : output only ESSID filtered lines present in PMKID file 1
--hccapx1=<file> : input HCCAPX file 1
--hccapx2=<file> : input HCCAPX file 2
--hccapxout12=<file> : output only lines present in both HCCAPX file 1 and HCCAPX file 2
--hccapxout1=<file> : output only lines present in HCCAPX file1
--hccapxout2=<file> : output only lines present in HCCAPX file 2
--hccapxout=<file> : output only ESSID filtered lines present in HCCAPX file 1
--help : show this help
--version : show version
Main purpose is to get full adcantage or reuse of PBKDF2
while merging (only) the same ESSIDs from different hash files
examples:
hcxessidtool --pmkid1=file1.16800 --pmkid2=file2.16800 --pmkidout12=joint.16800
hcxessidtool --pmkid1=file1.16800 -l 10 --pmkidout=filtered.16800
03.09.2019
==========
move to v5.2.2
fixed bug in damaged ESSID handling
01.09.2019
==========
hcxpcaptool: show capture device vendor
28.08.2019
==========
moved to v5.2.1
hcxpsktool : added new weak candidates
hcxdumptool: added additional warnings about handling of pcapng files ( im
imrpoved status out: count zeroed PMKIDs
19.08.2019
==========
move to v5.2.0
11.08.2019
==========
hcxpcaptool: print time of first packet and time of last packet
this will not work on cap files with zeroed time stamps
10.08.2019
==========
hcxpcaptool: removed option --replaycountcheck
added option --ignore-replaycount to allow conversion of not replaycount checked handshakes
if we have no replaycount matching handshake - in that case nc must be used!
Remarks:
total best handshakes and total best PMKIDs can be different to realy written ones:
best handshakes (total)..........: 190 (ap-less: 122)
best PMKIDs (total)..............: 30
summary output file(s):
-----------------------
175 handshake(s) written to /tmp/test.hccapx
message pair M12E2...............: 157
message pair M32E2...............: 16
message pair M34E4...............: 2
29 PMKID(s) written to /tmp/test.16800
That depend on this additional options and the quality of the cap file:
--ignore-fake-frames : do not convert fake frames
--ignore-zeroed-pmks : do not convert frames which use a zeroed plainmasterkey (PMK)
--ignore-replaycount : allow not replaycount checked best handshakes
--time-error-corrections=<digit> : maximum time gap between EAPOL frames - EAPOL TIMEOUT (default: 600s)
--nonce-error-corrections=<digit> : maximum replycount/nonce gap to be converted (default: 8)
example: --nonce-error-corrections=60
convert handshakes up to a possible packetloss of 59 packets
hashcat nonce-error-corrections should be twice as much as hcxpcaptool value
--max-essid-changes=<digit> : allow maximum ESSID changes (default: 1 - no ESSID change is allowed)
09.08.2019
==========
hcxpcaptool: added summary (replaycount check) and print warning if result is not replaycount checked
(in this case nc is necessary)
added warning if an ESSID change is detected.
this can be handled by increase the value of option --max-essid-changes
added new option --replaycountcheck
--replaycountcheck : convert only replaycount checked frames
26.06.2019
==========
hcxpcaptool: added new option --max-essid-changes
--max-essid-changes=<digit> : allow maximum ESSID changes (default: 8)
useful on merged cap files with many ESSID changes for a single mac_ap
or on damaged ESSIDs
23.06.2019
==========
hcxpcaptool: fixed several big endian issues
show information about handshakes and PMKIDs calculated by a zeroed PMK
added new options --ignore-zeroed-pmks and --prefix-out=<file>
--ignore-zeroed-pmks : do not convert frames which use a zeroed plainmasterkey (PMK)
This option is useful to reduce the commandline length if all lists are requested:
--prefix-out=<file> : convert everything to lists using this prefix (overrides single options):
hccapx (-o) file.hccapx
PMKID (-k) file.16800
netntlm (--netntlm-out) file.5500
md5 (--md5-out) file.4800
tacacsplus (--tacacsplus) file.16100
wordlist (-E) file.essidlist
identitylist (-I) file.identitylist
usernamelist (-U) file.userlist
imsilist (-M) file.imsilist
networklist (-network-out) file.networklist
trafficlist (-T) file.networklist
clientlist (-X) file.clientlist
deviceinfolist (-D) file.deviceinfolist
20.06.2019
==========
hcxpcaptool: complete refactoring of pcapng engine
19.06.2019
==========
hcxpcaptool: added new option -D
-D <file> : output unsorted device information list
format = MAC:DEVICEINFO string
16.06.2019
==========
hcxpcaptool: refactored complete tag walk engine due to several stack smashing issues (fsanitize=address)
added new option to detect known fake frames
--ignore-fake-frames : do not convert fake frames
14.06.2019
==========
hcxpcaptool: complete rewrite of RSN-IE PMKID detection within association frames and reassociation frames
07.06.2019
==========
hcxpcaptool: added new option to filter output by a single MAC address
all packets which doesn't contain this MAC in address 1, address 2 or address 3 are ignored.
--filtermac=<mac> : filter output by MAC address
format: 112233445566
07.06.2019
==========
hcxpcaptool: detect and convert PMKIDs from clients
read more here:
https://hashcat.net/forum/thread-6661-post-44869.html#pid44869
30.05.2019
==========
hcxtools moved to v5.1.6 due to a bug in v5.1.5
hcxpcaptool: added 2 new options to convert raw PMKIDs
-K <file> : output raw PMKID file (hashcat hashmode -m 16801 new format)
-Z <file> : output raw PMKID file (hashcat hashmode -m 16801 old format and john)
use this options if you would like to verify a PMKID and yo don't have an ESSID
read more here:
https://github.com/ZerBea/hcxtools/issues/92#issuecomment-497128717
19.05.2019
==========
added new useful script: hcxgrep.py
Works like grep, but for hccapx/pmkid hashfiles - those are detected
automagically. It also can read from stdin and writes on stdout.
It tries to be as close to grep commandline options, this is -h:
usage: hcxgrep.py [-h] [-f FILE] [-v] [-t {essid,mac_ap,mac_sta}]
[PATTERNS] [infile]
Extract records from hccapx/pmkid file based on regexp
positional arguments:
PATTERNS RegExp pattern
infile hccapx/pmkid file to process
optional arguments:
-h, --help show this help message and exit
-f FILE, --file FILE Obtain patterns from FILE, one per line.
-v, --invert-match Invert the sense of matching, to select non-matching
nets
-t {essid,mac_ap,mac_sta}, --type {essid,mac_ap,mac_sta}
Field to apply matching, default essid
By default it greps by essid, but you can choose with -t also to grep
over mac_ap or mac_sta, passed as lowercase hex strings. It also can
read multiple patterns from external file, like those attached. It's
composed from routerkeygen and matches essids with _ or - in them. Of
course this have many false positives and the default PSK can be
changed, but one can easy get those nets he needs to try custom
wordlists or etc.
16.04.2019
==========
finally removed wlanhcx2psk in favor of hcxpsktool
08.04.2019
==========
hcxpcaptool: from now on only PBKDF2 based hashes (EAPOL and PMKID) are converted running options -k -z and -o
raw option -O will convert all EAPOL handshakes.
02.04.2019
==========
Due to hashcat changes:
"WPA/WPA2 cracking: In the potfile, replace password with PMK in order
to detect already cracked networks across all WPA modes"
https://github.com/hashcat/hashcat/commit/b8d609ba1604f4fed62198ae5000e205dcc87f70
hcxpcaptool: added new option -k to convert dumpfile to new hashcat PMKID format
-k <file> : output PMKID file (hashcat hashmode -m 16800 new format)
-z <file> : output PMKID file (hashcat hashmode -m 16800 old format and john)
use hcxhashcattool to convert old 2500 and old 16800 potfile to new hashcat potfile Format:
-p <file> : input old hashcat potfile
accepted potfiles: 2500 or 16800
-P <file> : output new potfile file (PMK:ESSID:PSK)
hcxhashcattool -p oldhashcat.2500.pot -P newhashcat.potfile
hcxhashcattool -p oldhashcat.16800.pot -P newhashcat.potfile
30.03.2019
==========
hcxpcaptool: retrieve IMSI from UMTS Authentication and Key Agreement (EAP-AKA)
and EAP-SIM (GSM Subscriber Modules) Authentication
19.03.2019
==========
wlanhcx2ssid: use systemwide oui.txt (/usr/share/ieee-data/oui.txt), if exist
whoismac: use systemwide oui.txt (/usr/share/ieee-data/oui.txt), if exist
18.03.2019
==========
wlancap2wpasec: added man 1 page
hcxpcaptool: added new option -M to collect IMSI numbers
-M <file> : output unsorted IMSI number list
17.03.2019
==========
hcxpcaptool: added man 1 page
hcxpsktool: added man 1 page
hcxhash2cap: added man 1 page
09.03.2019
==========
hcxtools moved to version 5.1.3 due to change of pcapng comment field
07.03.2019
==========
hcxpcaptool added GPX comment field for GPS time from GPS device
<?xml version="1.0"?>
<gpx version="1.0" creator="hcxpcaptool"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://www.topografix.com/GPX/1/0"
xsi:schemaLocation="http://www.topografix.com/GPX/1/0 http://www.topografix.com/GPX/1/0/gpx.xsd">
<name>test3.gpx</name>
<trk>
<name>dntest.pcapng</name>
<trkseg>
<trkpt lat="49.126353" lon="4.626187">
<ele>129.500000</ele>
<time>2019-03-06T22:27:45Z</time>
<name>1af87c9124a3</name>
<cmt>GPS-TIME:2019-03-06T22:28:00Z</cmt>
</trkpt>
26.02.2019
==========
hcxtools moved to version 5.1.3 due to several bug fixes
18.02.2019
==========
hcxtools moved to version 5.1.2 due to implementation of serveral new options
14.02.2019
==========
wlancap2wpasec: added new option -e
-e <email address> : set email address, if requiered
13.02.2019
==========
hcxpsktool added full support (option -j) for john
-i <file> : input EAPOL hash file (hashcat)
-j <file> : input EAPOL hash file (john)
-z <file> : input PMKID hash file (hashcat and john)
12.02.2019
==========
hcxpcaptool: added new option -X
-X <file> : output client probelist
: format: mac_sta:probed ESSID (autohex enabled)
added new tool: hcxwltool
while hcxpsktool is designed to run on hcxpcaptool -o and -z output,
hcxwltool is designed to run on hcapcaptool -E, -I and -U output
$ hcxwltool -h
hcxwltool 5.1.1 (C) 2019 ZeroBeat
usage:
hcxwltool <options>
options:
-i : input worlist
-o <file> : output wordlist to file
-h : show this help
-v : show version
--straight : output format untouched
--digit : output format only digits
--xdigit : output format only xdigits
--lower : output format only lower
--upper : output format only upper
--capital : output format only capital
--length=<digit> : password lenght (8...32)
--help : show this help
--version : show version
examples:
hcxwltool -i wordlist --straight | sort | uniq | | sort | uniq | hashcat -m 2500 hashfile.hccapx
hcxwltool -i wordlist --gigit --length=10 | sort | uniq | | sort | uniq | hashcat -m 2500 hashfile.hccapx
hcxwltool -i wordlist --digit | sort | uniq | hashcat -m 16800 hashfile.16800
hcxwltool -i wordlist --xdigit | sort | uniq | john --stdin --format=wpapsk-opencl hashfile.16800
11.02.2019
==========
whoismac: added two new options to convert ESSID HEX to ASCII or ESSID ASCII to HEX
-e <ESSID> : input ESSID
-x <xdigit> : input ESSID in hex
example:
$ whoismac -e default
64656661756c74
now search for this essid, running simple bash commands:
cat hashfile.16800 | grep 64656661756c74
02.02.2019
==========
release hcxtools v 5.1.1
removed....: wlanhcx2psk
replaced by: hcxpsktool
removed....: wlanhcx2cap
replaced by: hcxhash2cap
no more libcap dependency!
01.02.2019
==========
hcxhash2cap: added new option to canvert john WPAPSK has file to cap
hcxhash2cap will replace wlanhcx2cap, soon
$ hcxhash2cap -h
hcxhash2cap 5.1.0 (C) 2019 ZeroBeat
usage:
hcxhash2cap <options>
options:
-c <file> : output cap file
if no cap file is selected, output will be written to single cap files
format: mac_sta.cap (mac_sta.cap_x)
--pmkid=<file> : input PMKID hash file
--hccapx=<file> : input hashcat hccapx file
--hccap=<file> : input hashcat hccap file
--john=<file> : input John the Ripper WPAPSK hash file
--help : show this help
--version : show version
31.01.2019
==========
hcxhash2cap: added new options to convert hccapx to cap and hccap to cap
29.01.2019
==========
aded new tool: hcxhash2cap
22.01.2019
==========
hcxpcaptool: in preparation of hccapx successor, hcxpcaptool now count oversized (>0xff) EAPOLframes
EAPOL packets (oversized)....: xx
read more here:
https://github.com/hashcat/hashcat/issues/1816
13.12.2018
==========
hcxpcaptool: removed options -x and -X (old hccap format)
hcxpcaptool: added options --hccap-out and --hccap-raw-out (old hccap format)
--hccap-out=<file> : output old hccap file (hashcat -m 2500)
--hccap-raw-out=<file> : output raw old hccap file (hashcat -m 2500)
09.12.2018
==========
hcxpcaptool: detect EAPOL GROUP KEYs
hcxpcaptool: move option -H to --hexdump-out
hcxpcaptool: added new options (--eapol-out, --network-out)
--eapol-out=<file> : output EAPOL packets in hex
format = mac_ap:mac_sta:eapol
--network-out=<file> : output network information
format = mac_ap:ESSID
--hexdump-out=<file> : output dump raw packets in hex
05.12.2018
==========
moved to v 5.1.0 (according to hashcat)
hcxpcaptool: detect EAPOL RC4 KEYs
04.12.2018
==========
hcxpcaptool: fixed bug in FCS on BE systems
hcxpcaptool: detect MESH-IDs
26.11.2018
==========
several big endian fixes
switched to version 5.0.1
19.11.2018
==========
hcxpcaptool: improved detection of ESSID changes in merged capfiles
30.10.2018
==========
hcxtools moved to version 5.0.0
hcxpsktool: added NETGEARxx list
--netgear : include NETGEAR candidates
03.10.2018
==========
hcxpcaptool: use GMT time
30.09.2018
==========
hcxhashcattool: accept 16800 potfiles
29.09.2018
==========
hcxpcaptool: removed option -Z
Allow hashfile for -m 16800 to be used with -m 16801
https://github.com/hashcat/hashcat/commit/1b980cf01000c81dfd0ca085593f8c1d66d43188
added new option -g
-g <file> : output GPS file\n"
format = GPX (accepted for example by Viking and GPSBabel)\n"
24.09.2018
==========
whoismac new option to get VENDOR information from a hashcat 2500 potfile line
-P <hashline> : input EAPOL hashline from potfile
20.09.2018
==========
prepare new tool (experimental): hcxpsktool (supports hccapx and 16800 hashfile)
hcxpsktool will replace wlanhcx2psk, when all wlanhcx2psk functions are added
15.09.2018
==========
hcxpcaptool: added detection of Cisco Systems, Inc VENDOR information in authentication
06.09.2018
==========
hcxpcaptool: added detection of Netgear VENDOR information in authentication
04.09.2018
==========
hcxpcaptool: try to detect and remove damaged ESSIDs
26.08.2018
==========
whoismac added new option -p to get information about VENDOR and print ESSID in ASCII
"-p <hashline> : input PMKID hashline\n"
17.08.2018
==========
hcxpcaptool skip unknown option (thanks to magnumripper)
hcxpcaptool detect Wilibox Delibrant Group LLC authentication
hcxpcaptool detect NETWORK EAP authentication system
07.08.2018
==========
added communication between hcxdumtool and hcxpcaptool via pcapng option fields:
62108 for REPLAYCOUNT uint64_t
62109 for ANONCE uint8_t[32]
03.08.2018
==========
hcxtools release 4.2.0
Todo:
hcxdumptool 4.2.0 will randomize ap-less attacks.
hcxpcaptool will convert this handshakes correctly, but will not detect them as ap-less attack
This feature will be added in hcxtools 4.2.1
01.08.2018
==========
moved raspberry pi stuff and dumper stuff to hcxdumptool repository
from now on hcxtools only includes conversion tools
25.07.2018
==========
hcxtools moved to 4.2.0 rc1
hcxpcaptool:
added hashmodes -m 16800 and -m 16801
and new options:
-z <file> : output PMKID file (hashcat hashmode -m 16800 - WPA*-PMKID-PBKDF2)
-Z <file> : output PMKID file (hashcat hashmode -m 16801 - WPA*-PMKID-PMK)
use hcxpcaptool as dumper/attacker, convert with hcxpcaptool, retrieve PSK using hashcat
removed wlandump-ng (old scool, deprecated)
removed wlancap2hcx (old scool, deprecated)
17.07.2018
==========
hcxpcaptool:
show detailed file stats on pcapng files - go in sync with (upcomming) hcxdumptool 4.2.0
17.07.2018
==========
hcxpcaptool:
added detection of all EAP types:
EAP_PACKET
EAPOL_START
EAPOL_LOGOFF
EAPOL_KEY
EAPOL_ASF
EAPOL_MKA
15.07.2018
==========
wlanhcx2psk:
added more weak candidates based on OSINT from wpa-sec
07.07.2018
==========
hcxpcaptool:
added detection of BROADCOM specific authentication
01.07.2018
==========
hcxpcaptool:
added detection of FILS authentication algorithm
27.06.2018
==========
hcxpcaptool:
added detection of authentication algorithms
23.06.2018
==========
hcxpcaptool:
added full support for AVS header (DLT_IEEE802_11_RADIO_AVS)
22.06.2018
==========
hcxpcaptool:
added full support for TaZmen Sniffer Protocol (TZSP)
21.06.2018
==========
hcxpcaptool:
added detection of TaZmen Sniffer Protocol (TZSP)
20.06.2018
==========
hcxpcaptool:
added conversion of WDS packets
19.06.2018
==========
hcxpcaptool:
added detection of RADIUS authentication with Ethernet II header
05.05.2018
==========
hcxpcaptool:
improved detection of broken ESSIDs
improved detection of broken EAPOL frames
wlanhcx2ssid (option -F):
improved detection of broken ESSIDs
omproved detection of broken EAPOL frames
12.03.2018
==========
moved to v 4.1.5
added new options wlancap2wpasec
$ wlancap2wpasec -h
wlancap2wpasec 4.1.5 (C) 2018 ZeroBeat
usage: wlancap2wpasec <options> [input.cap] [input.cap] ...
wlancap2wpasec <options> *.cap
wlancap2wpasec <options> *.*
options:
-k <key> : wpa-sec user key
-u <url> : set user defined URL
default = https://wpa-sec.stanev.org
-t <seconds> : set connection timeout
default = 30 seconds
-R : remove cap if upload was successful
-h : this help
25.02.2018
==========
split repository!
moved hcxdumptool to https://github.com/ZerBea/hcxdumptool
move pioff to https://github.com/ZerBea/hcxdumptool/hcxpioff
from now on, hcxtools will be the mostly "portable part"
17.02.2018
==========
hcxpcaptool
added nonce fuzzing logic for john and old hashcat (hccap) according to bitmask:
0: MP info
1: MP info
2: MP inf
3: x (unused)
4: ap-less attack (set to 1) - no nonce-error-corrections neccessary
5: LE router detected (set to 1) - nonce-error-corrections only for LE neccessary
6: BE router detected (set to 1) - nonce-error-corrections only for BE neccessary
7: not replaycount checked (set to 1) - replaycount not checked, nonce-error-corrections definitely neccessary
15.02.2018
==========
hcxpcaptool
added detection of router endianess and ap-less attacks:
bitmask for message_pair file:
0: MP info
1: MP info
2: MP inf
3: x (unused)
4: ap-less attack (set to 1) - no nonce-error-corrections neccessary
5: LE router detected (set to 1) - nonce-error-corrections only for LE neccessary
6: BE router detected (set to 1) - nonce-error-corrections only for BE neccessary
7: not replaycount checked (set to 1) - replaycount not checked, nonce-error-corrections definitely neccessary
using bit 4 to 7, hcxtools are able to interact with hascat - that will increase speed for hashcat.
09.02.2018
==========
hcxpcaptool
added full implementation of PPP-CHAP authentication
added detection of RADIUS (UDP destination 1812)
new dependency: libopenssl
07.02.2018
==========
hcxpcaptool
added full implementation of TACACS+
--tacacsplus-out=<file> : output TACACS+ authentication file (hashcat -m 16100, john tacacs-plus)
05.02.2018
==========
hcxpcaptool
improved help menu
ignore empty usernames
added new option
--md5-john-out=<file> : output MD5 challenge file (john chap)
04.02.2018
==========
hcxpcaptool
continued implementation of EAP (RADIUS): netNTLMv1, MD5 challenge
added new options
-U <file> : output username list (unsorted)
--netntlm-out=<file> : output netNTLMv1 file (hashcat -m 5500, john netntlm)
--md5-out=<file> : output MD5 challenge file (hashcat -m 4800, john chap)
03.02.2018
==========
added hcxphashcattool (calculate PMKs from hashcat -m 2500 potfile)
$ hcxhashcattool -h
hcxhashcattool 4.1.0 (C) 2018 ZeroBeat
usage:
hcxhashcattool <options>
options:
-p <file> : input hashcat -m 2500 potfile
-P <file> : output PMK file (PMK:ESSID:PSK)
-h : show this help
-v : show version
01.02.2018
==========
hcxpcaptool
added detection of TCP and UDP network protocol
neccessary for IP based authentications
31.01.2018
==========
hcxtools moved to v 4.1.0
and starts into the 3. generation with
- hcxdumptool (will replace wlandump-ng) and
- hcxpcaptool (will replace wlancap2hcx)
29.01.2018
==========
hcxpcaptool
improved detection of handshakes
removed options -A -S ( will improve them and add them later again)
17.01.2018
==========
hcxpcaptool
added new options
-O <file> : output raw hccapx file
-x <file> : output hccap file
-X <file> : output raw hccap file
-j <file> : output john WPAPSK-PMK file
-J <file> : output raw john WPAPSK-PMK file
--time-error-corrections : maximum allowed time gap (default: 10000ms)
--nonce-error-corrections : maximum allowed nonce gap (default: 8)
: should be the same value as in hashcat
option -O is designed for third party tools which like to strip handshakes by themselves
options -x and -X are designed for use on older systems and old hashcat version
16.01.2018
==========
hcxpcaptool
added new option -o
-o <file> : output hccapx file
convert cap/pcap/pcapng to hccapx
15.01.2018
==========
hcxpcaptool
added new option -V
-V : verbose (but slow) status output
Running hcxpcaptool without options on cap/pcap/pcapng files
shows only limited stauts output
If you need detailed informations, use -V
14.01.2018
==========
hcxpcaptool
added suport for gzip compressed cap/pcap/pcapng files
new dependency: zlib
14.01.2018
==========
hcxpcaptool
added new options -P -I
-I <file> : output identities list
-P <file> : output possible WPA/WPA2 plainmasterkey list
13.01.2018
==========
hcxpcaptool
added new option
-S <file> : output station EAPOL information list
date::timestamp:mac_sta:mac_ap:epol_len:eapol
moved internal to tv_usec timestamp
12.01.2018
==========
hcxdumptool
added new option
-C <digit> : comma separated scanlist (1,3,5,7...)
support for scanlist
hcxpcaptool
added new option
-A <file> : output access point anonce information list (forensics purpose)
date:mac_sta:mac_ap:keyver(1=M1, 2=M3, 3=M1+M3):replaycount(in hex):anonce
11.01.2018
==========
hcxpcaptool
added new options
-E <file> : output wordlist (autohex enabled) to use as wordlist
-T <file> : output traffic information list
10.01.2018
==========
hcxpcaptool
added option -H
-H : dump raw packets in hex
09.01.2018
==========
- move hcxtools to v 4.0.2
- renamed wlandump-rs to hcxdumptool
- removed wlancapinfo -> replaced by hcxpcaptool
+get rid of libpcap dependency)
+added full pcapng support
$ hcxpcaptool -h
hcxpcaptool 4.0.2 (C) 2017 ZeroBeat
usage:
hcxpcaptool <options>
hcxpcaptool <options> [input.pcap] [input.pcap] ...
hcxpcaptool <options> *.cap
hcxpcaptool <options> *.*
options:
-h : show this help
-v : show version
07.01.2018
==========
wlandump-rs
added option -l
-l : enable capture of IPv4/IPv6 packets
06.01.2018
==========
wlandump-ng
added option -l
-l : enable capture of IPv4/IPv6 packets
21.12.2017
==========