HCCAP format : retrieve bssid
#1
Hi,

I read the hccap format https://hashcat.net/wiki/hccap to try to retrieve ESSID ans BSSID from the command line.

Quote:Essid 0x00 to 0x23 the essid(name) of the access point
Bssid 0x24 to 0x29 the bssid(MAC) of the access point

I did :

Code:
cat file.hccap | cut -b 1-23 | head -n 1
it gives me the right essid.

But for bssid :
Code:
cat file.hccap | cut -b 24-29 | head -n 1
returns nothing.

Any help ?


Messages In This Thread
HCCAP format : retrieve bssid - by Mem5 - 11-17-2012, 12:32 PM
RE: HCCAP format : retrieve bssid - by M@LIK - 11-17-2012, 06:07 PM
RE: HCCAP format : retrieve bssid - by Mem5 - 11-17-2012, 11:28 PM