Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to crack a 4 way handshake with python

#import hashlib
from pbkdf2 import PBKDF2
ssid = 'cyberpunk' 
pass= 'theone'

print "Pairwise Master Key (PMK): " + PBKDF2(phrase, ssid, 4096).read(32).encode("hex"))

# ALTERNATIVE
# pmk = hashlib.pbkdf2_hmac('sha1', passphrase, SSID.encode(), 4096, 32) 
Source by www.cyberpunk.rs #
 
PREVIOUS NEXT
Tagged: #crack #handshake #python
ADD COMMENT
Topic
Name
4+9 =