MAC Spoofing :-) MAC spoofing play an important role in WiFi hacking , network hacks and MITM ( Man in the middle attacks ).
📌MAC spoofing in Kali :-)
Steps :-
1. Disable the interference
2. Change the MAC
3. Enable the interference
Practicals:-
Run the command "ifconfig"
Check the interference you want to change the MAC, let's say it as the interference eth0
In the response returned by the ifconfig command look for the entry "ether". This will contain the corresponding MAC address
1. Disable the interference :- ifconfig eth0 down
2. Change the MAC :- ifconfig eth0 hw ether 00:11:22:33:44:55
3. Enable the interference :- ifconfig eth0 up
Now check by running the command ifconfig. The MAC address will be changed.
Note :- Once we change the MAC address , it doesn't stay forever , once you re-start the system , the original MAC automatically replaces the spoofed one.
Comments
Post a Comment