Creating Custom Password List
#5
Awesome. That's exactly what I was looking for. Thank you.

Since I have the MACs in a file this was my command:

for WLAN_MAC in $(cat macs.txt); do ETH_MAC=`printf '%x' $(( 0x$WLAN_MAC - 1 ))`; echo $ETH_MAC | cut -c 3-; done > macpasswords.txt

Would you mind explaining what the '%x' is there for in the printf syntax?
Reply


Messages In This Thread
Creating Custom Password List - by slawson - 10-23-2019, 10:48 PM
RE: Creating Custom Password List - by Mem5 - 10-23-2019, 11:08 PM
RE: Creating Custom Password List - by slawson - 10-23-2019, 11:18 PM
RE: Creating Custom Password List - by Kryczek - 10-24-2019, 11:47 AM
RE: Creating Custom Password List - by slawson - 10-24-2019, 03:08 PM
RE: Creating Custom Password List - by Mem5 - 10-24-2019, 10:08 PM
RE: Creating Custom Password List - by slawson - 10-25-2019, 04:03 PM