14-06-2011, 12:17 AM
I'm 99% sure I've wrote something on this before but using macchanger instead and I can't find it so here's how to change your mac address using ifconfig.
Replace <interface> with your interface...
Put your interface down.
Change your interface's MAC address.
Bring your interface up.
Checking your interface's new MAC address.
2 second job.
:thumbs
Replace <interface> with your interface...
Put your interface down.
Code:
ifconfig <interface> down
Change your interface's MAC address.
Code:
ifconfig <interface> hw ether 00:11:22:33:44:55
Bring your interface up.
Code:
ifconfig <interface> up
Checking your interface's new MAC address.
Code:
ifconfig <interface>
2 second job.
:thumbs