A Utility to Spoof MAC addresses in OS X?

7,728

Solution 1

You really can pass up the GUI interface for this one - it's a one-liner:

sudo ifconfig en1 lladdr aa:bb:cc:dd:ee:ff

If you absolutely want it to be easy, use an apple script so you can click it in your menu bar. This discussion can help with syntax.

tell application "Terminal"
do script "/path/to/script"
end tell

The best reference is here, though there are handy too:

http://josteinb.com/2009/10/spoofing-your-mac-address-in-snow-leopard/
http://www.macgeekery.com/gspot/2006-04/mac_address_spoofing
http://www.iclarified.com/entry/index.php?enid=7673

Solution 2

Both menu bar utilities, 10.10+ (LinkLiar had a prefpane ≤10.9, WiFiSpoof used to work also ≤10.9).

Share:
7,728

Related videos on Youtube

cwd
Author by

cwd

Updated on September 18, 2022

Comments

  • cwd
    cwd over 1 year

    Is there a menu bar style tool, or maybe a GUI program that would allow me to switch / spoof MAC addresses for the Airport / WiFi connection on OS X?

  • mbb
    mbb almost 13 years
    I would actually make two apple scripts - one to spoof and one to revert back. This information should set you up to do so.