rodrwan

dcmac

Apr 18th, 2012
51
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.29 KB | None | 0 0
  1. #!/bin/bash
  2. #
  3. # Dynamic Clone Mac
  4. # by Rodrigo Fuenzalida
  5. #
  6. # parametro $1 = interfaz de red
  7. # requiere instalar macchanger
  8. # -> sudo apt-get install macchanger
  9. #
  10.  
  11. ifconfig $1 down
  12. sleep 2
  13. macchanger -a $1
  14. sleep 2
  15. ifconfig $1 up
  16. echo ""
  17. ifconfig $1
Advertisement
Add Comment
Please, Sign In to add comment