hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Misc (https://hashcat.net/forum/forum-15.html) +--- Forum: User Contributions (https://hashcat.net/forum/forum-25.html) +--- Thread: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats (/thread-6661.html) |
RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - fromdusktillpwn - 07-31-2021 I might be trippin but this thing is driving me crazy: why hcxhashtool does not accept bitmask-option --type=1? Although, numbers 5, 9 or greater (the ones with the first bit being set) work perfectly to filter pmkids. Code: > hcxhashtool -i in.hash --type=1 -o pmkid.22k Code: > hcxhashtool -v RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - ZerBea - 07-31-2021 Currently 2 hash formats (01 = PMKID, 02 = EAPOL) are accepted by hashcat running hash mode 22000/22001: Code: WPA*01*PMKID*... https://github.com/hashcat/hashcat/issues/1816 You can use bash tools to get the same result for PMKID: Code: $ cat hash.hc22000 | grep "WPA\*01" for EAPOL: Code: $ cat hash.hc22000 | grep "WPA\*02" The purpose of --type option is to filter output by that 2 types Code: --type=<digit> : filter by hash type To filter by a bit/byte of a PMKID or a PMKID itself doesn't make sense, because a PMKID is the result of a hash calculation: https://hashcat.net/forum/thread-7717.html RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - fromdusktillpwn - 07-31-2021 (07-31-2021, 04:15 PM)ZerBea Wrote: The purpose of --type option is to filter output by that 2 types So how do I filter my big 22k-hash file by PMKID? Isnt it --type=1, like help section says? (07-31-2021, 04:15 PM)ZerBea Wrote: To filter by a PMKID itself doesn't make sense I dont understand why not exactly? And why then help section of hcxhashtool still says that --type=1 should work? Actually, the latter question bothers me the most, since im able to export PMKID-hashes by using --type=5. RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - ZerBea - 07-31-2021 Now I understand your question. For sure, you will get all PMKIDs by --type=5, too The option field is a bitmask. Code: 5 = 0101 In other words: --type=1 is the same as type = 5, is the same as type = 9, is the same as type = 13 and so on. In every case bit 0 = 1 and you will get all PMKIDs I thought this was clear from --help that only bit 0 and 1 (values 1, 2 and 3) is in use. Now, by latest commit https://github.com/ZerBea/hcxtools/commit/579eb5493d677b163175f291a12d5e3f832bb732 I fixed that and you will get an ERROR message if you try values greater than 3: Code: $ hcxhashtool -i hash.hc22000 --type=5 -o hashfiltered.hc22000 the same applies if you try 0: Code: $ hcxhashtool -i hash.hc22000 --type=0 -o hashfiltered.hc22000 RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - fromdusktillpwn - 07-31-2021 (07-31-2021, 11:02 PM)ZerBea Wrote: The option field is a bitmask. I understand that. (07-31-2021, 11:02 PM)ZerBea Wrote: I thought this was clear from --help that only bit 0 and 1 (values 1, 2 and 3) is in use. Yes, it was. But value 1 didnt work. (07-31-2021, 11:02 PM)ZerBea Wrote: I fixed that and you will get an ERROR message if you try values greater than 3: Now it works as expected (_both_ values 1 and 4+), thanks! Good to know I wasnt tripping after all. RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - oayz - 11-03-2021 ZerBea, does "hcxhashtool.exe --essid-list=" work on Linux? On windows it doesn't do anything. This option seems to be skipped altogether, I can even specify non-existed file. All other essid filters work as expected. RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - ZerBea - 11-03-2021 It is working on Linux, as well as --mac-list. It looks like "rb" isn't supported on Windows, e.g.: Code: if((fh_essidlistin = fopen(essidlistinname, "rb")) == NULL) By latest commit I changed the mode from "rb" to "r" and "wb" to "w". The devil is often in the details: It isn't enough to compile a file. It has to be ported to the target operating system, too, because then handling some function calls is different. I don't take care about this, because I use Linux, only. RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - oayz - 11-03-2021 Well, I always been told C is portable language, just need to recompile ;-) Anyway my C is rusty but I remember if I use fgetc() it's always binary read. fgets() is another story Thanks for the prompt reply anyway - I don't push you to write for Windows (though you do it anyway - in small steps RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - ZerBea - 11-03-2021 In this special case, I removed the portability by latest commit. Code: The mode string can also include the letter 'b' either as a last BTW: My C is rusty, too - I learned assembler (6502, 6802, 68000/68010). RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - oayz - 11-03-2021 @ZerBea, I did some debugging and need to apologize - it's not about "r" ("rb" is fine, you can revert it back), it's about my misunderstanding: 1. Expected "--essid-list" filter to work on "--info". Actually it only works on the output, info is always unfiltered (however it is filtered by "--essid" or "--essid-part") 2. Based on the above, didn't provide output file ("-o"). W/o it "--essid-list" is bypassed w/o warning: if((pmkideapolcount > 0) && (pmkideapoloutname != NULL) && (essidinname != NULL)) processessidfile(essidinname, pmkideapoloutname); Don't you think that "-essid-list" should basically be multiple of "--essid"? Of cause regexp support would be extremely nice and with it we won't need "essid-part". Effectively "egrep -f" but with ability to convert hex ESSID to text P.S. I've also started with assm - i8080 (CP/M), i8751, i8088 (PC), 6502 (Sinclair). Even touched your MC6802 (once . Now it's Python and Matlab |