Sim, sei que posso fazê-lo a partir do terminal ou através do applescript, mas estava esperando por um utilitário de barra de menu.
E para o registro, eu realmente acho que tenho que fazer isso para falsificar o endereço MAC no Mac OS X 10.7:
//disassociate from airport - sometimes you need to run it twice
airport -z
airport -z
//find the current mac address
ifconfig en1 | grep ether
//i find I usually need to run this command at least twice before it works
sudo ifconfig en1 ether 00:e2:e3:e4:e5:e6
sudo ifconfig en1 ether 00:e2:e3:e4:e5:e6
sudo ifconfig en1 ether 00:e2:e3:e4:e5:e6
//check the mac again to see if it has changed
ifconfig en1 | grep ether
Para obter o comando airport
terminal você pode precisar adicionar isto:
alias airport="/System/Library/PrivateFrameworks/Apple80211.framework/Versions/Current/Resources/airport"