Cambia la dirección MAC del dispositivo


Icono de bash script

Cuando queremos no dejar huella en una red o simplemente hacernos pasar por otro dispositivo podemos recurrir a macchanger, con este commando podremos cambiar la mac del dispositivo por la que queramos.

Aquí dejo un script para automatizar el cambio por una mac aleatoria.

#!/bin/bash
ifconfig
    read -p 'introduce el interfaz a cambiar: ' INTER
ifconfig $INTER down
for (( i=1; i<=12; i++ ))
do
    NUM=$(($RANDOM%16))
    if [ $NUM -eq 10 ]; then
        NUM="A"
    elif [ $NUM -eq 11 ]; then
        NUM="B"
    elif [ $NUM -eq 12 ]; then
        NUM="C"
    elif [ $NUM -eq 13 ]; then
        NUM="D"
    elif [ $NUM -eq 14 ]; then
        NUM="E"
    elif [ $NUM -eq 15 ]; then
        NUM="F"
    fi
    A=$(($i%2))
    NUMFIN=$NUMFIN$NUM
    if [ $A -eq 0 ] && [ $i -ne 12 ]
    then
    NUMFIN=$NUMFIN":"
    fi
done
macchanger -m $NUMFIN $INTER
exit