![]() |
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 - ZerBea - 03-27-2020 hcxhashtool will do the job: get example hash (22000) from here: https://hashcat.net/wiki/doku.php?id=example_hashes and run hcxhashtool to retrieve information Code: $ hcxhashtool -i example.22000 --info=stdout The same applies to EAPOL hash lines Get example (2500) from here: https://hashcat.net/wiki/doku.php?id=example_hashes and convert it from 2500 to 22000 $ hcxmactool --hccapxin=hashcat.hccapx --pmkideapolout=example2.22000 now run hcxhastool to retrieve information about the hash Code: $ hcxhashtool -i example2.22000 --info=stdout Addditional you you have several options to manage the records of the hasfile: Code: $ hcxhashtool -h RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - strike1953 - 03-27-2020 (01-19-2020, 01:59 PM)ZerBea Wrote: There is no need to run hcxtools on the new hashline format. Nearly every bash cmd is working on the new hashline: I need to add the corresponding mac to each essid and thus be able to see the content of a multiple capture the essid with mac RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - ZerBea - 03-27-2020 can be done by bash scripts, too. Quick and dirty solution: Code: #!/bin/bash will print: Code: aef50f22801c:8381533406003807685881523 That is the real advantage of the new hash line. You can do everything, running bash commands (pearl, python, or what ever you want). https://www.tutorialspoint.com/awk/index.htm https://www.tutorialspoint.com/perl/index.htm https://www.tutorialspoint.com/unix_commands/bash.htm RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - strike1953 - 03-27-2020 Thank you very much! RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - strike1953 - 04-07-2020 Hi ZerBea hcxdumptool, how to attack a specific ap Thank you RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - ZerBea - 04-07-2020 Hi strike1953. 2 ways: less strict: add MAC_AP to filterlist.txt hcxdumptool --filterlist_ap=filterlist.txt --filtermode=2 ... strict: create bpfc Code: $ hcxdumptool -m <interface> hcxdumptool --bpfc=attack.bpf ... RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - strike1953 - 04-07-2020 Thank you RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - ZerBea - 04-08-2020 Difference between the two methods: filtermode: all CLIENTs handled (inclusive the ones running MAC randomization) bpfc: limited to CLIENTs connected to the AP. you will receive a warning (hcxpcapngtool: missing frames) if you convert this pcapng file because undirected PROPEREQUESTs are filtered out. RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - WPA_Catcher - 05-11-2020 Hi ZerBea I have just popped back to this forum to let you know I am still keenly watching you work on github. I have to say a huge thanks to you for sharing your awesome wifi tools. I am still using the convert to vintage hccap tool you kindly made for me, which is working well. The more I learn the more impressed I am with hcx-anything. You seem to have thought of everything well in advance of any feature requests and your code looks.... err ...beautiful. I am so grateful for you sharing your tools and I hope you continue to optimise your code, you have not only made the best set of wifi tools but you seem to now be concentrating on making the code aesthetically pleasing too. Good luck with all you do and thanks again. I will get back on this forum when time permits. RE: hcxtools - solution for capturing wlan traffic and conversion to hashcat formats - ZerBea - 05-12-2020 Nice to hear that. Thanks. |