please help me i am a newbie - Printable Version +- hashcat Forum (https://hashcat.net/forum) +-- Forum: Support (https://hashcat.net/forum/forum-3.html) +--- Forum: hashcat (https://hashcat.net/forum/forum-45.html) +--- Thread: please help me i am a newbie (/thread-9394.html) |
please help me i am a newbie - mike21 - 07-18-2020 hello guys, i need some help ,i am a newbie.and i want to learn how to use hashcat,my friends. my problem is,I don't know what command to give to get a single pmkid. i use The-Distribution-Which-Does-Not-Handle-OpenCL-Well (Kali) Linux Live 64-bit version 2020.2 i give this commands to get a wpa pmkid sudo hcxdumptool -I sudo kill sudo hcxdumptool -o test.pcapng -i wlp0s20f0u1 --enable_status 15 with this commands by default all APs are attacked, but i want to attack only some or only one AP,not all APs my friends. can someone please help me with the right commands,to attack only some or only one AP. this would be really great. thanks a lot for the help. RE: please help me i am a newbie - Mem5 - 07-19-2020 Not related with hashcat. hcxdumptool support is at https://github.com/ZerBea/hcxdumptool RE: please help me i am a newbie - ZerBea - 07-20-2020 According to the help menu, you have to use either --filtermode=2 in combination with --filterlist_ap=yourtargetmaclist or create a Berkeley Packet Filter (attack MAC) Code: --filterlist_ap=<file> : ACCESS POINT MAC filter list In addition to that, hashcat forum contain a complete thread how to use hcxdumptool/hcxtools (inclusive older versions of the tools): https://hashcat.net/forum/thread-6661.html and the PMKID attack vector, too: https://hashcat.net/forum/thread-7717.html RE: please help me i am a newbie - Talented1 - 07-22-2020 You can filter mac address or chose the pmkid by checking it's ssid and work on that one spesific hash. Sample pmkid aaaaaaaaaaaaaa*aaaaaaaaaaaa*aaaaaaaaaaaa*496c6f76654475636b73 You will copy the last part "496c6f76654475636b73" and convert it to ascii to read. https://www.rapidtables.com/convert/number/hex-to-ascii.html RE: please help me i am a newbie - ZerBea - 07-22-2020 One of the major advantages of the new hash format (-m 22000) is, that it is not binary (hccapx) and every bash tool will work in it. To get the ESSID in ASCII you can use hcxtools (whoismac): Code: $ whoismac -x 496c6f76654475636b73 Code: $ hcxhashtool -i test.22000 --info=stdout Code: $ echo "aaaaaaaaaaaaaa*aaaaaaaaaaaa*aaaaaaaaaaaa*496c6f76654475636b73" | awk 'BEGIN { FS = "*" } ; { print $4 }' | perl -pe 's/(..)/chr(hex($1))/ge' BTW: Nearly everything is explained in this two threads: https://hashcat.net/forum/thread-6661.html https://hashcat.net/forum/thread-7717.html |