Run this Python script on your terminal to change the mac address.
#!/usr/bin/env python import subprocess iface = input("Enter interface: ") new_mac = input("Enter new MAC: ") subprocess.call(["ifconfig", iface, "down",]) subprocess.call(["ifconfig", iface, "hw", "ether", new_mac]) subprocess.call(["ifconfig", iface, "up",]) print("Mac address changed")