10-11-2019, 04:16 PM
I would like to take my capture file that has several PMKIDs in it, and decode the SSIDs before cracking them.
This is what I have done so far:
cut -f4 -d'*' pmkidfile | xxd -r -p
xxd properly decodes the SSIDs, but it appends all of the SSIDs together without line breaks. I.e. SSID1SSID2SSID3, etc.
What is the better method to decode the SSIDs and list them on seperate lines?
This is what I have done so far:
cut -f4 -d'*' pmkidfile | xxd -r -p
xxd properly decodes the SSIDs, but it appends all of the SSIDs together without line breaks. I.e. SSID1SSID2SSID3, etc.
What is the better method to decode the SSIDs and list them on seperate lines?