Advertisement
Algabe

macspoof

Dec 2nd, 2013
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Bash 0.27 KB | None | 0 0
  1. #!/bin/bash
  2. #Cambia el MAC address por uno falso al inicio del sistema conocido como Spoofing MAC On Boot
  3. MAC=`dd if=/dev/urandom bs=3 count=1 status=noxfer 2>/dev/null | od -t x1 | sed -e "s/^0* //;s/ /:/g;q"`
  4.  
  5. ifconfig wlan0 down hw ether 00:13:$MAC
  6. ifconfig wlan0 up
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement