How can i find ESSID from a hash in the POTFILE?
#3
(03-23-2021, 07:42 PM)ZerBea Wrote: The pot file line is the result of PBKDF2:
Code:
PMK*ESSID:PSK


Code:
$ whoismac -x 5475726b54656c656b6f6d5f5445454146
TurkTelekom_TEEAF

or
Code:
$ echo "5475726b54656c656b6f6d5f5445454146" | perl -pe 's/(..)/chr(hex($1))/ge'
TurkTelekom

or use xxd:
https://www.systutorials.com/convert-hex...using-xxd/

or use an online converter:
https://www.binaryhexconverter.com/hex-t...-converter

or use an ASCII table:
http://www.asciitable.com/

Thanks very much you are awesome.
Reply


Messages In This Thread
RE: How can i find ESSID from a hash in the POTFILE? - by Uraniumhazee - 03-23-2021, 08:19 PM