Plugins 2500/2501 and 16800/16801 are deprecated
#31
Ok so I figured it out thanks for the help but whoa didn't expect it too take this long:
Next Big Bang (426392 years)
i ran it as:
hashcat -m 22000 -a3 hash.hccapx ?l?l?l?l?l?l?l?l?l?l?l?l
running on nvidia geforce gt 710
is it just my card? Or is that so complicated of a hash that it is too complex???
Reply
#32
It is both. The GT710 is a way too small and the mask too big.
You can try to attack the CLIENTs. Maybe one of them will transmit the PSK in the clear.

BTW:
It is not a good idea to give the hc22000 the same suffix as a binary hccapx file.
If you merge your old hccapx files with hc22000 files it will lead to a separator unmatched error., because they are totally different.
Reply
#33
Hashcat association attack is working on 22000, too (experimental):

Code:
$ cat hashfile.22000 | awk 'BEGIN { FS = "*" } ; {print "$HEX[" $6 "]" }' > essid.list
$ hashcat -m 22000 -o found.list hashfile.22000 essid.list -a 9
or in combination with rules:
$ hashcat -m 22000 -o found.list -r best64.rule hashfile.22000 essid.list -a 9
Reply
#34
Hello,  ZerBea

Code:
cap2hccapx.exe *.cap *.hccapx

I found that using the v1.9 cap2hccapx.exe conversion tool, the converted handshake data still has duplicates, and some handshake data have a lot of duplicates.

   Can use command parameters to filter out repeated algorithm handshakes ?

Or plan to update the version of cap2hccapx.exe to add the deduplication handshake algorithm? Think it is necessary

hope can make it more perfect !
Reply
#35
I can't answer this question, because I'm not the developer of hashcat-utils, to which cap2hccapx belongs.

For me, the ancient binary format hccapx/hccap with all its disadvantages is dead. There will be no more hccapx/hccap related updates or improvements of hcxtools, because the effort to handle PMKIDs and EAPOL MESSAGEPAIRs from different hash files is far too much.

BTW:
If you need a more portable and Windows friendly version of a converter:
https://github.com/s77rt/multicapconverter
Reply
#36
Hello,ZerBea


Hope to support windows hc22000 conversion tool
Reply
#37
As I mentioned before:
https://github.com/s77rt/multicapconverter
or online converter
https://hashcat.net/cap2hashcat/

Both of them are Windows and macOS friendly.

Work on hc22000 (ASCII txt) files can be done completely by shell tools, e.g.:
https://docs.microsoft.com/en-us/windows...mands/sort
https://stackoverflow.com/questions/2907...tch-script
Reply
#38
Thanks Bring us very good tools
Reply
#39
(10-10-2021, 08:00 AM)ZerBea Wrote: As I mentioned before:
https://github.com/s77rt/multicapconverter
or online converter
https://hashcat.net/cap2hashcat/

Both of them are Windows and macOS friendly.

Work on hc22000 (ASCII txt) files can be done completely by shell tools, e.g.:
https://docs.microsoft.com/en-us/windows...mands/sort
https://stackoverflow.com/questions/2907...tch-script

Hey ZB, I have Windows compiled set of your tools (v6.1.3). If you don't mind I can share it with Windows folks. I also have multicapconverter.py compiled to executable - need s77rt's permission to post
Reply
#40
Hi oyaz.
That sounds great. hcxtools are completely open source and your Windows port is much appreciated.
I think, Windows users will appreciate your work.

BTW:
Please update to latest git head because of a buffer overflow in v6.1.x
Reply