Skip to main content

How To Change Mac Address | Mac Spoofing in Kali / linux

there are mainly two ways to change your mac

Method 1:

kali@root# ifconfig {Nework Interface} down
kali@root# macchanger {options} {network Interface}
kali@root# ifconfig {Nework Interface} up
kali@root# service network-manager restart

    example:

        kali@root# ifconfig wlan0 down
        kali@root# macchanger -r wlan0
        kali@root# ifconfig wlan0} up
        kali@root# service network-manager restart


Method 2:

kali@root# /etc/init.d/networking stop
kali@root# ifconfig {Network Interface} down
kali@root# ifconfig {Network Interface} hw ether {any new mac}
kali@root# /etc/init.d/networking start

    example:

        kali@root# /etc/init.d/networking stop
        kali@root# ifconfig wlan0 down
        kali@root# ifconfig wlan0 hw ether h0:38:99:25:6h:02
        kali@root# /etc/init.d/networking start



that's it.. to conform ,kali@root#macchanger -s wlan0



Comments

Random Posts