Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #!/bin/bash
- #
- # Dynamic Clone Mac
- # by Rodrigo Fuenzalida
- # mail: [email protected]
- #
- # parametro $1 = interfaz de red
- # requiere instalar macchanger
- # -> sudo apt-get install macchanger
- #
- ifconfig $1 down
- sleep 2
- macchanger -a $1
- sleep 2
- ifconfig $1 up
- echo ""
- ifconfig $1
Advertisement
Add Comment
Please, Sign In to add comment