Created
February 25, 2019 12:23
-
-
Save njoerd114/ec09904641932d1682770db60fe85551 to your computer and use it in GitHub Desktop.
WIFIonICE unchained
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
changemac () { | |
if [ -z "$1" ] | |
then | |
echo "please provide network interface" | |
else | |
sudo ifconfig $1 ether $(openssl rand -hex 6 | sed 's/\(..\)/\1:/g; s/.$//') && ifconfig $1 | |
fi | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment