Creating Custom Password List
#4
For example with Bash:

$ for WLAN_MAC in 112233445566 112233abcdef 112233abcde0; do ETH_MAC=`printf '%x' $(( 0x$WLAN_MAC - 1 ))`; echo $ETH_MAC | cut -c 3-; done
2233445565
2233abcdee
2233abcddf

What routers work like that? That's seriously terrible Smile
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